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
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
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
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
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
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
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
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,
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
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
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
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
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"
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
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:
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
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
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
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.
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.
: 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
//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
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
,
* 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
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
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
@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
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
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?
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:
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-...
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
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
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
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
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");
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
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
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
that for my AXIS2 client on a per user basis.
Josef
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
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
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.
> 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
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
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
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
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
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
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
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
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
etc
APP-WAR1 is where my axis2 client is.
Any help is greatly appreciated.
Thanks
Pavan
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
.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.
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
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
>
>
>
>
>
&
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
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?
-
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
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
...@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
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'
[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
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
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
: 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
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
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
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
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.
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
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
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
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
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
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
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
;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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
>>> 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
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 - 100 of 115 matches
Mail list logo