Re: web services
Re: web services
- Subject: Re: web services
- From: Baiss Eric Magnusson <email@hidden>
- Date: Wed, 22 Jun 2005 12:49:57 -0700
Hello Pierre,
Yes, what you are doing is beyond what I have used.
BTW: when I first used the Axis files I tried to use WOWebServices as
the API to Axis and I ran into problems in synchronization.
The below is a sample of what I use to interact with Axis, so I
generate the namespace parameters directly.
String endpoint = "http://services.xmethods.com:80/soap";
org.apache.axis.client.Service service = new
org.apache.axis.client.Service();
org.apache.axis.client.Call call =
(org.apache.axis.client.Call)service.createCall();
call.setTargetEndpointAddress( new java.net.URL
( endpoint));
call.setOperationName( new javax.xml.namespace.QName
("urn:xmethods-delayed-quotes", "getQuote" ));
call.addParameter( "Symbol",
org.apache.axis.Constants.XSD_STRING, javax.xml.rpc.ParameterMode.IN );
call.setReturnType( org.apache.axis.Constants.XSD_FLOAT );
Float ret = (Float) call.invoke( new Object[] { symbol } );
On Jun 22, 2005, at 11:40 AM, Pierre Frisch wrote:
Could you elaborate on your use of web services?
I use custom type and I have no end of problems because the wsdl
generated by WO/Axis does not include the right namespaces. Do you
have any comments?
Pierre
On 22-Jun-05, at 10:30 AM, Baiss Eric Magnusson wrote:
I'm using Axis 1.1 Web Services with WO 5.3 and 10.4.1 successfully.
I had to add file <servlet-api.jar> to </Library/Extensions/Java>
to get past a missing method but then it worked.
I use the stand alone EOModeler with 5.3
I'm happy because I just got <www.Track-Your-Finances.com>
working, it has a SSL certificate with it. That's what I've been
up nights over, now I can get back to the <wotaskd> annoyance, big
problems take precedence over annoyances<g>.
The 10.4 server has better tools for handling all this but it did
take some time to figure out what goes where.
I also have not been able to generate a Deployment <.woa> file
from 5.3 so 2 of my WO apps are running with Development builds,
so that is also a problem to be solved.
I guess I'm one of those early
"1) you like riding the bleeding edge"
that Sacha cautions about.
PS: I really did all this because I upgraded a server from a
G3-500 to a MIni 1.4GHz and 10.2 won't install on the Mini.
On Jun 21, 2005, at 6:27 PM, Pierre Frisch wrote:
From: Pierre Frisch <email@hidden>
Subject: Re: Would somebody post when Safe to Upgrade to WO 5.3
Don't
WOBuilder is broken if you use UTF-8
The new EOModeler plug-in have more bugs than the "old" EOModeler
Web Services with Axis 1.1 are broken except for the Direct2...
----
Baiss Eric Magnusson
<http://www.Track-Your-Finances.com>
<http://www.CascadeWebDesign.com>
----
Baiss Eric Magnusson
<http://www.Track-Your-Finances.com>
<http://www.CascadeWebDesign.com>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden