Re: How to get Response XML from Axis stubs?

2008-09-16 Thread keith chapman
only Java > object but I want a copy of XML too ? > > Though XML is printed out in XML logs by Axis..But i dont know which method > of Axis is doign that? > > > > > > > > > > - Original Message > From: Shehan Simen <[EMAIL PROTECTED]> > T

Re: How to get Response XML from Axis stubs?

2008-09-16 Thread kapil pruthi
AIL PROTECTED]> To: "axis-user@ws.apache.org" Sent: Tuesday, September 16, 2008 4:51:34 PM Subject: RE: How to get Response XML from Axis stubs? What is the data binding mechanism that you used when generating the client stub (using wsdl2java)? Xmlbeans or adb? U don't need to r

Re: How to get Response XML from Axis stubs?

2008-09-16 Thread keith chapman
same Axis > objects which were generated as part of WSDL2java execution? > > > > - Original Message > From: Shehan Simen <[EMAIL PROTECTED]> > To: "axis-user@ws.apache.org" > Sent: Monday, September 15, 2008 10:34:12 PM > Subject: RE: How to get

RE: How to get Response XML from Axis stubs?

2008-09-16 Thread Shehan Simen
ruthi [mailto:[EMAIL PROTECTED] Sent: Wednesday, 17 September 2008 6:45 AM To: axis-user@ws.apache.org Subject: Re: How to get Response XML from Axis stubs? Do i need to regenerate Response objects for ADB? Can't i use same Axis objects which were generated as part of WSDL2java execution?

Re: How to get Response XML from Axis stubs?

2008-09-16 Thread kapil pruthi
2 PM Subject: RE: How to get Response XML from Axis stubs? Hi, I am using ADB as data binding. Try using the following, if you are using ADB: String responseXml = MyResponse.getOMElement( MyResponse.MY_QNAME, OMAbstractFactory .getOMFactory()).toStringWi

How to get Response XML from Axis stubs?

2008-09-15 Thread kapil pruthi
I have axis client stubs generated (using WSDL2Java) tool and able to hit a web service. The response is retrieved in Response object which i generated using WSDL2Java. Seems like Axis serialization is converting XML to Java response objects. My question is how to get a copy of that response XML n

RE: How to get Response XML from Axis stubs?

2008-09-15 Thread Shehan Simen
: kapil pruthi [mailto:[EMAIL PROTECTED] Sent: Tuesday, 16 September 2008 3:15 PM To: axis-user@ws.apache.org Subject: How to get Response XML from Axis stubs? I have axis client stubs generated (using WSDL2Java) tool and able to hit a web service. The response is retrieved in Response object which

Reuse of Axis Stubs

2005-11-23 Thread Stefan Aigner
Hi there, I have a question regarding the reuse of Axis Stubs. I have a Singleton in my application which cares about instantiating web service stubs. What I do at the moment is caching a stub when it is created for later reuse. This means, of one stub there is only one instance in my (web

Reuse of Axis Stubs

2005-11-22 Thread Stefan Aigner
Hi there, I have a question regarding the reuse of Axis Stubs. I have a Singleton in my application which cares about instantiating web service stubs. What I do at the moment is caching a stub when it is created for later reuse. This means, of one stub there is only one instance in my (web

RE: How to configure Axis stubs for Integrated Windows Authentication ?

2005-08-12 Thread Rajesh Nair
:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 11:58 PM To: axis-user@ws.apache.org; axis-dev@ws.apache.org Subject: How to configure Axis stubs for Integrated Windows Authentication ? Hi All, I am trying to consume a web service on https and it uses .NET with Integrated Windows Authentication

Re: How to configure Axis stubs for Integrated Windows Authentication ?

2005-08-12 Thread Kr
Hi All, I am following the article at http://marc.theaimsgroup.com/?l=axis-user&m=108055064215099&w=2 but I dont understand how to change CommonsHTTPSender.java code. Is the java file change suggested at the aforementioned link fixed in AXIS 1.2 Final ? since if I dont change this file and simply

How to configure Axis stubs for Integrated Windows Authentication ?

2005-08-11 Thread Kr
Hi All, I am trying to consume a web service on https and it uses .NET with Integrated Windows Authentication Security Mechanism. When I type the web service endpoint address in browser I am prompted for a login dialog and I login using username (in the format \\) and password given by the web se

RE: [Fwd: Re: axis stubs]

2005-03-21 Thread David Levy
olley [mailto:[EMAIL PROTECTED] Sent: Monday, 21 March 2005 6:10 PM To: [EMAIL PROTECTED] Subject: [Fwd: Re: axis stubs] David, Read my post on 3-16 titled "Can Wsdl2Java make the stub implement a specified interface?", it's related. I think the appropriate way to do this is to gen

Re: axis stubs

2005-03-19 Thread Chad Woolley
David, Read my post on 3-16 titled "Can Wsdl2Java make the stub implement a specified interface?", it's related. I think the appropriate way to do this is to generate a java interface file which matches the generated class, and is implemented by it. These could then be copied and used in clien

Re: axis stubs

2005-03-16 Thread Elaine Nance
- From: Elaine Nance [mailto:[EMAIL PROTECTED] Sent: Wednesday, 16 March 2005 3:18 AM To: axis-user@ws.apache.org Subject: Re: axis stubs Are you using the -p (package) switch with WSDL2Java? David Levy wrote: Hi, I've been working on a project where we must generate client axis stubs for code whic

RE: axis stubs

2005-03-15 Thread David Levy
: axis-user@ws.apache.org Subject: Re: axis stubs Are you using the -p (package) switch with WSDL2Java? David Levy wrote: > Hi, > > I've been working on a project where we must generate client axis stubs for > code which we maintain. This means that we generate the WSDL via java2wsdl

Re: axis stubs

2005-03-15 Thread Elaine Nance
Are you using the -p (package) switch with WSDL2Java? David Levy wrote: Hi, I've been working on a project where we must generate client axis stubs for code which we maintain. This means that we generate the WSDL via java2wsdl, then generate the stubs with wsdl2java. This all works fine, bu

axis stubs

2005-03-14 Thread David Levy
Hi, I've been working on a project where we must generate client axis stubs for code which we maintain. This means that we generate the WSDL via java2wsdl, then generate the stubs with wsdl2java. This all works fine, but the problem is that the client stubs generated with wsdl2java adhere

Re: Problems in generating AXIS stubs

2005-02-28 Thread Anne Thomas Manes
Some problems with your WSDL: 1- You need to add a definition to your section and import the schemas into it rather than directly into the section: http://127.0.0.1:8080/axis/services/test";> 2- You must remove the namespace attributes from your definitions.

Problems in generating AXIS stubs

2005-02-28 Thread 森本 修馬
Hi, I am developing SAML authority services on AXIS. When I try to generate stub codes with the attached wsdl by WSDL2Java, I have some problems. One of the problems is that some classes have duplicated attributes. For example the class SubjectType has two SubjectConfirmatio