Re: need : java 8 transactional web app Axis2 client sample

2017-09-16 Thread Tushar Kapila
Guten Tag. Yes your right. Our main issue was time-outs with one server that we were connecting to. The server we are connecting to had problems. Set up 10 second time-outs, reuse the Http client, multi threaded, number of connections, to each host and total setting. Txns still fail, but are now fa

Re: need : java 8 transactional web app Axis2 client sample

2017-09-13 Thread Thorsten Schöning
Guten Tag Tushar Kapila, am Samstag, 9. September 2017 um 18:48 schrieben Sie: > Want to make sure sockets are being shared across invocations. That > the initialization code is once. Right now its all in one method. > and seems that unneccessary initialization is happening. On the > other hand si

Re: need : java 8 transactional web app Axis2 client sample

2017-09-09 Thread Tushar Kapila
thank you, i purposely did not write in detail about the errors, as I want to rewrite the code anyway. So was looking a good sample to follow. Want to make sure sockets are being shared across invocations. That the initialization code is once. Right now its all in one method. and seems that unnecc

Re: need : java 8 transactional web app Axis2 client sample

2017-09-08 Thread Thorsten Schöning
Guten Tag Tushar Kapila, am Freitag, 8. September 2017 um 12:28 schrieben Sie: > This leads to socket issues. You should describe those issues more detailed, like what exactly happens, providing concrete exceptions or such. At least for me it's not clear what your actual problem is. I have the s

need : java 8 transactional web app Axis2 client sample

2017-09-08 Thread Tushar Kapila
Getting info from a remote server using Axis2 and soap. We have axis2 working fine. But right now we are creating everything everytime the method is called. This leads to socket issues. Looking for sample code/ open src project that does it correctly or notes on how to do in transaction - product

Axis2 client: Where is timeout defined for java.net.SocketTimeoutException

2015-10-28 Thread Hitesh Sajnani
Hello all, We are using axis2 1.5.4 lib which has default timeout 30 seconds in axis2.xml: 3 I'm setting the timeout to 15 seconds as follows in my code: (using apache common-httpclient-3.1): ConfigurationContext configurationContext = serviceClient.getServiceContext().getConfigurationCont

AXIS2 Client

