Hi ive only managed to call a method with one string param as an
argument, trying ArrayLists of Objects String[] arrays of strings or
objects gives me this
org.springframework.web.util.NestedServletException: Hessian skeleton
invocation failed; nested exception is
java.lang.UnsupportedOperationException:
[EMAIL PROTECTED]:
java.lang.UnsupportedOperationException:
[EMAIL PROTECTED]
at com.caucho.hessian.io.BasicDeserializer.readList
(BasicDeserializer.java:516)
When just simply sending strings as arguments i get this
com.caucho.hessian.io.HessianProtocolException: add: expected end of
call ('z') at 'S'. Check method arguments and ensure method
overloading is enabled if necessary
The C# code is like
List<ServerConfig> list = new List<ServerConfig>();
ServerConfig config = new ServerConfig();
config.name = "test";
list.add(config);
service.add(list);
on the java side
There is an interface and impl of
public void add(List<ServerConfig> config)
{
}
This is getting quite annoying because every kind of remoting impl
ive tried that isnt soap doesnt work from C# to java and this was the
easiest to setup in spring similar to rmi.
Let me know.
_______________________________________________
hessian-interest mailing list
[email protected]
http://maillist.caucho.com/mailman/listinfo/hessian-interest