I am aware that the current version of xfire does not support Rpc/Encoded
wsdls. However do any of the previous versions support it? I have a wsdl
that I must write a web service for, unfortunately changing the wsdl and the
client to support rpc/literal is not an option. :(
When I set up xfire and just using the auto generated wsdl for rpc/literal
it works wonderfully (hence I get object and it has data). When I change
xfire to do rpc/encoded (still with the auto generated wsdl) the method is
called and a non-null object is passed in, however the object has no data
within it.
example:
myWebServiceMethod(MyObject ob)
{
String name = obj.getName(); //name is null when using rpc/encoded
}
Thanks,
Jeff