2014-07-29 Thread Thamayanthi Guhan
Hi I am writing axis 2 web service client for persistent connection. Persistent Connections are not closed when server goes down. when i use netstat -acpcl connection status as ESTABLISHED all the time. any help will really save my time, i searched in .net but could not find any useful below is

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread Jack Sprat
Andreas,   Thanks for pointing me in the right direction.  Below is what worked for me. SOAPFault fl = cl.getLastOperationContext().getMessageContext(WSDLConstants.MESSAGE_LABEL_IN_VALUE ).getEnvelope().getBody().getFault(); String faultstring = fl.getReason().getText(); Thanks, J   On Friday,

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread Jack Sprat
Andreas,   How do I get the SOAP fault using the ServiceClient? Thanks, Todd   On Friday, June 6, 2014 10:56 AM, Jack Sprat wrote:   Yes, it does extend the org.apache.axis2.client.Stub class. On Friday, June 6, 2014 10:36 AM, Andreas Veithen wrote: Does it have a _getServiceClient() meth

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread Andreas Veithen
In that case, you can use the _getServiceClient() method to get the ServiceClient. From there you will be able to get to the last OperationContext and from there to the MessageContext with the response. Andreas On Fri, Jun 6, 2014 at 3:55 PM, Jack Sprat wrote: > > Yes, it does extend the org.apa

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread Jack Sprat
  Yes, it does extend the org.apache.axis2.client.Stub class. On Friday, June 6, 2014 10:36 AM, Andreas Veithen wrote: Does it have a _getServiceClient() method (i.e. does it extend org.apache.axis2.client.Stub)? Andreas On Fri, Jun 6, 2014 at 3:29 PM, Jack Sprat wrote: > Andreas, > > Tha

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread Jack Sprat
I am using Axis2 version 1.6.1. I am not using the ServiceClient class.  I was able to get to the fault by manually constructing a SOAPEnvelope object but this is not ideal. Thanks, J   On Friday, June 6, 2014 10:35 AM, satyapriya sahoo wrote: What version of Axis2 you are using.  What ev

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread Andreas Veithen
Does it have a _getServiceClient() method (i.e. does it extend org.apache.axis2.client.Stub)? Andreas On Fri, Jun 6, 2014 at 3:29 PM, Jack Sprat wrote: > Andreas, > > Thanks very much for the reply. I don't see any methods in the stub class to > get the message context. There are many "toOM"

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread satyapriya sahoo
What version of Axis2 you are using. What ever code I have given is the working code only. I am using axis2-1.5.1. The axis fault belongs to bellow package org.apache.axis2.AxisFault Thanks, Satya On Fri, Jun 6, 2014 at 7:59 PM, Jack Sprat wrote: > Andreas, > > Thanks very much for the repl

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread Jack Sprat
Andreas,   Thanks very much for the reply.  I don't see any methods in the stub class to get the message context.  There are many "toOM" methods that convert an object to an OMElement object.   I am using XMLBeans binding.   Thanks, J    On Friday, June 6, 2014 8:10 AM, Andreas Veithen wrote:

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread Jack Sprat
Thanks for the reply but, again, the AxisFault is not available here.  Here is the code snippet again. try{   stub.getPublication(pub, auth); } catch(PublicationException pe) { // AxisFault is not available here! } Thanks, J  On Friday, June 6, 2014 6:30 AM, satyapriya sahoo wrote: I thi

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread Andreas Veithen
IIRC, the stub has a method to access the (last) message context. From there you should be able to get to the response message and extract the SOAP fault. Andreas On Thu, Jun 5, 2014 at 2:43 PM, Jack Sprat wrote: > There is a method in the Exception class named #getFaultMessage. This > returns

Re: Accessing faultstring in Axis2 client

2014-06-06 Thread satyapriya sahoo
I think the bellow code will help you. try{ //Client code }catch(AxisFault af){ if(af!=null){ * RemoteException re = af;* * Throwable th = re.detail;* * String faultMsg = th.toString();* System.out.println("FaultString :: "+faultMsg ); } } I know this is

Re: Accessing faultstring in Axis2 client

2014-06-05 Thread Jack Sprat
There is a method in the Exception class named #getFaultMessage.  This returns blank, which is correct since there is no text in the exception.  It would be very easy if this was the answer.   I need to get the faultstring.  The faultstring is outside the exception.  See the XML snippet below.  

Re: Accessing faultstring in Axis2 client

2014-06-04 Thread satyapriya sahoo
Jack, Hope bellow points will help you to solve your Problem. You can process in 3 ways. 1) IN your client code you need an catch block for AxisFault and U need to retrieve the message from that exception try{ //Client code }catch(AxisFault af){ if(af!=null){ String faultMsg = af.

Re: Accessing faultstring in Axis2 client

2014-06-04 Thread Jack Sprat
: Wed, 4 Jun 2014 11:34:10 -0700 From: rexclaim...@yahoo.com.INVALID Subject: Re: Accessing faultstring in Axis2 client To: java-user@axis.apache.org  The AxisFault class is not available here.  If so, it would be trivial.  Only the defined response OR an exception is returned (see code below

RE: Accessing faultstring in Axis2 client

2014-06-04 Thread Martin Gainty
//assume you have access to soapFault String text = soapFault.getFaultString(); M- Date: Wed, 4 Jun 2014 11:34:10 -0700 From: rexclaim...@yahoo.com.INVALID Subject: Re: Accessing faultstring in Axis2 client To: java-user@axis.apache.org The AxisFault class is not available here. If so, it

Re: Accessing faultstring in Axis2 client

2014-06-04 Thread Jack Sprat
contain caller-supplied data. * @return stringified fault details */     public String dumpToString() > Date: Wed, 4 Jun 2014 06:18:42 -0700 > From: rexclaim...@yahoo.com.INVALID > Subject: Accessing faultstring in Axis2 client > To: java-user@axis.apache.org > &g

RE: Accessing faultstring in Axis2 client

2014-06-04 Thread Martin Gainty
, * escape everything that could contain caller-supplied data. * @return stringified fault details */ public String dumpToString() > Date: Wed, 4 Jun 2014 06:18:42 -0700 > From: rexclaim...@yahoo.com.INVALID > Subject: Accessing faultstring in Axis2 client > T

Accessing faultstring in Axis2 client

2014-06-04 Thread Jack Sprat
I have a simple question - how do I access the SOAP faultcode and faultstring in an Axis2 client? The client code calls the web service operation and returns the response or throws an exception:   try { stub.getPublication(pub, auth); } catch (WebServiceException wse) { wse.printStackTrace

Axis2 Client Objects to real objects

2014-06-03 Thread Sheeraz Junejo
Hi, I have generated axis2 web service from a web service wsdl using wsdl2java utility. I am also able to call my service successfully but the problem is that my response object is from com*.xsd.* package and on client side I would like to work on my real objects. The question how can I retrieve

RE: [Axis2] Client makes multiple calls to retrieve WSDL file

2014-03-29 Thread Patrick Early
@axis.apache.org<mailto:java-user@axis.apache.org> Subject: Re: [Axis2] Client makes multiple calls to retrieve WSDL file Hi Patrick, If it is a concrete contract i don't see any need of retrieve wsld every time when your client send request. You can download wsdl for any service deployed

Re: [Axis2] Client makes multiple calls to retrieve WSDL file

2014-03-29 Thread Shameera Rathnayaka
Hi Patrick, If it is a concrete contract i don't see any need of retrieve wsld every time when your client send request. You can download wsdl for any service deployed in axis2 by using ?wsdl suffix eg: http://localhost:8080/axis2/services/Version?wsdl this will download wsdl of Version then you c

[Axis2] Client makes multiple calls to retrieve WSDL file

2014-03-26 Thread Patrick Early
Hello, We are having an issue with Axis2 where for every SOAP call we make, the client also makes a call to retrieve the WSDL file prior to making the actual call. Is there a way to tell the client to use a local file or in-memory string for its WSDL instead of retrieving it from the server?

Re: Fwd: Fwd: Need Help Regarding AXIS2 Client Implementation

2014-01-16 Thread Rajnish Thakur
Hi, > > Please somebody cab help me on issue below. > > Regards, > Rajnish Thakur > > > -- Forwarded message -- > From: Rajnish Thakur > Date: Mon, Jan 13, 2014 at 5:19 PM > Subject: Re: Fwd: Need Help Regarding AXIS2 Client Implementation > To:

Re: Fwd: Fwd: Need Help Regarding AXIS2 Client Implementation

2014-01-16 Thread Deepal jayasinghe
ed message -- From: Rajnish Thakur <rajneesh...@gmail.com> Date: Mon, Jan 13, 2014 at 5:19 PM Subject: Re: Fwd: Need Help Regarding AXIS2 Client Implementation To: java-...

Fwd: Fwd: Need Help Regarding AXIS2 Client Implementation

2014-01-16 Thread Rajnish Thakur
Hi, Please somebody cab help me on issue below. Regards, Rajnish Thakur -- Forwarded message -- From: Rajnish Thakur Date: Mon, Jan 13, 2014 at 5:19 PM Subject: Re: Fwd: Need Help Regarding AXIS2 Client Implementation To: java-...@axis.apache.org Hi All, PSB WSDL document

Re: Help for generating axis2 client

2013-11-24 Thread Chamila Wijayarathna
he e.g. > arp -d * > ) > > Martin -- > __ > > > -- > From: chrishan...@gmail.com > Date: Sun, 24 Nov 2013 15:08:29 -0800 > Subject: Re: Help for generating axis2 client > To: java-user@axis.apache.org > > > Hi, > > The link works fine. > > I'm not

RE: Help for generating axis2 client

2013-11-24 Thread Martin Gainty
the phillipines routers do appear in your pathping listing then clear your arp cache e.g. arp -d * ) Martin -- __ From: chrishan...@gmail.com Date: Sun, 24 Nov 2013 15:08:29 -0800 Subject: Re: Help for generating axis2 client To: java-user

Re: Help for generating axis2 client

2013-11-24 Thread Isuru Perera
te: > Hello all, > I'm new to Apache Axis2. I'm currently following tutorial at > http://axis.apache.org/axis2/java/core/docs/userguide-creatingclients.html#createclientsfor > generating a axis2 client. For ADB method it says to create a > client.java class which contains the

Re: Help for generating axis2 client

2013-11-24 Thread suresh
ItemResponse res = stub.multipleParametersAddItem(req); System.out.println(res.getSuccessfulAdd()); System.out.println(res.getItemId());} catch(Exception e){ e.printStackTrace();System.out.println("\n\n\n");

Help for generating axis2 client

2013-11-24 Thread Chamila Wijayarathna
Hello all, I'm new to Apache Axis2. I'm currently following tutorial at http://axis.apache.org/axis2/java/core/docs/userguide-creatingclients.html#createclientsfor generating a axis2 client. For ADB method it says to create a client.java class which contains the code at Listing 7. Bu

Re: Axis2 client not getting Digest auth challenge from server

2013-10-08 Thread Alistair Young
lto:alistair.yo...@uhi.ac.uk>> Reply-To: "java-user@axis.apache.org<mailto:java-user@axis.apache.org>" mailto:java-user@axis.apache.org>> Date: Tuesday, 8 October 2013 11:41 To: "java-user@axis.apache.org<mailto:java-user@axis.apache.org>" mailto:java-user

Axis2 client not getting Digest auth challenge from server

2013-10-08 Thread Alistair Young
I've used Axis2 a fair bit but never seen this. Ruby client gets this when accessing SOAP service: Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-Powered-By: PHP/5.2.12 ... WWW-Authenticate: Digest ... the axis2 client gets nothing so it sends a Basic auth header and gets nowhere a

[AXIS2] Client behind a firewall

2013-06-17 Thread Stadelmann Josef
that for my AXIS2 client on a per user basis. Josef

Re: Axis2 Client receiving element, but value object is null

2013-04-01 Thread Kishanthan Thangarajah
On Wed, Mar 20, 2013 at 3:50 PM, Adam wrote: > All, > A quick description of my problem. I'm using axis2 1.6.2 and am > generating the stubs using xmlbeans binding. > I'm calling a web service that has a response consisting of different > namespace elements. > I've installed a log handler, and se

Axis2 Client receiving element, but value object is null

2013-03-20 Thread Adam
All, A quick description of my problem. I'm using axis2 1.6.2 and am generating the stubs using xmlbeans binding. I'm calling a web service that has a response consisting of different namespace elements. I've installed a log handler, and see the full message coming back, with sub element Transactio

Axis2 client with websphere service

2013-01-07 Thread Christopher M. Logan
I have a series of questions. But before i get to the others.. will a client based on axis2 be able to consume webservices deployed to websphere? The websphere service is not running in an axis server container. The websphere version is 6.1. Thank you.

Re: org.apache.axiom.om.OMException with Axis2 Client

2012-12-31 Thread Andreas Veithen
> por favor no altere ni interrumpir la transmisión > por favor no altere ni interrumpir la transmisión..Gracias > > > > ____ > From: oscas...@hotmail.com > To: axis-u...@ws.apache.org > Subject: org.apache.axiom.om.OMException with Axis2 Cl

Re: org.apache.axiom.om.OMException with Axis2 Client

2012-12-31 Thread Andreas Veithen
In what kind of environment is this code running? A J2EE application server? Andreas On Fri, Dec 21, 2012 at 12:50 PM, Oscar Rugama wrote: > Sorry i didn´t change subject > > Hi all: > > I´ve created an Axis2 client to retrieve info from an Axis2 Web Service, > when i t

RE: org.apache.axiom.om.OMException with Axis2 Client

2012-12-21 Thread Martin Gainty
iom-impl-1.2.13.jar Feliz Navidad desde EEUU, Martin Gainty __ por favor no altere ni interrumpir la transmisiónpor favor no altere ni interrumpir la transmisión..Gracias From: oscas...@hotmail.com To: axis-u...@ws.apache.org Subject: org.apache.axiom.o

org.apache.axiom.om.OMException with Axis2 Client

2012-12-21 Thread Oscar Rugama
Sorry i didn´t change subject Hi all: I´ve created an Axis2 client to retrieve info from an Axis2 Web Service, when i test it at my local Ide Netbeans it all works fine, but when i try it at Testing environment (which is a copy of Pro) it says me the following error

RE: How do I configure my Axis2 client to use FIPS 140-2?

2012-10-10 Thread Sam Theman
2012 13:11:17 +0200 Subject: Re: How do I configure my Axis2 client to use FIPS 140-2? From: filippo.aga...@studenti.unipr.it To: java-user@axis.apache.org Hi Sam, see this http://wso2.org/library/3190#Policy_annotated_WSDL. An example of use a transport binding for securing message exchange betweeen

Re: How do I configure my Axis2 client to use FIPS 140-2?

2012-10-06 Thread FILIPPO AGAZZI
Hi Sam, see this http://wso2.org/library/3190#Policy_annotated_WSDL. An example of use a transport binding for securing message exchange betweeen client and WS using SSL (TLS). Filippo 2012/10/5 Sam Theman > I could be satisfied with first knowing how to have my axis2 client > u

RE: How do I configure my Axis2 client to use FIPS 140-2?

2012-10-05 Thread Sam Theman
I could be satisfied with first knowing how to have my axis2 client use TLS. From: xray...@hotmail.com To: java-user@axis.apache.org Subject: How do I configure my Axis2 client to use FIPS 140-2? Date: Fri, 5 Oct 2012 11:06:52 -0400 Hello, I have a Axis2 client that was working

How do I configure my Axis2 client to use FIPS 140-2?

2012-10-05 Thread Sam Theman
Hello, I have a Axis2 client that was working fine when connecting to a Axis2 web services hosted on tomcat. But then the tomcat server admin turned on TLS only and FIPS 140-2 SSL only. Now my Axis2 web service client fails. How can I configure my axis2 client to use TLS and FIPS 140-2 SSL

Axis2 Client Generation

2012-08-23 Thread Güçlü Akkaya
Hi, In the attachment i tried to implement a generic axis2 web service client, which can handle concurrent request by multiple thread. In the attachment you can find my implementation. While i tried to test my code for a number of requests client does not seem to have a problem (request count und

Axis2 Client Web APP Time out on Weblogic 10

2012-06-14 Thread Pavan4Axis Axis
etc APP-WAR1 is where my axis2 client is. Any help is greatly appreciated. Thanks Pavan

RE: Issue with AXis2 client code connection

2012-06-06 Thread James Annesley
rver. James From: gibyALEX [mailto:alexg...@gmail.com] Sent: 06 June 2012 09:11 To: axis-u...@ws.apache.org Subject: Issue with AXis2 client code connection I am Getting error like while using AXIs2 Can any help me .. i didn't get what is issue... org.apache.axis2.AxisFault

Issue with AXis2 client code connection

2012-06-06 Thread gibyALEX
.sizeOfEntityArray() - 1]; return requisition.getContestNumber(); } } ------ etting error like -- View this message in context: http://old.nabble.com/Issue-with-AXis2-client-code-connection-tp33968566p33968566.html Sent from the Axis - User mailing list archive at Nabble.com.

