RE: Stumped on web service intermediaries

2005-09-16 Thread Ottinger, Michael
Thanks for the responses. This clears up things but leaves a few question: Namely, how do URIs such as http://schemas.xmlsoap.org/soap/actor/next and http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver resolve to actual services on a web service path? To quote you: "... if the value

RE: axis-admin generates SAXException "Bad envelope tag P"

2005-09-16 Thread Hernan Bay Area Guy
--- Stefan Schuster <[EMAIL PROTECTED]> wrote: > Looks like the server responds with an > message that the client cannot understand. > I suggest to use grinder/tcpmon to see what is > send over the wire, this may point you to the > underlying problem. Thanks, it's working now. Best, Hernan

Re: Stumped on web service intermediaries

2005-09-16 Thread Anne Thomas Manes
You use soapenv:actor with SOAP 1.1 and soapenv:role with SOAP 1.2. The value of the actor/role attribute is a URI that represents the role of the entity that must process the header in question. Per SOAP 1.1, if the value of the URI is http://schemas.xmlsoap.org/soap/actor/next, then whatever ent

Stumped on web service intermediaries

2005-09-16 Thread Ottinger, Michael
Hi Folks I've created a simple web service that I want to have act as an intermediary. In my client code I've added a header element to the requesting soap with a soapenv:role (also tried soapenv:actor) attribute value set to the url endpoint of my web service; no luck. I've read up on inte

AXIS support for callback endpoints

2005-09-16 Thread Kr
Hi All, Does AXIS support the concept of Web service callbacks. Basically I want Clients of web services that support callback operations must have a web service endpoint themselves, which the web service can use for sending callback requests at any point in time. Is this feature inbuilt in AXIS

AXIS and JAVA JDK 1.2

2005-09-16 Thread Hubert FONGARNAND
Hello, I've an old java jdk 1.2 box... (i cannot upgrade it easily...) Does someone know if there's a version of axis that works with this old JDK? In case of a negative answer, does someone know a SOAP stack that works with this old JDK... Thanks in advance... _

RE: AXIS2-199 Jira Issue-Non-compilable data binding code generated - duplicate 'toOM(...)' method

2005-09-16 Thread Lakshmi Chaparala
Hi JayaChandra,   Any insight into the issue I have generating from WSDL2JAVA? I am once again including WSDL and XSD files. This time XSD has a DataObjectSet definition in it which was previously missing. It generates exact same code that would not compile.     Thanks   Lakshmi

Resolving hostname for service deployment only via DNS??

2005-09-16 Thread Krenzke Thomas
Title: Resolving hostname for service deployment only via DNS?? Hello, I use Axis 1.2.1. I build and deploy my services with an ant shall and use the ant tasks to deploy the services:     [...]                     [...] So far I always deployed the services

Re: Making java Webservice client (WSDL2java Newbie)

2005-09-16 Thread Vincent Hauser
As I see it, this is the usage: Prueba1Locator aLocator = new Prueba1Locator(); Prueba1Soap_PortType aPort = aLocator.getprueba1Soap(); int result = aPort.add(1,2); On Fri, 2005-09-16 at 13:22 +0200, Raúl García wrote: Hi again, We just need to make a call to a .net webservice running a

Re: encoding password

2005-09-16 Thread Jesús Daniel Blázquez Carazo
I think you can use wss4j Apache project. This project includes XML-Signature and XML-Encryption in SOAP message. - Original Message - From: "Frederic D" <[EMAIL PROTECTED]> To: "axis user" Sent: Friday, September 16, 2005 2:12 PM Subject: encoding password Hi ! Is it possible to

RE: encoding password

2005-09-16 Thread Frederic D
Clients can be java, dot net, C++ clients and can run without axis server and web server. How can i use handlers with a java application (without axis) ? --- "Grossberger, Guenter" <[EMAIL PROTECTED]> a écrit : > You can write a pair of handlers encoding the > password on the client side and de

RV: Making java Webservice client (WSDL2java Newbie)

