RE: WOWebServiceClient Throw A Warning

2010-11-26 Thread Oscar González


Thanks Travis and Robert. I'll try both advices.
Oscar.
From: tbr...@phigment.org
Date: Fri, 26 Nov 2010 13:28:15 -0500
To: webobjects-dev@lists.apple.com
Subject: Re: WOWebServiceClient Throw A Warning



Or, if you can, try JAX-WS. It's included in JDK 6 and more pleasant to work 
with than Axis.
http://jax-ws.java.net/
tb
On Nov 26, 2010, at 11:06 AM, Pascal Robert wrote:Which version of WebObjects? 
If it's 5.3, Axis 1.1 is not really good at working with .Net or Axis 
1.4-powered services. If you are only consuming external services in your app, 
remove the JavaXML framework for your app and use Axis 1.4 directly in your 
app, less pain for you.
Hi list,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 warningsNov 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 ServiceSoapNov 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 ServiceSoap12So 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 
exceptionError: java.lang.IllegalArgumentException: No operation named 
CrearPalletGenerico in service Service. Reason: No operation named 
CrearPalletGenerico in service Service.
I'm appreciate any help.
ThanksOscar.___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca

This email sent to prob...@macti.ca
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/tbritt%40phigment.org

This email sent to tbr...@phigment.org

___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/racso_gp%40hotmail.com

This email sent to racso...@hotmail.com 
   ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: WOWebServiceClient Throw A Warning

2010-11-26 Thread Travis Britt
Or, if you can, try JAX-WS. It's included in JDK 6 and more pleasant to work 
with than Axis.

http://jax-ws.java.net/

tb

On Nov 26, 2010, at 11:06 AM, Pascal Robert wrote:

> Which version of WebObjects? If it's 5.3, Axis 1.1 is not really good at 
> working with .Net or Axis 1.4-powered services. If you are only consuming 
> external services in your app, remove the JavaXML framework for your app and 
> use Axis 1.4 directly in your app, less pain for you.
> 
>> Hi list,
>> 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.
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
>> 
>> This email sent to prob...@macti.ca
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/tbritt%40phigment.org
> 
> This email sent to tbr...@phigment.org

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Re: WOWebServiceClient Throw A Warning

2010-11-26 Thread Pascal Robert
Which version of WebObjects? If it's 5.3, Axis 1.1 is not really good at 
working with .Net or Axis 1.4-powered services. If you are only consuming 
external services in your app, remove the JavaXML framework for your app and 
use Axis 1.4 directly in your app, less pain for you.

> Hi list,
> 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.
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
> 
> This email sent to prob...@macti.ca

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com