[axis1 servers vs axis2 client] no such operation exception received until WSDL is seen

2012-05-08 Thread JOSE L MARTINEZ-AVIAL
Hello all, We want to generate an Axis2 client (1.6.1) client for an old Axis1 service. The service is a plain POJO, and the server-config.wsdd is as follows: The Axis2

Re: AW: [Axis2] Axis2 client generated from WSDL ignoring encoding

2012-03-20 Thread Andreas Veithen
cters i.e. a "ä ö ü è é or > < & > %" > > > > and I think that will get you further. > > http://osdir.com/ml/axis-dev-ws.apache.org/2009-08/msg00132.html > > > > > > let me know if it helps. > > > > Josef > > > > > &

Re: AW: [Axis2] Axis2 client generated from WSDL ignoring encoding

2012-03-20 Thread Francisco Serrano
    let me know if it helps.   Josef         Von: Francisco Serrano [mailto:francisco.serr...@multicom.co.uk] Gesendet: Montag, 19. März 2012 15:47 An: java-user@axis.apache

AW: [Axis2] Axis2 client generated from WSDL ignoring encoding

2012-03-20 Thread Stadelmann Josef
let me know if it helps. Josef Von: Francisco Serrano [mailto:francisco.serr...@multicom.co.uk] Gesendet: Montag, 19. März 2012 15:47 An: java-user@axis.apache.org Betreff: [Axis2] Axis2 client generated from WSDL ignoring encoding Any advice on this please? -

