RE: Creating Web Service client using HTTPS from wsdl files

2009-12-09 Thread Vadim Letitchevski
ahesh Buddhika [mailto:thilin...@gmail.com] Sent: Wednesday, December 09, 2009 10:28 AM To: axis-user@ws.apache.org Subject: Re: Creating Web Service client using HTTPS from wsdl files AFAIK these configuration needs to be happen at the transport level and it depends on the app server you are usin

Re: Creating Web Service client using HTTPS from wsdl files

2009-12-09 Thread Thilina Mahesh Buddhika
na Mahesh Buddhika [mailto:thilin...@gmail.com] > *Sent:* Wednesday, December 09, 2009 5:13 AM > > *To:* axis-user@ws.apache.org > *Subject:* Re: Creating Web Service client using HTTPS from wsdl files > > hi, > > Some of the properties you mentioned, like two-way authentication h

RE: Creating Web Service client using HTTPS from wsdl files

2009-12-09 Thread Vadim Letitchevski
Thank you Thhilina. What about the rest of it - protocol and cipher? Thanks Vadim. From: Thilina Mahesh Buddhika [mailto:thilin...@gmail.com] Sent: Wednesday, December 09, 2009 5:13 AM To: axis-user@ws.apache.org Subject: Re: Creating Web Service client using

Re: Creating Web Service client using HTTPS from wsdl files

2009-12-09 Thread Thilina Mahesh Buddhika
hi, Some of the properties you mentioned, like two-way authentication has to be enabled in the SSL settings in the app-server where the Axis2 is deployed. For example, in Tomcat following configuration segment available in server.xml holds some of these parameters. It depends on the app serve

Creating Web Service client using HTTPS from wsdl files

2009-12-08 Thread Vadim Letitchevski
I am trying to configure my client auto-generated from WSDL to use SSL. I have read already the recommendations to set these: System.setProperty("javax.net.ssl.trustStore", "/path/to/.keystore"); System.setProperty("javax.net.ssl.trustStorePassword", "changeit"); Unfortunately this is not all I ne

RE: Creating Web Service client using HTTPS from wsdl files

2009-11-16 Thread Jaime Hablutzel Egoavil
one generated for the server side, but I suppose it is not the best way. Jaime Hablutzel | 9-8964-0369 (tildes omitidas intencionalmente) > Date: Mon, 16 Nov 2009 16:24:45 -0500 > From: suma.subraman...@thomsonreuters.com > Subject: RE: Creating Web Service client using HTTPS

RE: Creating Web Service client using HTTPS from wsdl files

2009-11-16 Thread Suma.Subramanian
-user@ws.apache.org Subject: Re: Creating Web Service client using HTTPS from wsdl files Can you please attach your client code ? Thanks& regards. -Prabath suma.subraman...@thomsonreuters.com wrote: > > Hi > > I need to invoke a set of web services through HTTPS. The WSDL files &g

Re: Creating Web Service client using HTTPS from wsdl files

2009-11-16 Thread Prabath Siriwardena
Can you please attach your client code ? Thanks& regards. -Prabath suma.subraman...@thomsonreuters.com wrote: Hi I need to invoke a set of web services through HTTPS. The WSDL files and the XSD files are provided. I was able to get the token from the client with the Authentication web servi

Creating Web Service client using HTTPS from wsdl files

2009-11-16 Thread Suma.Subramanian
Hi I need to invoke a set of web services through HTTPS. The WSDL files and the XSD files are provided. I was able to get the token from the client with the Authentication web service. But when I invoke the other web service I get a SocketException: Connection Reset. As I'm new to Java and web se

Using JAXB in web service client

2009-11-15 Thread New_in_AXIS
Hi, I have written a web service client using Axis. the input parameters for the web service client in an XML file. I have a schema and wsdl. I have generated the stubs in eclipse using Axis 1.4. While generating the stubs the required java class files are created in the following path

Axis 1.4, check http header in web service client

2009-10-03 Thread Ashish Kulkarni
HiI have an web service client consuming web service, is it possible to check http header and http code in the web service client? -- Ashish www.ayurwellness.com www.mysoftwareneeds.com

Re: How does web service client know it has received complete response

2009-09-30 Thread Amila Suriarachchi
On Wed, Sep 30, 2009 at 9:53 PM, Ashish Kulkarni < ashish.kulkarn...@gmail.com> wrote: > HiHow does a web service client know that it has received complete > response from web service, for example all data in between web service and > web service client flows in http packets, how d

Re: how to set timeout in axis 1.4 web service client

2009-09-30 Thread Ashish Kulkarni
1:34 PM, Bauer Horscht wrote: >> >>> In a custom handler, you can directly set it on the MessageContext object >>> (mc): >>> >>> mc.setTimeout(120*1000); //120 seconds >>> >>> >>> >>> Ashish Kulkarni schrieb: >>> >>>> H

Re: how to set timeout in axis 1.4 web service client

2009-09-30 Thread José Ferreiro
:34 PM, Bauer Horscht wrote: > >> In a custom handler, you can directly set it on the MessageContext object >> (mc): >> >> mc.setTimeout(120*1000); //120 seconds >> >> >> >> Ashish Kulkarni schrieb: >> >>> Hi >>> How do we

Re: how to set timeout in axis 1.4 web service client

2009-09-30 Thread Ashish Kulkarni
wrote: > In a custom handler, you can directly set it on the MessageContext object > (mc): > > mc.setTimeout(120*1000); //120 seconds > > > > Ashish Kulkarni schrieb: > >> Hi >> How do we set connection timeout in axis 1.4 web service client, i think >>

Re: how to set timeout in axis 1.4 web service client

2009-09-30 Thread Bauer Horscht
In a custom handler, you can directly set it on the MessageContext object (mc): mc.setTimeout(120*1000); //120 seconds Ashish Kulkarni schrieb: Hi How do we set connection timeout in axis 1.4 web service client, i think default is 10 minutes, I want to timeout if web service does not

how to set timeout in axis 1.4 web service client

2009-09-30 Thread Ashish Kulkarni
HiHow do we set connection timeout in axis 1.4 web service client, i think default is 10 minutes, I want to timeout if web service does not respond in 2 minutes, how can i do so -- Ashish www.ayurwellness.com www.mysoftwareneeds.com

How does web service client know it has received complete response

2009-09-30 Thread Ashish Kulkarni
HiHow does a web service client know that it has received complete response from web service, for example all data in between web service and web service client flows in http packets, how does web service client will know this is the last packet, or this is a correct packet, is there http code

[AXIS2]Web Service client/server in C++

2009-07-12 Thread Owais Khan
Dear All, I just wanted to know how can i use AXIS2 for C++ code on linux.Right now, I have used it for C code to expose web methods on Linux box. My usage is very simple.I will only use SOAP, WSDL and HTTP. No rocket science is required. Thanks. Regards, M Owais Khan.

Re: axis web service client socket timeout

2009-06-23 Thread amardeep singh khera
Hi , You can specify socket time out using following lines of code in your client.. ServiceClient client = stub._getServiceClient(); Options opt = client.getOptions(); opt.setTimeOutInMilliSeconds(60); client.setOptions(opt); Thanks Amardeep SI

Re: axis web service client socket timeout

2009-06-23 Thread Frederick G. Burkley
Look at the Option (or it might be Options) class. It has a method something like setTimeout(). On Tue, Jun 23, 2009 at 2:40 PM, Ashish Kulkarni < ashish.kulkarn...@gmail.com> wrote: > HiHow to specify socket timeout when calling web service using apache axis > client, i believe default time is

axis web service client socket timeout

2009-06-23 Thread Ashish Kulkarni
HiHow to specify socket timeout when calling web service using apache axis client, i believe default time is 10 minutes. Is it possible to set this time with some run time parameter, or do we need some programming change to do so Ashish

Re: [web service client]

2009-05-13 Thread Chinmoy Chakraborty
You can try following url: http://ws.apache.org/axis2/1_4_1/userguide-buildingservices.html#createscratch You can try following code to call your service: Options options = new Options(); Object[] invokedArgs = new Object[0]; Class[] returnType = new Class[]{Boolean

[web service client]

2009-05-12 Thread Vaibhav Arya
Hi every one, I have created and deployed web service using axis2. Would you please tell me how to write a simple client to call an axis2 web service method (especially without parameter). Kindly try to provide code snippet. Thanks in advance. Vaibhav Kumar Arya ===

Web service client error - "Unable to import binding"

2008-10-07 Thread Mark Christiansen
I'm a web services newbie - please help  I'm trying to create a .NET web client to a Java (Ajax2) web service. This is just a test page, so see if I can do it, before I continue adding more code.   But when I build my client web app I get the error: Unable to import binding 'SimpleServiceSOAP' f

How can I execute Web Service Client on JBOSS Server??

2008-08-18 Thread Takashi Saruhashi
Hello all, My name is Takashi. I need to execute Web Service Client on JBOSS Server not on my localmachine. Web Service and Web Service Client are deployed on same server. I created server side Unit Test for executing the Web Service Client. Then I got this error

Trying to access .NET based Web Service from Java based Web Service client failed.

2008-08-13 Thread Takashi Saruhashi
Hello all, My name is Takashi I faced some problem with communication between .NET based Web Service and Java based Web Service Client. My current environment is OS: Windows XP Pro Web Server: IIS v5.1 (Also ASP.NET server is working on Port 2526) Java: jdk1.5.0_15 Axis2: axis2-1.14 I

Qualified attributes in generated web service client

2008-05-14 Thread Chris Wraith
I am using Axis 1.4 to generate Axis web service clients against an externally defined Web Service which has both elementFormDefault and attributeFormDefault set to qualified. However, in the SOAP message that the generated web service clients sends to the web service, neither the elements nor

Re: Axis2 web service client compatibility

2008-05-09 Thread Amila Suriarachchi
On Wed, May 7, 2008 at 6:55 AM, Samisa Abeysinghe < [EMAIL PROTECTED]> wrote: > danclemson wrote: > >> Hi, >> >> I am new to both web service and axis2, and I have a few questions after >> reading the manual and examples. >> There are diffenernt ways to build web service using axis2. for example

Re: Axis2 web service client compatibility

2008-05-06 Thread Samisa Abeysinghe
danclemson wrote: Hi, I am new to both web service and axis2, and I have a few questions after reading the manual and examples. There are diffenernt ways to build web service using axis2. for example using pojo, axiom, or databinding. My question is if I choose to build my web service using a

Axis2 web service client compatibility

2008-05-06 Thread danclemson
forces the client to rely on axiom as well? Another question is that if the I choose to use rampart for user authentication, does this require the client to use rampart as well? thanks /dan -- View this message in context: http://www.nabble.com/Axis2-web-service-client-compatibility

Eclipse Web Service Client

2008-04-17 Thread Motaz K. Saad
Hello, I am trying to apply procedures in the link below http://www.eclipse.org/webtools/community/tutorials/BottomUpAxis2WebService/bu_tutorial.html to Create Bottom Up Web Service via Apache Axis2. My question is what is the difference between the following port names: SOAP12port_http and Http

Re: Axis 1.4 web service client with NTLM authentication, getting "premature end of file" exception

2008-04-14 Thread suraneni
quot; > User-Agent: Axis/1.4 > Host: 127.0.0.1:9876 > Transfer-Encoding: chunked > > > 8d8 > > xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"; > xmlns:xsd="http://www.w3.org/2001/XMLSchema"; > xmlns:xsi=&q

Axis 1.4 web service client with NTLM authentication, getting "premature end of file" exception