2005-09-16 Thread Raúl García
Hi all again again, Now I find the code to make it work!!! We've found this page: http://www.kdkeys.net/forums/3394/ShowPost.aspx Explains how to make a .net webservice client using eclipse, and axis. Thanks! Seems that the problem is solved! Regards Raúl. -Mensaje original- De: Raúl

RE: encoding password

2005-09-16 Thread Grossberger, Guenter
You can write a pair of handlers encoding the password on the client side and decoding it on the server side. Best regards, -- Günter Grossberger Consultant Tel: +43 1 329 50 161 Software AG AustriaFax: +43 1 329 50 171 Guglgasse 7-9 GSM: +43 676 833 29 261 1030 Wien

Re: client session

2005-09-16 Thread csj
Frederic - You might find this of some use.. http://wiki.apache.org/ws/FrontPage/Axis/SessionSupport On Fri, 16 Sep 2005, Frederic D wrote: > Hi ! > > > > Is it possible to manage client session in a axis WS ? > > How to do it ? > > > > Thanks. > > > > > > > > > >

How find out the SOAP version used??

2005-09-16 Thread Denero Watz
Looking at the SOAP response or the WSDL file itself, how do you understand which version of SOAP(1.0 or 2.0) is used? Thanks in advance, dw __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

encoding password

2005-09-16 Thread Frederic D
Hi ! Is it possible to encode password "client side" and decode password "server side" ? I need to have a non coded password in my java method deployed as a WS but during transaction between client and server, the password must be encoded. Thanks. ___

client session

2005-09-16 Thread Frederic D
Hi ! Is it possible to manage client session in a axis WS ? How to do it ? Thanks. ___ Appel audio GRATUIT partout dans le monde avec le nouveau Yahoo! Messenger Téléchargez

Is it possible to deploy a WS with another wsdl (not the axis wsdl) ?

2005-09-16 Thread Frederic D
Hi ! I would like to deploy a WS using my own WSDL, not the wsdl generate by the axis admin client during deployment. I had to deploy web services pointing to the same java code (public void process(SOAPEnvelope req, SOAPEnvelope resp) and i would like to create my own WSDLs to describe what

Making java Webservice client (WSDL2java Newbie)

2005-09-16 Thread Raúl García
Hi again, We just need to make a call to a .net webservice running at another machine, We have the wsdl (Attached: NewFile.asmx.wsdl) We create the wdsl using the manual: java org.apache.axis.wsdl.WSDL2Java NewFile.asmx.wsdl The generated classes are: Prueba1.java Prueba1Locator.java Prueba1Soa

RE: XML generated by WSDL not correct?

2005-09-16 Thread Vincent Hauser
Thank you for your effort! Yes, I see that, for example, certain element names differ in case. I will try what you suggest. How about if I wanted to refer to an external XSD-file - where would I put the reference in the WSDL? I can see in the suppliers XML-file that they do reference the XSD

RE: issue with jboss3.2.2 and 2 webapps with 2 releases of axis

2005-09-16 Thread Chris Nappin
By default JBoss shares classloaders between webapps. You need to turn that off. See the JBoss configuration documents on www.jboss.org     From: lio axis [mailto:[EMAIL PROTECTED] Sent: 16 September 2005 10:01 To: axis-user@ws.apache.org Subject: issue with jboss3.2.2 and 2 weba

issue with jboss3.2.2 and 2 webapps with 2 releases of axis

2005-09-16 Thread lio axis
Hello world,   I know this not an axis issue but i'm sure to get some help with you guys. I'm trying to deploy 2 different releases of axis in 2 webapps on jboss. The problem is the 2nd webapp does not load its own axis lib version but works with the 1st webapp lib... Does anyone face this problem?

RE: axis-admin generates SAXException "Bad envelope tag P"

2005-09-16 Thread Stefan Schuster
Looks like the server responds with an message that the client cannot understand. I suggest to use grinder/tcpmon to see what is send over the wire, this may point you to the underlying problem. best regards, Stefan -Original Message- From: Hernan Bay Area Guy [mailto:[EMAIL PROTECTED]