[Axis2] Axis2 client generated from WSDL ignoring encoding

2012-03-19 Thread Francisco Serrano
Any advice on this please? Original Message Subject:[Axis2] Axis2 client generated from WSDL ignoring encoding Date: Thu, 23 Feb 2012 17:02:42 + From: Francisco Serrano To: java-user@axis.apache.org Hello, I have an axis2 client generated from a WSDL

Re: Any advice in order to properly set a axis2 client classpath

2012-03-16 Thread Sagara Gunathunga
st Regards. > > -Original Message- > From: robert lazarski [mailto:robertlazar...@gmail.com] > Sent: jeudi 15 mars 2012 14:52 > To: java-user@axis.apache.org > Subject: Re: Any advice in order to properly set a axis2 client classpath > > On Thu, Mar 15, 2012 at 10:38

RE: Any advice in order to properly set a axis2 client classpath

2012-03-16 Thread COURTAULT Francois
...@gmail.com] Sent: jeudi 15 mars 2012 14:52 To: java-user@axis.apache.org Subject: Re: Any advice in order to properly set a axis2 client classpath On Thu, Mar 15, 2012 at 10:38 AM, COURTAULT Francois wrote: > Yes I know it could be a possible solution that I have used. > But I want to know e

Re: Any advice in order to properly set a axis2 client classpath

