I'm try to connect to a web service developed in .NET, I'm can get the wsdl and it's list operations via the browser.
But, when I try to get it via WO with WOWebServiceClient, I got this warnings
Nov 26 09:39:19 TecLogistica[61751] (ERXNSLogLog4jBridge.java:40) INFO NSLog - Unable to find a SOAP style for service and port. Skipping. {http://tempuri.org/}Service ServiceSoap
Nov 26 09:39:19 TecLogistica[61751] (ERXNSLogLog4jBridge.java:40) INFO NSLog - Unable to find a SOAP endpoint for service and port. Skipping. {http://tempuri.org/}Service ServiceSoap12
So when I try to get the list operations (serviceClient().operationsDictionaryForService(serviceName())).allValues() I got an empty array.
If I'm try to invoke an operation serviceClient().invoke(serviceName(), operation, arguments);
WO throws me an exception
Error:
java.lang.IllegalArgumentException: No operation named CrearPalletGenerico in service Service.
Reason:
No operation named CrearPalletGenerico in service Service.
I'm appreciate any help.
Thanks
Oscar.