how to add interceptor for axis2 client

2010-02-18 Thread and)
hi all I need to add interseptor in client code, which will be triggered before sending (pos/get)requests on server, it is possible in axis2? -- View this message in context: http://old.nabble.com/how-to-add-interceptor-for-axis2-client-tp27642627p27642627.html Sent from the Axis - User

AW: how to add interceptor for axis2 client

2010-02-18 Thread Stadelmann Josef
@Axa-winterthur.ch -Ursprüngliche Nachricht- Von: and) [mailto:andromedagal...@yandex.ru] Gesendet: Donnerstag, 18. Februar 2010 18:34 An: axis-user@ws.apache.org Betreff: how to add interceptor for axis2 client hi all I need to add interseptor in client code, which will be triggered

Error Axis2 Client. Retrying request after eight minutes

2010-02-08 Thread pacoleal
Hello, I have a axis2 client. I some requests I get next situation: Aprox eight minutes after I get last trace write to, after client close the connection and retrying the request. Second try is working properly. 11:53,979 DEBUG org.apache.commons.httpclient.Wire.wire - f9c[\r

Re: Axis2--How to access custom http headers from axis2 client

2010-01-01 Thread Amila Suriarachchi
On Mon, Dec 21, 2009 at 11:22 PM, santhosh kotte santhoshko...@yahoo.comwrote: Hi guyz... I have added my own http headers in the axis service. MessageContext rmc =MessageContext.getCurrentMessageContext().getOperationContext().getMessageContext(WSDLConstants.MESSAGE_LABEL_OUT_VALUE);

Axis2--How to access custom http headers from axis2 client

2009-12-21 Thread santhosh kotte
Hi guyz... I have added my own http headers in the axis service. MessageContext rmc =MessageContext.getCurrentMessageContext().getOperationContext().getMessageContext(WSDLConstants.MESSAGE_LABEL_OUT_VALUE);       ListHeader headers = new ArrayList();        headers.add(new

Axis2: Client side ConnectionPoolTimeoutException: Timeout waiting for connection

2009-12-16 Thread mustvicky
Hi, While using Axis2, after many successful soap calls, I get the following error: org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689) at java.lang.Thread.run(Thread.java:619) Caused by: javax.xml.soap.SOAPException: Timeout waiting for connection at

axis2:client IP through X-FORWARDED-FOR

2009-12-15 Thread Vaibhav Arya
Hi all, Can anyone please tell me, how to use X-FORWARDED-FOR to get client IP? Does SOAP header include this information? And how to write code to access client side IP? Please suggest. Thanks in advance. Vaibhav Kumar Arya

Re: axis2:client IP through X-FORWARDED-FOR

2009-12-15 Thread aledbf
You can use the http://code.google.com/p/xebia-france/wiki/XForwardedFilter XForwardedFilter Vaibhav Arya wrote: Hi all, Can anyone please tell me, how to use X-FORWARDED-FOR to get client IP? Does SOAP header include this information? And how to write code to access client side

Re: HI :How to add Empty soap header element to SOAP envelope using AXIS2 client API

2009-12-10 Thread Amila Suriarachchi
use operational client to send a soap envelop. have a look at here[1]. thanks, Amila. [1] http://amilachinthaka.blogspot.com/2009/09/sending-arbitrary-soap-message-with.html On Tue, Dec 8, 2009 at 3:22 PM, Vishnu Vardhan Reddy vre...@radiantinfo.com wrote: HI all How to add empty SOAP

HI :How to add Empty soap header element to SOAP envelope using AXIS2 client API

2009-12-08 Thread Vishnu Vardhan Reddy
HI all, How to add empty SOAP Header element to SOAP request , using AXIS2 API. Soap Request should be like this ?xml version=1.0 encoding=http://schemas.xmlsoap.org/soap/envelope/; standalone=no? soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; soapenv:Header

Cannot run axis2 client (error 501)

2009-11-20 Thread P.N.
Hello! When trying to connect to an axis-service (old axis version!) from an axis2-client I'm always getting the following error: org.apache.axis2.AxisFault: Transport error: 501 Error: Not Implemented at org.apache.axis2.transport.http.HTTPSender.handleResponse(HTTPSender.java:295

Re: Cannot run axis2 client (error 501)

2009-11-20 Thread Chinmoy Chakraborty
I guess you need to upgrade server side implementation to axis2 also. On Fri, Nov 20, 2009 at 4:17 PM, P.N. peter.nabbef...@gmx.de wrote: Hello! When trying to connect to an axis-service (old axis version!) from an axis2-client I'm always getting the following error: org.apache.axis2

Re: Cannot run axis2 client (error 501)

2009-11-20 Thread Amila Suriarachchi
On Fri, Nov 20, 2009 at 4:17 PM, P.N. peter.nabbef...@gmx.de wrote: Hello! When trying to connect to an axis-service (old axis version!) from an axis2-client I'm always getting the following error: org.apache.axis2.AxisFault: Transport error: 501 Error: Not Implemented

Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Andy Dysart
Hello all, We are having a problem with some Axis2 client code that is making a web service call to a server we do not control where that server gets locked up in some kind of bad state after having accepted a connection from us, but it does not read all of the request. The data is relatively

Re: Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Chinmoy Chakraborty
From client side you can try this: Options options = new Options(); options.setTimeOutInMilliSeconds(60); HTH, Chinmoy On Tue, Nov 17, 2009 at 5:47 PM, Andy Dysart adys...@prospricing.comwrote: Hello all, We are having a problem with some Axis2 client code

axis2 client with addressing-1.4.mar and rampart-1.4.mar using java web start

2009-11-17 Thread Jaime Hablutzel Egoavil
Hi, can anybody tell me why modules use the .mar extension instead of jar?? Because right now I'm facing problems trying to deploy a web service client with axis2 using java web start because it isn't interpreting correctly the .mar extension resources: addressing-1.4.mar and rampart-1.4.mar I

Re: axis2 client with addressing-1.4.mar and rampart-1.4.mar using java web start

2009-11-17 Thread Anup Mayank
.mar is short for module archive From page http://ws.apache.org/axis2/1_2/modules.html Package in a .mar (Module Archive) On Tue, Nov 17, 2009 at 12:44 PM, Jaime Hablutzel Egoavil hablutz...@gmail.com wrote: Hi, can anybody tell me why modules use the .mar extension instead of jar?? Because

RE: Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Andy Dysart
to configure a write timeout as an Axis2 client? From client side you can try this: Options options = new Options(); options.setTimeOutInMilliSeconds(60); HTH, Chinmoy On Tue, Nov 17, 2009 at 5:47 PM, Andy Dysart adys...@prospricing.commailto:adys...@prospricing.com wrote

RE: Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Martin Gainty
: adys...@prospricing.com To: axis-user@ws.apache.org Date: Tue, 17 Nov 2009 18:17:44 -0600 Subject: RE: Any way to configure a write timeout as an Axis2 client? Hello Chinmoy – thanks for your quick reply. I have tried this and unfortunately it does not seem to work. It does

RE: Any way to configure a write timeout as an Axis2 client?

2009-11-17 Thread Andy Dysart
HTTP 1.1. BTW, this is Axis2 1.4.1. -andy From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: Tuesday, November 17, 2009 8:09 PM To: axis-user@ws.apache.org Subject: RE: Any way to configure a write timeout as an Axis2 client? Andy- seems to be specific

Create an Axis2 client call inside an Axis2 server aar

2009-10-27 Thread Francesco Stampacchia
Hello everyone, how can I make my Axis2 server perform an Axis2 client? I'm getting everytime the following exception: org.apache.axis2.AxisFault: Unable to engage module : rampart at org.apache.axis2.client.ServiceClient.engageModule(ServiceClient.java:357

Re: AXIS2 Client beginner... Exception converting to string.

2009-09-30 Thread lyall
.wsdl.WSDLConstants.MESSAGE_LABEL_IN_VALUE); org.apache.axiom.soap.SOAPEnvelope _returnEnv = _returnMessageContext.getEnvelope(); return _returnEnv; } catch (org.apache.axis2.AxisFault f) { ...snip... } -- View this message in context: http://www.nabble.com/AXIS2-Client-beginner

AXIS2 Client beginner... Exception converting to string.

2009-09-22 Thread lyall
.wsdl.WSDLConstants.MESSAGE_LABEL_IN_VALUE); org.apache.axiom.soap.SOAPEnvelope _returnEnv = _returnMessageContext.getEnvelope(); return _returnEnv; } catch (org.apache.axis2.AxisFault f) { ...snip... } -- View this message in context: http://www.nabble.com/AXIS2-Client

Forcing I/O streams in an axis2 client

2009-09-17 Thread Christophe Dehlinger
Hello, I am trying to write an Axis2 client for a SOAP service that can be reached through a SSH channel created by Maverick SSH. In practice, this means sending and reading SOAP/HTTP messages on an OutputStream/InputStream pair created by Maverick. What is the best way to have Axis2 use

Re: Forcing I/O streams in an axis2 client

2009-09-17 Thread Amila Suriarachchi
On Thu, Sep 17, 2009 at 12:54 PM, Christophe Dehlinger christophedehlin...@gmail.com wrote: Hello, I am trying to write an Axis2 client for a SOAP service that can be reached through a SSH channel created by Maverick SSH. In practice, this means sending and reading SOAP/HTTP messages

Axis2 client that works with jax-ws handlers add Jax-ws handlers to Axis2 Client

2009-09-14 Thread inalasuresh
Hi Every one, i am new for Axis2, my question here is Axis2 client that works with jax-ws handlers. how to add jax-ws handlers for Axis2 Client. i have Axis2 Client for this i need to add jax-ws handlers. i spend lot of time to find out the solution, my bad ness i didnt get any posts

Re: Help! Error when testing Axis2 client

2009-09-10 Thread Deepal Jayasinghe
/claire_l...@yahoo.com/* wrote: From: Clara claire_l...@yahoo.com Subject: Re: Help! Error when testing Axis2 client To: axis-user@ws.apache.org Date: Monday, August 24, 2009, 11:02 PM Hi everyone, Any idea of the below error? Please help. --- On *Mon, 8/24/09

Re: Help! Error when testing Axis2 client

2009-09-10 Thread Amila Suriarachchi
) at com.samples.testAxis2.test(testAxis2.java:28) at com.samples.testAxis2.main(testAxis2.java:23) --- On *Thu, 8/20/09, Andreas Veithen andreas.veit...@gmail.com* wrote: From: Andreas Veithen andreas.veit...@gmail.com Subject: Re: Help! Error when testing Axis2 client To: axis-user@ws.apache.org Date

Re: Help! Error when testing Axis2 client

2009-09-09 Thread Clara
Hi , It's been a while since I posted this error. anybody can help me please? thanks. --- On Mon, 8/24/09, Clara claire_l...@yahoo.com wrote: From: Clara claire_l...@yahoo.com Subject: Re: Help! Error when testing Axis2 client To: axis-user@ws.apache.org Date: Monday, August 24, 2009, 11:02 PM

Re: Help! Error when testing Axis2 client

2009-08-25 Thread Clara
Hi everyone, Any idea of the below error? Please help.  --- On Mon, 8/24/09, Clara claire_l...@yahoo.com wrote: From: Clara claire_l...@yahoo.com Subject: Re: Help! Error when testing Axis2 client To: axis-user@ws.apache.org Date: Monday, August 24, 2009, 2:56 AM Hi Andreas, Thank you

Axis2 client stubs with customizable server - unexpected subelement ADBException

2009-08-25 Thread Remko Dobber
Hello, I've been using Axis2 successfully to generate client stubs for several commercial products such as HP Service Manager to integrate our monitoring tool with those products using web services. My problem is that the commercial tools allow for some customization of the web services so

Re: Axis2 client stubs with customizable server - unexpected subelement ADBException

2009-08-25 Thread Amila Suriarachchi
On Tue, Aug 25, 2009 at 10:38 PM, Remko Dobber remko.dob...@nimsoft.comwrote: Hello, I’ve been using Axis2 successfully to generate client stubs for several commercial products such as HP Service Manager to integrate our monitoring tool with those products using web services. My problem

Re: Help! Error when testing Axis2 client

2009-08-24 Thread Clara
! Error when testing Axis2 client To: axis-user@ws.apache.org Date: Thursday, August 20, 2009, 12:54 AM If you are sure that all classes/JARs are there, then it means that some classes are loaded by the wrong class loader in the class loader hierarchy. This is something that is difficult to solve

Re: Help! Error when testing Axis2 client

2009-08-20 Thread Andreas Veithen
: From: Andreas Veithen andreas.veit...@gmail.com Subject: Re: Help! Error when testing Axis2 client To: axis-user@ws.apache.org Date: Wednesday, August 19, 2009, 11:10 AM Which classloader is the xmlbeans JAR loaded from (i.e. where is the xmlbeans JAR located)? Idem for the TypeSystemHolder class

Re: Help! Error when testing Axis2 client

2009-08-19 Thread Clara
: Andreas Veithen andreas.veit...@gmail.com Subject: Re: Help! Error when testing Axis2 client To: axis-user@ws.apache.org Date: Tuesday, August 18, 2009, 2:45 AM This probably means that you have a mix of JARs from different Axis2 versions (maybe at different locations in the class loader hierarchy

Re: Help! Error when testing Axis2 client

2009-08-19 Thread Clara
andreas.veit...@gmail.com Subject: Re: Help! Error when testing Axis2 client To: axis-user@ws.apache.org Date: Wednesday, August 19, 2009, 11:10 AM Which classloader is the xmlbeans JAR loaded from (i.e. where is the xmlbeans JAR located)? Idem for the TypeSystemHolder class. Andreas On Wed, Aug 19, 2009

Help! Error when testing Axis2 client

2009-08-18 Thread Maria Claribelle M. Loto
Hi, I am currently developing a webservice using axis2 and Resin 3.1.9. I successfully generated the .aar file, dropped it on C:\resin\webapps\axis2\WEB-INF\services. I was able to get to the axis2 happy page. However, when I tried calling my service by accessing it through the url like

Re: Help! Error when testing Axis2 client

2009-08-18 Thread Andreas Veithen
This probably means that you have a mix of JARs from different Axis2 versions (maybe at different locations in the class loader hierarchy). Andreas On Tue, Aug 18, 2009 at 11:30, Maria Claribelle M. Lotoclaire_l...@yahoo.com wrote: Hi, I am currently developing a webservice using axis2 and

Re: Axis2 Client in Weblogic: org.apache.axis2.deployment.DeploymentException

2009-08-13 Thread IamSam
the Context using the path of Axis2.xml. Is it happening because I create a new Object everytime in each thread and something is messing up because of that. Thanks, Sameer -- View this message in context: http://www.nabble.com/Axis2-Client-in-Weblogic%3A-org.apache.axis2

RE: Axis2 Client in Weblogic: org.apache.axis2.deployment.DeploymentException

2009-08-13 Thread Martin Gainty
: sameer.mhas...@gmail.com To: axis-user@ws.apache.org Subject: Re: Axis2 Client in Weblogic: org.apache.axis2.deployment.DeploymentException Guys, Any takers for this? IamSam wrote: Hello Members, I am using Stub generated by Axis2 1.4 (WSDL2java) in a TimerTask scheduled

RE: Axis2 Client in Weblogic: org.apache.axis2.deployment.DeploymentException

2009-08-13 Thread IamSam
obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Thu, 13 Aug 2009 07:01:47 -0700 From: sameer.mhas...@gmail.com To: axis-user@ws.apache.org Subject: Re: Axis2 Client in Weblogic

Axis2 Client in Weblogic: org.apache.axis2.deployment.DeploymentException

2009-08-12 Thread IamSam
a new Object everytime in each thread and something is messing up because of that. Thanks, Sameer -- View this message in context: http://www.nabble.com/Axis2-Client-in-Weblogic%3A-org.apache.axis2.deployment.DeploymentException-tp24943227p24943227.html Sent from the Axis - User mailing list

Re: How to use Rampart as Axis2 client from ejb (JBoss) ?

2009-06-21 Thread asheikh
. Thanks, Keith. On Tue, Aug 26, 2008 at 6:43 PM, Rainer Montag mon...@danet.de wrote: Hello, I like to implement an Axis2 client that is used from within an EJB calling an external web service that requires a UsernameToken. I have a problem how to setup my Axis2 client code to engage

Re: How to use Rampart as Axis2 client from ejb (JBoss) ?

2009-06-20 Thread asheikh
client that is used from within an EJB calling an external web service that requires a UsernameToken. I have a problem how to setup my Axis2 client code to engage the rampart module resulting in a Unable to engage module: rampart exception. My ejb code looks something like

Re: How to use Rampart as Axis2 client from ejb (JBoss) ?

2009-06-20 Thread asheikh
. On Tue, Aug 26, 2008 at 6:43 PM, Rainer Montag mon...@danet.de wrote: Hello, I like to implement an Axis2 client that is used from within an EJB calling an external web service that requires a UsernameToken. I have a problem how to setup my Axis2 client code to engage the rampart

axis2 client doesn't keep the object order of the response xml

2009-06-05 Thread maho77
testResponse testResultName1/testResult testResultName2/testResult testResultName3/testResult testResultName4/testResult testResultName5/testResult /testResponse /ns1:testResponse /env:Body /env:Envenlope The Axis2 client provides me all this data, but the array

Re: [axis2] | Problem running axis2 client

2009-04-27 Thread robert lazarski
On Mon, Apr 27, 2009 at 11:36 AM, Rajneesh Kumar rajneesh.ku...@otssolutions.com wrote: Hi  Robert, Thanks for suggestion… Now its running. But not processing correctly. Please see the code snap below:     if (result == null) {     System.out.println(Weather didn't

[axis2] | Problem running axis2 client

2009-04-24 Thread Rajneesh Kumar
Hi All, I have created and deployed a web service on axis2. Now I start to work for client as it is given on apache axis2 site. After some effort the client gets compiled. But I am not able to run it because it needs many approx 56 jar file at run time as apache suggest. I have tried to set

RE: [axis2] | Problem running axis2 client

2009-04-24 Thread Martin Gainty
accepter aucune responsabilité pour le contenu fourni. Date: Fri, 24 Apr 2009 11:31:42 -0300 Subject: Re: [axis2] | Problem running axis2 client From: robertlazar...@gmail.com To: axis-user@ws.apache.org On Fri, Apr 24, 2009 at 11:30 AM, Rajneesh Kumar rajneesh.ku...@otssolutions.com wrote

Help Webservice security | Axis2 client with .net Webservice

2009-04-22 Thread karaiyandi sethurajan
  Hi All,   I need to access webservice hosted in .net server. The webservice was secured. I need access the webservice using Java Client.   The following ceritificates is provided. 1. PartnerRe_Root_CA_TST.cer is our temporary Root Certificate Authority's public key we have to trust.

Axis2 Client Thread Safe?

2009-03-23 Thread Daniel Cox
All, We are using Axis2 1.4.1and generating clients using WSDL2Java with both ADB and XmlBeans. I found a few post and threads online that indicate these generated clients are not thread safe. I have not been able to find documentation actually saying the generated clients are not thread safe

Re: Axis2 client request to IIS 5.0 returns a 500 error.

2009-01-05 Thread excess2
/Axis2-client-request-to-IIS-5.0-returns-a-500-error.-tp21236655p21297434.html Sent from the Axis - User mailing list archive at Nabble.com.

Re: Axis2 client request to IIS 5.0 returns a 500 error.

2009-01-05 Thread Andreas Veithen
is in urn:VOIP_SIP_Trouble_Ticket and its children in AuthenticationInfo. Andreas -- View this message in context: http://www.nabble.com/Axis2-client-request-to-IIS-5.0-returns-a-500-error.-tp21236655p21297434.html Sent from the Axis - User mailing list archive at Nabble.com.

Re: Axis2 client request to IIS 5.0 returns a 500 error.

2009-01-05 Thread excess2
children. In the first request all elements are in the urn:VOIP_SIP_Trouble_Ticket10 namespace, while in the second, AuthenticationInfo is in urn:VOIP_SIP_Trouble_Ticket and its children in AuthenticationInfo. Andreas -- View this message in context: http://www.nabble.com/Axis2-client

Re: Axis2 client request to IIS 5.0 returns a 500 error.

2009-01-05 Thread Amila Suriarachchi
. In the first request all elements are in the urn:VOIP_SIP_Trouble_Ticket10 namespace, while in the second, AuthenticationInfo is in urn:VOIP_SIP_Trouble_Ticket and its children in AuthenticationInfo. Andreas -- View this message in context: http://www.nabble.com/Axis2-client

Re: Axis2 client request to IIS 5.0 returns a 500 error.

2009-01-01 Thread Afkham Azeez
If you look at the second request, there is a custom SOAP header that is sent (some sort of custom authentication/UsernameToken protocol, not WS-Sec). I assume that this header is validated on the server side. On the Axis2 client you may need to set this custom header before sending the request

Re: Axis2 client request to IIS 5.0 returns a 500 error.

2009-01-01 Thread Andreas Veithen
is what's wrong with the first request (which fails with a 500 from the server) compared to the second one which works. Thanks for any assistance you might provide. G -- View this message in context: http://www.nabble.com/Axis2-client-request-to-IIS-5.0-returns-a-500-error

Axis2 client request to IIS 5.0 returns a 500 error.

2008-12-31 Thread excess2
. Thanks for any assistance you might provide. G -- View this message in context: http://www.nabble.com/Axis2-client-request-to-IIS-5.0-returns-a-500-error.-tp21236655p21236655.html Sent from the Axis - User mailing list archive at Nabble.com.

Re: thread safe axis2 client stub

2008-12-21 Thread Thilina Gunarathne
@ws.apache.org *Subject:* Re: thread safe axis2 client stub On Tue, Dec 9, 2008 at 9:50 PM, Paul French paul.fre...@kirona.com wrote: This seems strange to me that the client stub cannot be made thread safe. After reading the below I have changed my client service to create the client

Re: thread safe axis2 client stub

2008-12-21 Thread Deepal jayasinghe
mailto:axis-user@ws.apache.org *Subject:* Re: thread safe axis2 client stub On Tue, Dec 9, 2008 at 9:50 PM, Paul French paul.fre...@kirona.com mailto:paul.fre...@kirona.com wrote: This seems strange to me that the client stub cannot be made thread safe

Re: thread safe axis2 client stub

2008-12-21 Thread Afkham Azeez
a client class that wraps an Axis2 client stub synchronize the relevant places in the code within that client class. This is quite similar to the difference between Hashtable HashMaps. The developer can optimize the code for better performance if he takes care of making the code thread safe

Re: thread safe axis2 client stub

2008-12-21 Thread Afkham Azeez
-user@ws.apache.org *Subject:* Re: thread safe axis2 client stub On Tue, Dec 9, 2008 at 9:50 PM, Paul French paul.fre...@kirona.com wrote: This seems strange to me that the client stub cannot be made thread safe. After reading the below I have changed my client service to create

Re: thread safe axis2 client stub

2008-12-21 Thread Afkham Azeez
[mailto:sameera.madus...@gmail.com] *Sent:* 2008-12-15 15:06 *To:* axis-user@ws.apache.org *Subject:* Re: thread safe axis2 client stub On Tue, Dec 9, 2008 at 9:50 PM, Paul French paul.fre...@kirona.com wrote: This seems strange to me that the client stub cannot be made thread safe. After

RE: thread safe axis2 client stub

2008-12-21 Thread Paul French
...@gmail.com] Sent: 21 December 2008 15:00 To: axis-user@ws.apache.org Subject: Re: thread safe axis2 client stub Yes, creating ConfigurationContext is very expensive since it involve reading various files. So as Thilina mentioned create a ConfigurationContext and use the created

Re: thread safe axis2 client stub

2008-12-21 Thread Deepal Jayasinghe
cleanup, but in a long run you might need to clean the transports. Deepal Merry Xmas. -Original Message- From: Deepal jayasinghe [mailto:deep...@gmail.com] Sent: 21 December 2008 15:00 To: axis-user@ws.apache.org Subject: Re: thread safe axis2 client stub Yes, creating

Re: thread safe axis2 client stub

2008-12-21 Thread Amila Suriarachchi
-user@ws.apache.org Subject: Re: thread safe axis2 client stub Yes, creating ConfigurationContext is very expensive since it involve reading various files. So as Thilina mentioned create a ConfigurationContext and use the created ConfigurationContext for subsequent call. Simply when you

RE: thread safe axis2 client stub

2008-12-20 Thread Shawn McKinney
French paul.fre...@kirona.com Subject: RE: thread safe axis2 client stub To: axis-user@ws.apache.org Date: Wednesday, December 10, 2008, 11:13 AM Yes that is one solution but that means creating a pool of client stub objects (much like a database connection pool) or storing a client stub

RE: thread safe axis2 client stub

2008-12-15 Thread Paul French
web service stack out there that can create thread safe clients? Thanks _ From: Martin Gainty [mailto:mgai...@hotmail.com] Sent: 15 December 2008 02:01 To: paul.fre...@kirona.com Subject: RE: thread safe axis2 client stub If you have a ThreadedPool approach for client stub you can

do I need to recreate axis2 client stub?

2008-12-15 Thread Shehan Simen
Hi, I have deployed an axis2 web service which is already using by the clients. I have to update this service to pass another input parameter to one of web service method, let's say getName() method. If I add a new parameter to the request as an optional field (minOccurs=0), will it affect the

RE: thread safe axis2 client stub

2008-12-14 Thread Paul French
Bump! Anyone? If Axis2 is to be performant then can someone from the Axis2 development team explain the best way to call a web service using Axis2 client stubs? We have a web application where a user interaction initiates a web service call. Are we expected to store one client stub per thread

Re: Axis2 client - counting bytes sent and received

2008-12-14 Thread Dave Meibusch
You should be able to do this easily by using a module. We do this to show statistics in the WSO2 Web Services Application Server (WSO2 WSAS) [1] which is built on top of Axis2. We have done this by using a module. Thanks,Keith.[1] http://wso2.org/projects/wsas Yes, a module with a custom

Re: thread safe axis2 client stub

2008-12-14 Thread Sameera Jayasoma
%20safe+page:2+mid:eenup3ck5ib6fzqq+state:results *From:* Amila Suriarachchi [mailto:amilasuriarach...@gmail.com] *Sent:* 2008-12-08 15:26 *To:* axis-user@ws.apache.org *Subject:* Re: thread safe axis2 client stub I have tested with Axis2 1.4 and it worked fine. can you please send

RE: thread safe axis2 client stub

2008-12-14 Thread Shehan Simen
Hi Samera, So do we have to create a ConfigurationContext for each thread? Is'nt it too much for each thread? Regards, Shehan From: Sameera Jayasoma [mailto:sameera.madus...@gmail.com] Sent: 2008-12-15 15:06 To: axis-user@ws.apache.org Subject: Re: thread safe axis2 client stub On Tue, Dec 9

Re: Axis2 client - counting bytes sent and received

2008-12-12 Thread Michele Mazzucco
What about using a custom handler with a null output stream? Michele On 11 Dec 2008, at 23:42, Dave Meibusch wrote: Hi, I'm attempting to log statistics for my system, including the bytes sent/received for the components using Axis2 client code. Digging through the source of HttpClient

Re: Axis2 client - counting bytes sent and received

2008-12-12 Thread keith chapman
PM, Michele Mazzucco michele.mazzu...@ncl.ac.uk wrote: What about using a custom handler with a null output stream? Michele On 11 Dec 2008, at 23:42, Dave Meibusch wrote: Hi, I'm attempting to log statistics for my system, including the bytes sent/received for the components using Axis2

Re: Axis2 Client get Premature end of file. from server

2008-12-11 Thread Tsvetelin Saykov
Hi all, I find that the error Premature end of file. which I received from Lotus Domino over MS Windows server is something happening in HTTP level. To solve this problem I configure the Axis2 HTTP Transport Sender not to use Transfer-Encoding : Chunked

Axis2 client - counting bytes sent and received

2008-12-11 Thread Dave Meibusch
Hi, I'm attempting to log statistics for my system, including the bytes sent/received for the components using Axis2 client code. Digging through the source of HttpClient, HttpMethod (latter is accessible from Axis2 MessageContext) has not been successful. The Content-Length HTTP header

RE: thread safe axis2 client stub

2008-12-10 Thread Paul French
] Sent: 10 December 2008 01:24 To: axis-user@ws.apache.org Subject: RE: thread safe axis2 client stub Yes, I am expecting an answer from someone who develop the axis2. It is very inefficient to create a stub for each call. Regards, Shehan From: Paul French [mailto:[EMAIL PROTECTED] Sent

Axis2 Client get Premature end of file. from server

2008-12-10 Thread Tsvetelin Saykov
Hi, I am new in Axis2 web services application development and I am experience a problem with Axis2 I am writing a Client application and I get Premature end of file. from server. The client application is running under Linux/Java6. The web services server is IBM Lotus Domino under MS Windows I

RE: thread safe axis2 client stub

2008-12-10 Thread Kraus, David
: Paul French [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 10, 2008 4:37 AM To: axis-user@ws.apache.org Subject: RE: thread safe axis2 client stub Can anyone comment on this? It is a major issue for us. Why is the client stub created not thread safe? If it cannot be made thread

RE: thread safe axis2 client stub

2008-12-10 Thread Paul French
[mailto:[EMAIL PROTECTED] Sent: 10 December 2008 16:56 To: axis-user@ws.apache.org Subject: RE: thread safe axis2 client stub I would think that there is no need to create a new client stub for each web service call. You just need to be sure you create a separate stub for each client thread

RE: thread safe axis2 client stub

2008-12-09 Thread Paul French
suggests some tricks you can do to make things more efficient. What are these tricks? Thanks Paul _ From: Amila Suriarachchi [mailto:[EMAIL PROTECTED] Sent: 09 December 2008 04:26 To: axis-user@ws.apache.org Subject: Re: thread safe axis2 client stub I was not aware of this. If the axis2

Re: thread safe axis2 client stub

2008-12-09 Thread David Ojeda
%20safe+page:2+mid:eenup3ck5ib6fzqq+state:results From: Amila Suriarachchi [mailto:[EMAIL PROTECTED] Sent: 2008-12-08 15:26 To: axis-user@ws.apache.org Subject: Re: thread safe axis2 client stub I have tested with Axis2 1.4 and it worked fine. can you please send the mail thread

RE: thread safe axis2 client stub

2008-12-09 Thread Paul French
http://markmail.org/message/iif5rdpgqahk4u5t#query:axis2%20client%20stub%20t hread%20safe+page:2+mid:eenup3ck5ib6fzqq+state:results _ From: David Ojeda [mailto:[EMAIL PROTECTED] Sent: 09 December 2008 16:16 To: axis-user@ws.apache.org Subject: Re: thread safe axis2 client stub I am

RE: thread safe axis2 client stub

2008-12-09 Thread Shehan Simen
Yes, I am expecting an answer from someone who develop the axis2. It is very inefficient to create a stub for each call. Regards, Shehan From: Paul French [mailto:[EMAIL PROTECTED] Sent: 2008-12-10 03:29 To: axis-user@ws.apache.org; 'David Ojeda' Subject: RE: thread safe axis2 client stub http

Re: thread safe axis2 client stub

2008-12-08 Thread Amila Suriarachchi
+mid:eenup3ck5ib6fzqq+state:results *From:* Amila Suriarachchi [mailto:[EMAIL PROTECTED] *Sent:* 2008-12-08 15:26 *To:* axis-user@ws.apache.org *Subject:* Re: thread safe axis2 client stub I have tested with Axis2 1.4 and it worked fine. can you please send the mail thread you mentioned

thread safe axis2 client stub

2008-12-07 Thread Shehan Simen
Hi, I am going to invoke a web service via a client stub generated by axis2. I want to have a single instance of the stub across my application. So when I initiate the stub (when I call the constructor), I don't like to call it again throughout my application. Is it thread safe? Regards, Shehan

Re: thread safe axis2 client stub

2008-12-07 Thread Amila Suriarachchi
yes thanks, Amila. On Mon, Dec 8, 2008 at 9:31 AM, Shehan Simen [EMAIL PROTECTED] wrote: Hi, I am going to invoke a web service via a client stub generated by axis2. I want to have a single instance of the stub across my application. So when I initiate the stub (when I call the

RE: thread safe axis2 client stub

2008-12-07 Thread Shehan Simen
@ws.apache.org Subject: Re: thread safe axis2 client stub yes thanks, Amila. On Mon, Dec 8, 2008 at 9:31 AM, Shehan Simen [EMAIL PROTECTED]mailto:[EMAIL PROTECTED] wrote: Hi, I am going to invoke a web service via a client stub generated by axis2. I want to have a single instance of the stub

Re: thread safe axis2 client stub

2008-12-07 Thread Amila Suriarachchi
is not thread safe. Is this problem fixed now? In which version I can find it then? Regards, Shehan *From:* Amila Suriarachchi [mailto:[EMAIL PROTECTED] *Sent:* 2008-12-08 15:13 *To:* axis-user@ws.apache.org *Subject:* Re: thread safe axis2 client stub yes thanks, Amila

RE: thread safe axis2 client stub

2008-12-07 Thread Shehan Simen
Follow the link http://markmail.org/message/iif5rdpgqahk4u5t#query:axis2%20client%20stub%20thread%20safe+page:1+mid:iif5rdpgqahk4u5t+state:results From: Amila Suriarachchi [mailto:[EMAIL PROTECTED] Sent: 2008-12-08 15:26 To: axis-user@ws.apache.org Subject: Re: thread safe axis2 client stub I

RE: thread safe axis2 client stub

2008-12-07 Thread Shehan Simen
Also this link: http://markmail.org/message/iif5rdpgqahk4u5t#query:axis2%20client%20stub%20thread%20safe+page:2+mid:eenup3ck5ib6fzqq+state:results From: Amila Suriarachchi [mailto:[EMAIL PROTECTED] Sent: 2008-12-08 15:26 To: axis-user@ws.apache.org Subject: Re: thread safe axis2 client stub I

Axis2: client does not receive response if web service takes too long

2008-11-25 Thread jcee14
I have a web service which is supposed to send a response to the client after about 10 minutes. I have my timeout set to 12 minutes so there should be plenty of time, but I get a timeout exception. The web service logs show that it sent a response, but the client does not receive anything. If I

Fwd: [axis2 client] How to maintain a non session related cookie?

2008-11-17 Thread Etienne Giraudy
Any thought on this? Thanks, Etienne -- Forwarded message -- From: Etienne Giraudy [EMAIL PROTECTED] Date: Wed, Nov 12, 2008 at 06:09 Subject: [axis2 client] How to maintain a non session related cookie? To: axis-user@ws.apache.org Hi, I have a web service client built

[axis2 client] How to maintain a non session related cookie?

2008-11-11 Thread Etienne Giraudy
Hi, I have a web service client built with Axis2 1.3 It points to a non-axis web service server. The server architecture has been reviewed to support load-balancing. The load-balancer uses a specific cookie for maintaining session stickiness, needed by the application (including the web

Re: Configuring Axis2 client to use Rampart

2008-10-21 Thread Bai Shen
On Fri, Oct 17, 2008 at 4:03 PM, Bai Shen [EMAIL PROTECTED] wrote: I set up my server with Rampart. So when I send a message from my Axis2 client, it gets rejected because there's no security header. So now I need to configure my client to use Rampart. I got the service client and told

Re: Configuring Axis2 client to use Rampart

2008-10-18 Thread Nandana Mihindukulasooriya
Can you post your client side code ? And the version of Axis2 and Rampart you are using. thanks, nandana On Sat, Oct 18, 2008 at 2:03 AM, Bai Shen [EMAIL PROTECTED] wrote: I set up my server with Rampart. So when I send a message from my Axis2 client, it gets rejected because there's

Configuring Axis2 client to use Rampart

2008-10-17 Thread Bai Shen
I set up my server with Rampart. So when I send a message from my Axis2 client, it gets rejected because there's no security header. So now I need to configure my client to use Rampart. I got the service client and told it to engage rampart, but I keep getting back the error that it can't engage

RE: Configuring Axis2 client to use Rampart

2008-10-17 Thread Martin Gainty
within this transmission. Date: Fri, 17 Oct 2008 16:03:32 -0400 From: [EMAIL PROTECTED] To: axis-user@ws.apache.org Subject: Configuring Axis2 client to use Rampart I set up my server with Rampart. So when I send a message from my Axis2 client, it gets rejected because there's no security header

Configure Axis2 Client Timeout Descriptively

2008-10-02 Thread Jonathan Cornes
Hi, I am trying to find a way to configure axis2 web server clients descriptively rather than programmatically using the Client API. In particular I am trying to configure the length of time elapsed before the a timeout will occur during a call to the web service (resulting in a

  1   2   3   4   5   >