2012-03-15 Thread robert lazarski
On Thu, Mar 15, 2012 at 10:38 AM, COURTAULT Francois wrote: > Yes I know it could be a possible solution that I have used. > But I want to know exactly what I do. > > Again my request is more about a documentation issue as understood by Robert. > Requesting more docs is ok, but in case you haven'

RE: Any advice in order to properly set a axis2 client classpath

2012-03-15 Thread COURTAULT Francois
[mailto:james.annes...@infoshare-is.com] Sent: jeudi 15 mars 2012 14:13 To: java-user@axis.apache.org Subject: RE: Any advice in order to properly set a axis2 client classpath Hi, Why is this a problem? I just copy the whole of the AXIS2 libraries. I had some trouble with log4j compatibility but solved it with

Re: Any advice in order to properly set a axis2 client classpath

2012-03-15 Thread robert lazarski
On Thu, Mar 15, 2012 at 10:17 AM, robert lazarski wrote: > axis2-at-client-1.0.3.jar, CVS Those are not from axis2 so don't google on them :-) . - To unsubscribe, e-mail: java-user-unsubscr...@axis.apache.org For additional com

Re: Any advice in order to properly set a axis2 client classpath

2012-03-15 Thread robert lazarski
On Thu, Mar 15, 2012 at 9:49 AM, COURTAULT Francois wrote: > Hello, > > Ok my goal is to be able to communicate, through an axis2 client, with a Web > Service hosted in weblogic and WSS protected: no attachment nor MTOM used . > For the stub generation I use adb which I think i

RE: Any advice in order to properly set a axis2 client classpath

2012-03-15 Thread James Annesley
: java-user@axis.apache.org Subject: RE: Any advice in order to properly set a axis2 client classpath Hello, Ok my goal is to be able to communicate, through an axis2 client, with a Web Service hosted in weblogic and WSS protected: no attachment nor MTOM used . For the stub generation I use adb

RE: Any advice in order to properly set a axis2 client classpath

2012-03-15 Thread COURTAULT Francois
Hello, Ok my goal is to be able to communicate, through an axis2 client, with a Web Service hosted in weblogic and WSS protected: no attachment nor MTOM used . For the stub generation I use adb which I think is the default I suppose. In such case what axis2 client jars do I need ? But, more

Re: Any advice in order to properly set a axis2 client classpath

2012-03-15 Thread robert lazarski
On Thu, Mar 15, 2012 at 8:18 AM, COURTAULT Francois wrote: > Any answer or advice ? > From: COURTAULT Francois [mailto:francois.courta...@gemalto.com] > Sent: vendredi 9 mars 2012 16:23 > To: java-user@axis.apache.org > Subject: Any advice in order to properly set a axis2 c

RE: Any advice in order to properly set a axis2 client classpath

2012-03-15 Thread COURTAULT Francois
Any answer or advice ? From: COURTAULT Francois [mailto:francois.courta...@gemalto.com] Sent: vendredi 9 mars 2012 16:23 To: java-user@axis.apache.org Subject: Any advice in order to properly set a axis2 client classpath Importance: High Hello, Is there any official doc in order to setup

Any advice in order to properly set a axis2 client classpath

2012-03-09 Thread COURTAULT Francois
Hello, Is there any official doc in order to setup properly an axis2 client classpath ? Minimum classpath ? What the purpose of each jars in the /lib directory ? Best Regards.

[Axis2] Axis2 client generated from WSDL ignoring encoding

2012-02-23 Thread Francisco Serrano
Hello, I have an axis2 client generated from a WSDL, which is working fine but I'm having some problems since it's ignoring the charset specified in the response it's getting back. The response specifies charset=UTF-8 in the Content-Type HTTP header and the same in the encodi

Problem calling axis encoded web service from axis2 client

2011-11-23 Thread Bartolomeo Nicolotti
To whom it may concern, we've a web service created with axis (not two), that's fine :-D we're calling this web service from another project that's using axis2. So we've generated a client with this axis2 command (jaxbri databinding): wsdl2java.sh --noBuildXML -S ../../JavaSource -ns2p http://S

Re: MalformedURLException when running Axis2 client from within a jar

2011-09-24 Thread Louis Amstutz
Resolved this myself. My ant build script was only adding the .class files to the jar. I changed it to add all files and it worked. On Thu, Sep 22, 2011 at 11:21 AM, Louis Amstutz wrote: > I have my project working fine in Eclipse. However, it's not working when > I package it into a jar and

MalformedURLException when running Axis2 client from within a jar

2011-09-22 Thread Louis Amstutz
I have my project working fine in Eclipse. However, it's not working when I package it into a jar and run that. I am including all the required libraries of axis2 and rampart in the jar, because the app will be deployed via java web start and I can't expect users to install all the libraries on t

Minimum JARs required for Axis2 client using XML Beans

2011-08-04 Thread Doughty, Michael
I have a client distribution that runs behind an API, and I need to get it to be as small a distribution as possible. I am curious if there's a list anywhere of the minimum list of JARs from the Axis2 1.5.1 binary distribution that are required to execute a simple Web service client that uses X

Setting CDATA in SOAP message using Axis2 client

2011-07-07 Thread chandan_evol
http://old.nabble.com/Setting-CDATA-in-SOAP-message-using-Axis2-client-tp32012559p32012559.html Sent from the Axis - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: java-user-unsubscr...@axis.apa

axis2 client with RPC encoded axis server side

2011-03-29 Thread Bartolomeo Nicolotti
Hello, I've the attached wsld that's for an RPC encoded service generated with axis (not2): I generated the client with this command: wsdl2java.sh -uri WsUtiPratica.wsdl --noBuildXML -s -d xmlbeans -sp -o . then in java I've this code: WsUtiPraticaServiceStub wsutiprat

RE: Need xmlns="" namespace in xml element for Axis2 client payload

2011-03-11 Thread Martin Gainty
;information seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Fri, 11 Mar 2011 17:48:17 -0500 Subject: Re: Need

Re: Need xmlns="" namespace in xml element for Axis2 client payload

2011-03-11 Thread Rod Biresch
I've gotten past my schema validation error by using the XMLBeans data binding. XMLBeans data binding option did NOT insert the xmlns="" attribute however, it did generate XML that passed the web service validation. Thanks, Rod On Wed, Mar 9, 2011 at 11:36 AM, Rod Biresch wrote: > I'm upgrade a

Need xmlns="" namespace in xml element for Axis2 client payload

2011-03-09 Thread Rod Biresch
I'm upgrade an old Axis1 client to Axis 2 ver. 1.5.4. I was able to refactor the code just fine and ran some tests against the web service. It turns out that I have a problem with one xml element. The element is missing xmlns="", which is causing a validation error on the server. If I simply mo

RE: Axis2 client multithreaded asynchronous calls

2011-03-04 Thread Martin Gainty
ets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Fri, 4 Mar 2011 19:16:57 +0100 Subject: Re: Axis2 client multithreaded asynchronous calls From: christophe.n...@gmail.com To: java-user@axis.apache.org Hello Martin, This is the exact example whi

Re: Axis2 client multithreaded asynchronous calls

2011-03-04 Thread Dennis Sosnoski
tinataire prévu, nous te demandons avec bonté que pour satisfaire > informez l'expéditeur. N'importe quelle diffusion non autorisée ou la copie > de ceci est interdite. Ce message sert à l'information seulement et n'aura > pas n'importe quel effet légalement obligatoire. Étant donné que les email > peuv

Re: Axis2 client multithreaded asynchronous calls

2011-03-04 Thread Christophe Noël
fusion non autorisée ou la copie de ceci > est interdite. Ce message sert à l'information seulement et n'aura pas > n'importe quel effet légalement obligatoire. Étant donné que les email > peuvent facilement être sujets à la manipulation, nous ne pouvons accepter > aucune responsabilité pour le contenu

RE: Axis2 client multithreaded asynchronous calls

2011-03-04 Thread Martin Gainty
le contenu fourni. Date: Fri, 4 Mar 2011 14:54:21 +0100 Subject: Re: Axis2 client multithreaded asynchronous calls From: christophe.n...@gmail.com To: java-user@axis.apache.org Hello Martin, Thanks a lot for your help. My Axis2 client will send an HTTP request to a remote asynchronous SOAP Web

Re: Axis2 client multithreaded asynchronous calls

2011-03-04 Thread Christophe Noël
Hello Martin, Thanks a lot for your help. My Axis2 client will send an HTTP request to a remote asynchronous SOAP Web Service. Christophe. 2011/3/4 Martin Gainty > which transport will your application be implementing > (http/smtp/some_other_transport) ? > if you have seele

RE: Axis2 client multithreaded asynchronous calls

2011-03-04 Thread Martin Gainty
tion, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Fri, 4 Mar 2011 14:31:16 +0100 Subject: Axis2 client multithreaded asynchronous calls From: christophe.n...@gmail.com To: java-user@axis.apache.org Hello, I'm trying to understand how to develop an

Axis2 client multithreaded asynchronous calls

2011-03-04 Thread Christophe Noël
Hello, I'm trying to understand how to develop an Axis2 client that uses asynchronous nonBlocking calls from a number of client threads. In the context of a single thread, I suppose that the following method will automatically creates a CallbackReceiver ? serviceClient.sendReceiveNonBlo

RE: Error in Axis2 client and Wsdl2java tool

2011-02-25 Thread Martin Gainty
m: gr...@ucs.cam.ac.uk > To: java-user@axis.apache.org > Date: Fri, 25 Feb 2011 06:47:31 +0000 > Subject: RE: Error in Axis2 client and Wsdl2java tool > > How big/complex is your WSDL ? The one I'm using which generates this error > is for a commercial system, and is over