2008-03-25 Thread suraneni
mlns:xsi="http://www.w3.org/2001/XMLSchema-instance";> http://schemas.xmlsoap.org/soap/actor/next"; soapenv:mustUnderstand="0"> XXX XX ARSystem en_US GMT ht

Re: Difficulty Generating a JSP Test Client with Eclipse's Web Service Client Wizard

2008-01-13 Thread Lahiru Sandakith
without much difficulty. > > > Cool, > At first, I tested my services by using the Web Services Explorer within > Eclipse. > > > > Now, I'd like to build my own client to access the web services sitting in > my Tomcat6/Axis2 server. Looking over the "Web Ser

Difficulty Generating a JSP Test Client with Eclipse's Web Service Client Wizard

2008-01-10 Thread Matthew Fadoul
client to access the web services sitting in my Tomcat6/Axis2 server. Looking over the "Web Service Client" wizard's documentation, it appears that this wizard should be able to automatically generate JSP as a test-client. Unfortunately, I can't seem to access this function

Re: [Axis2] Generic Web Service client

2007-11-05 Thread Amila Suriarachchi
On 10/30/07, Evgeniy Vyborov <[EMAIL PROTECTED]> wrote: > > Hi folks. > > I'm new to Axis 2. > Now I'm trying to implement wsdl-based generic web service client. > The logic of this client is simple: user loads *.wsdl file from somewhere, > chooses service,

Re: [Axis2] Generic Web Service client

2007-10-31 Thread Evgeniy Vyborov
folks. > > I'm new to Axis 2. > Now I'm trying to implement wsdl-based generic web service client. > The logic of this client is simple: user loads *.wsdl file from > somewhere, chooses service, port, operation, sets input parameter > values. Then user can invoke th

Re: [Axis2] Generic Web Service client

2007-10-30 Thread Charitha Kankanamge
Evgeniy Vyborov wrote: Hi folks. I'm new to Axis 2. Now I'm trying to implement wsdl-based generic web service client. The logic of this client is simple: user loads *.wsdl file from somewhere, chooses service, port, operation, sets input parameter values. Then user can invoke th

[Axis2] Generic Web Service client

2007-10-30 Thread Evgeniy Vyborov
Hi folks. I'm new to Axis 2. Now I'm trying to implement wsdl-based generic web service client. The logic of this client is simple: user loads *.wsdl file from somewhere, chooses service, port, operation, sets input parameter values. Then user can invoke this service w

Re: Need help coding web service client with axis, please!!

2007-10-29 Thread Anne Thomas Manes
You must set the SOAPAction value: call.setSoapAction("http://tempuri.org/ValoresActuais_GetTemperatura";); Anne On 10/26/07, Paulo Cristo <[EMAIL PROTECTED]> wrote: > Hi, > > My name is Paulo, and i'm from Portugal. > I need to make a client to a web service, but i'm still fresh with SOAP/WSDL

Need help coding web service client with axis, please!!

2007-10-26 Thread Paulo Cristo
Hi, My name is Paulo, and i'm from Portugal. I need to make a client to a web service, but i'm still fresh with SOAP/WSDL and Axis. I would appreciate any hel on this. I'm trying to access the services under http://meteo.estg.ipleiria.pt/webservice/service1.asmx The following is a sample SOAP 1.

ssl-enabled web service client problem