RE: Error in Axis2 client and Wsdl2java tool

2011-02-24 Thread Gordon Ross
Great, thanks ! GTG From: Daniel Sanchez Gonzalez [dsanc...@at4wireless.com] Sent: 25 February 2011 07:06 To: java-user@axis.apache.org Subject: RE: Error in Axis2 client and Wsdl2java tool Done. I've attached my wsdl

RE: Error in Axis2 client and Wsdl2java tool

2011-02-24 Thread Daniel Sanchez Gonzalez
Done. I've attached my wsdl file. -Mensaje original- De: Gordon Ross [mailto:gr...@ucs.cam.ac.uk] Enviado el: viernes, 25 de febrero de 2011 7:48 Para: java-user@axis.apache.org Asunto: RE: Error in Axis2 client and Wsdl2java tool How big/complex is your WSDL ? The one I'm u

RE: Error in Axis2 client and Wsdl2java tool

2011-02-24 Thread Gordon Ross
el Sanchez Gonzalez [dsanc...@at4wireless.com] Sent: 25 February 2011 06:42 To: java-user@axis.apache.org Subject: RE: Error in Axis2 client and Wsdl2java tool Thank you Gordon. You're very kind. I'm using axis2 1.4.1. When a setXXX(String) is invoked the exception is thrown, even wh

RE: Error in Axis2 client and Wsdl2java tool

2011-02-24 Thread Daniel Sanchez Gonzalez
2011 1:23 Para: java-user@axis.apache.org Asunto: RE: Error in Axis2 client and Wsdl2java tool I've done a little digging, and made some progress. The problem appears to be in the ADB databinding code. If I change to using xmlbeans, then everything runs fine. (Oh, and then I change all

RE: Error in Axis2 client and Wsdl2java tool

2011-02-24 Thread Gordon Ross
owse/AXIS2-4964 GTG From: Daniel Sanchez Gonzalez [dsanc...@at4wireless.com] Sent: 24 February 2011 13:55 To: java-user@axis.apache.org Subject: RE: Error in Axis2 client and Wsdl2java tool Hello, Does anybody know about this problem? Thanks

Re: Error in Axis2 client and Wsdl2java tool

2011-02-24 Thread Gordon Ross
On 24 Feb 2011, at 13:55, Daniel Sanchez Gonzalez wrote: > Does anybody know about this problem? I've just stumbled upon a similar problem. Sometimes, the setXXX(String) methods are being called with null as a parameter. (Some manually entered printlns confirmed this) The symptom I was getting

RE: Error in Axis2 client and Wsdl2java tool

2011-02-24 Thread Daniel Sanchez Gonzalez
Hello, Does anybody know about this problem? Thanks in advance. _ De: Daniel Sanchez Gonzalez Enviado el: martes, 22 de febrero de 2011 18:52 Para: 'java-user@axis.apache.org' Asunto: Error in Axis2 client and Wsdl2java tool Hello, I've created a WS client

Error in Axis2 client and Wsdl2java tool

2011-02-22 Thread Daniel Sanchez Gonzalez
Hello, I've created a WS client by using axis2's wsdl2java tool. The next error occurs when invoking this client: org.apache.axis2.AxisFault: No Deserializer found to deserialize a ':paramName' using encoding style 'null'. [java.lang.IllegalArgumentException] at org.apache.axis2.util.Util

[Axis2] Client Error: Unable to sendViaPost to ur

2011-02-15 Thread Sardar Hussain
Hi,  I have a number of Axis2 web services and I am going to call them through a client. I can call each individual service easily and successfully. However when I call them in a loop I get the following error after calling two services. I mean when want to call more than two services in a loop

Re: [Axis2] Axis2 client code with ServiceClient created as dynamic client gives AxisFault: The anonOutInOp operation cannot be found

2010-08-18 Thread wongwong
>>> From: Deepal jayasinghe [mailto:deep...@gmail.com] >>> Sent: Sunday, January 20, 2008 11:58 PM >>> To: axis-u...@ws.apache.org >>> Subject: Re: [Axis2] Axis2 client code with ServiceClient created as >>> dynamic client gives AxisFault: The anonOu

Axis2 - Client problem setting option for content type (fast-infoset)

2010-06-22 Thread mcd99999
System.out.println("Name :" + result.getName()); System.out.println("Street :" + result.getStreet()); System.out.println("City :" + result.getCity()); System.out.println("State :" + result.getState()); Sy

  1   2   >