2007-09-26 Thread Huitang Li
Hi, I am trying to create an axis2 web service client to access a ssl-enabled web service (https://..). I got the following error. I think that the problem is caused by the server certificate on the web service side. Probably if I import that server certificate and root certificate into

Re: [Rampart]How to implement security in web service client

2007-09-23 Thread Dimuthu
Hi, Rampart 1.3 available here[1] has sample code inside the samples folder. Regards, Dimuthu [1]http://ws.apache.org/axis2/modules/index.html On Sun, 2007-09-23 at 06:10 -0700, vittal nangunoori wrote: > hi All, > Can any one help me out in how to send binary security > token information in th

Re: [Rampart]How to implement security in web service client

2007-09-23 Thread vittal nangunoori
hi Martin, I have to implement security in client code by outflowsecurity parameter. I have to send binary security element data in security along with my client request to web service. Please suggest what i should do send this information. Thanks, Vittal --- vittal nangunoori <[EMAIL PROTECTED]>

Re: [Rampart]How to implement security in web service client

2007-09-23 Thread Martin Gainty
9:10 AM Subject: [Rampart]How to implement security in web service client > hi All, > Can any one help me out in how to send binary security > token information in the soap message header. > > I have generated client stub code using axis2 1.2 > version from wsdl file. Now I have

[Rampart]How to implement security in web service client

2007-09-23 Thread vittal nangunoori
hi All, Can any one help me out in how to send binary security token information in the soap message header. I have generated client stub code using axis2 1.2 version from wsdl file. Now I have send security information in the message header. Please provide if there is any sample code already imp

Re: create Java base Web service client

2007-04-28 Thread José Ferreiro
for example as programming language. You probably will need MS > visual studio as IDE > There you will use the command wsdl.exe (for java wsdl2java, use eclipse > with ant). > > Hope this little introduction was helpfull. > > José Ferreiro > > > > > On 4/27/07, Ashish K

Re: create Java base Web service client

2007-04-27 Thread Ashish Kulkarni
will use the command wsdl.exe (for java wsdl2java, use eclipse with ant). Hope this little introduction was helpfull. José Ferreiro On 4/27/07, Ashish Kulkarni <[EMAIL PROTECTED]> wrote: > > Hi > I recently got a WSDL file, and i am expected to write a web service > client

Re: create Java base Web service client

2007-04-27 Thread José Ferreiro
l.exe (for java wsdl2java, use eclipse with ant). Hope this little introduction was helpfull. José Ferreiro On 4/27/07, Ashish Kulkarni <[EMAIL PROTECTED]> wrote: Hi I recently got a WSDL file, and i am expected to write a web service client to access this web service, Can some one give some

create Java base Web service client

2007-04-27 Thread Ashish Kulkarni
Hi I recently got a WSDL file, and i am expected to write a web service client to access this web service, Can some one give some pointers, and code or example or tutorial to do so. What are the steps, do i have to used WSDL2JAVA to create some thing. Ashish

Re: Web service client authentication

2007-02-18 Thread Derek Weeks
Thanks Jarek, The key line I was missing was: auth.setPreemptiveAuthentication(true); It wasn't necessary for me to use auth.setAuthSchemes() because Axis determined that it needed to use basic authentication on its own. Thanks for your help, Derek On 16/02/07, Jarek Kucypera <[EMAIL PROTECTE

Re: Web service client authentication

2007-02-16 Thread Jarek Kucypera
Derek Weeks wrote: This constant does not appear to exist in Axis2 version 1.1 or 1.1.1. Should the constant be one of these? Following is how it works for me with axis2 1.1.1 HttpTransportProperties.Authenticator auth = new HttpTransportProperties.Authenticator(); auth.setPreemptiveAuthe

Web service client authentication

2007-02-15 Thread Derek Weeks
Hi Axis2 users, I'm writing a web service client that needs to authenticate against the HTTP server. The example of how to do this in the Transports section of the documentation says to add an HttpTransportProperties.Authenticator object to the Options object using the key org.apache.

cdc web service client

2007-01-13 Thread Alberto Nobile
Hi. I'm developing a cdc web service client app but I have some problems. First I've used the j2me wireless toolkit to build the stub from the wsdl file and when i try to run the app, i have this error: Exception in thread "main" java.lang.SecurityException: Package name not

re[4]: How can I return complex data structure and attachment to web service client?

2007-01-05 Thread Yong Yang
Hi Thilina, Thank you very much for your reply. >> > If the DATATYPE for the variable attachment1 in the class >> Method1Response is >OMElement, it seems the binary data is sending by >> value, not by reference when I >traced the SOAP message using TCPMonitor. >> Please make sure to

Re: re[2]: How can I return complex data structure and attachment to web service client?

2007-01-04 Thread Thilina Gunarathne
Hi, If the DATATYPE for the variable attachment1 in the class Method1Response is >OMElement, it seems the binary data is sending by value, not by reference when I >traced the SOAP message using TCPMonitor. Please make sure to set the optimize flag to "true" in the OMText child of that attachme

re[2]: How can I return complex data structure and attachment to web service client?

2007-01-04 Thread Yong Yang
Hi Thilina, Thank you very much for reply. >> > When we look at the WSDL generated from the source code, the data type >> of >method1Response is anyType. >> That's correct.. Axis2 couldn't figure out the actual schema when the >> parameters are OMElements. An OMElement can contain

Re: How can I return complex data structure and attachment to web service client?

2007-01-04 Thread Thilina Gunarathne
See my comments in line.. Hi, it seems I can return complex data structure and attachment together to web service >client only using AXIOM, for example, Yes.. You can You need to use the RawXMLMessageReceivers for that... When we look at the WSDL generated from the source code, the d

How can I return complex data structure and attachment to web service client?

2007-01-03 Thread Yong Yang
Hi, it seems I can return complex data structure and attachment together to web service client only using AXIOM, for example, public class Service1 { public OMElement method1() { OMElement result = NULL; //create corresponded node for each

Re: Building C# Web service client in Java

2006-08-24 Thread Suleman Butt
Indeed it worked!!!..   Now any pointer to soem wsdl2java example ?   I'mm looking my self as well ..   thankyou very much anyway.  On 8/24/06, HHDirecto. Net <[EMAIL PROTECTED]> wrote: I'm new in the web service world, so need a little help in building a c# web service clie

Re: Building C# Web service client in Java

2006-08-24 Thread HHDirecto . Net
I'm new in the web service world, so need a little help in building a c# web service client. I read abt a utility called wsdl2java that does that, but the problem is that i dont have a wsdl file for that c# web service. So how can I build a *java* client without wsdl file is my first que

Building C# Web service client in Java

2006-08-24 Thread Suleman Butt
I'm new in the web service world, so need a little help in building a c# web service client. I read abt a utility called wsdl2java that does that, but the problem is that i dont have a wsdl file for that c# web service. So how can I build a *java* client without wsdl file is my first que

Java web service client to .Net web service

2006-06-23 Thread Michael Schwab
Hi, I am developing a Java web service client using Apache Axis 1.4. The client will connect to a .Net version 1.1 + WSE 2 SP3 web service. The .Net web service requires X.509 based authentication and signature. I have created the Java stubs for the web service using WSDL2Java. The

Re: Axis andJ2ME web service client

2006-04-17 Thread Gorka López
Thanks for the response. I´m sorry if I send some mails, but my mail doesn´t work ok.   I try this solution. I hope I will not have any questions.   Thanks a lot, Kemmotar  On 4/17/06, Anne Thomas Manes <[EMAIL PROTECTED]> wrote: Kemmotar,Your J2ME client tool supports a limited set of SOAP functi

Re: Axis andJ2ME web service client

2006-04-17 Thread Anne Thomas Manes
Kemmotar,Your J2ME client tool supports a limited set of SOAP functions -- as defined by the WS-I Basic Profile. Axis generates rpc/encoded style services by default, which isn't allowed by the WS-I Basic Profile. I assume that you are starting with Java code. In order to generate a WS-I compliant

Re: Axis andJ2ME web service client

2006-04-17 Thread Martin Gainty
, please notifythe sender immediately by telephone or email and destroy the originalmessage without making a copy.  Thank you.     - Original Message - From: Gorka López To: axis-user@ws.apache.org Sent: Monday, April 17, 2006 5:22 AM Subject: Axis andJ2ME web service

Axis andJ2ME web service client

2006-04-17 Thread Gorka López
Hello,   I´m principiant with this tecnologies. I did a normal application that uses a simple web service, but when I try to use with j2me client, when I try to generate the stubs, the error is:   wsdl is not WS-I compliant ( Style is not document/literal).   I don´t know what I have to do. Could a

Axis web service client socket pooling

2006-04-03 Thread Jonathan Taub
Does Axis web service client uses socket pooling? If so, how can I configure the pool?   If not, I imagine I’ll have to create my own DefaultSocketFactory class. Does anybody know of an existing socket pooling framework I can use?  

Problem with AXIS-based web service client on WAS5.

2006-02-02 Thread cees.van.wijk
All, I'm running into an XML parsing problem while migrating a web service client based on AXIS and WSIF from WAS 4 to WAS 5. The error-message I get is: (the stacktrace is below) Provider null could not be instantiated: java.lang.NullPointerExce

Develop Axis Web Service Client behind MS Proxy Server

2005-12-27 Thread yehui liu
I always get 407 Authorization required error. If anyone knows the solution please help me on this. -- Regards, Liu yehui

Re: Web service client: need help

2005-12-13 Thread Håkon T Sønderland
Hansen, Geir wrote: Try this one Håkon: Prøv denne Håkon: System.setProperty("axis.socketSecureFactory", "org.apache.axis.components.net.SunFakeTrustSocketFactory"); Add this line before the code that instantiates the service object. WARNING: this code should not be used in a production envi

RE: Web service client: need help

2005-12-12 Thread Hansen, Geir
1:11 To: axis-user@ws.apache.org Subject: Re: Web service client: need help Håkon T Sønderland wrote: > Thanks a lot, I need to take a look at the next exception in the log > then, because it certainly isn't working ;) I was assuming this was > the problem since it is the first e

Re: Web service client: need help

2005-12-12 Thread Håkon T Sønderland
Håkon T Sønderland wrote: Thanks a lot, I need to take a look at the next exception in the log then, because it certainly isn't working ;) I was assuming this was the problem since it is the first exception that is cast. I thought the rest was just follow-ons from this one and thus ignored them.

Re: Web service client: need help

2005-12-09 Thread Håkon T Sønderland
Ron Reynolds wrote: i see this "error" (notice it's logged at the DEBUG level) even when things are running normally. do you get any exceptions thrown in your client code when you try to use the stub? the reason this is logged is because this code (AxisEngine:308): public SOAPService getSer

Re: Web service client: need help

2005-12-09 Thread Ron Reynolds
on to be a bit concerned by an exception showing up in your logs... > Hi, > > I'm trying to develop a web service client to consume an existing web > service using Axis 1.3/Java 1.4. > > I generate the stub code using wsdl2java (classes are "InfoXMLStub" > etc).

Web service client: need help

2005-12-09 Thread Håkon T Sønderland
Hi, I'm trying to develop a web service client to consume an existing web service using Axis 1.3/Java 1.4. I generate the stub code using wsdl2java (classes are "InfoXMLStub" etc). When I try to call the web service using this code: Header header = new Header(user,pass

Re: web service client ip address

2005-12-05 Thread Gabsaga Tata
See Wes's response below.     -Original Message-From: Wesley MacDonald [mailto:[EMAIL PROTECTED]Sent: Monday, December 5, 2005 03:30 PMTo: axis-user@ws.apache.orgSubject: RE: web service client ip address import org.apache.axis.Constants;import org.apache.axis.MessageCo

RE: web service client ip address

2005-12-05 Thread Wesley MacDonald
: December 5, 2005 3:02 PMTo: axis-user@ws.apache.orgSubject: web service client ip address Is there a way to get a clients ip inside a web service call? If I use a handler how could I pass the ip on to the service method?

web service client ip address

2005-12-05 Thread Xavier Toth
Is there a way to get a clients ip inside a web service call? If I use a handler how could I pass the ip on to the service method?

web service client creating soap header

2005-04-29 Thread Plorks mail
Hello Does anyone have an example of a web service client that creates a custom soap header and a server-sdie web service retruns a values to that client ws header? Or something similar theya could share with me Many thanks _ Be