Simple Stub Methods Pls

2011-04-05 Thread Android MD
Hi, Basically, I want my stub's method signatures to be same as the service that was used. Please note that I am not creating a contract first web service, where you create the wsdl first. Instead, I am going the POJO first approach. Where I have my neat little Java class, with it's methods implem

Re: server class

2011-04-05 Thread Android MD
A ResultSet is a complex structure.. Anyway, it is a data tier related object, which should not be exposed through the web service. Any data retrieved from the database should be packaged into SIMPLE business domain objects before being sent down the wire through the web service. So you might have

Re: client making call axis server

2011-04-05 Thread Android MD
Hi, I also have the same question. Basically, I want my stub's method signatures to be same as the service that was used. Please note that I am not creating a contract first web service, where you create the wsdl first. Instead, I am going the POJO first approach. Where I have my neat little Java

Re: server class

2011-04-05 Thread Deepal Jayasinghe
Yes, probably it is hard to serialize ResultSet. You need to use something like data services for this. Deepal > Hello, > > Can I not return Resultset as a return type from my Java class(Server.) > > > > I am getting error with following response. > > > > > > *-* >

server class

2011-04-05 Thread Swetta Bhaskar
Hello, Can I not return Resultset as a return type from my Java class(Server.) I am getting error with following response. - http://schemas.xmlsoap.org/soap/envelope/";> -

customize tags

2011-04-05 Thread Swetta Bhaskar
How can I customize the tags which gets generated in the response as soap to whatever I want to.

org.apache.axis2.AxisFault: samples.quickstart.service.axiom.StockQuoteService

2011-04-05 Thread dgupta413
I am trying to run the axiom StockQuoteService sample as provided in the axis2-1.2 download. the AXIOMClient.java runs fine under tomcat 6.x and jre 6.x on my PC. After that I try to deploy the StockQuoteService.aar file on the tomcat running in a solaris m/c. The version of tomcat, jre are the

Re: Async web service issue in Axis2 1.5.4

2011-04-05 Thread Adil Allawi
That fixed it. Thanks! The Axis documentation does leave a lot to be desired. Adil On 05/04/2011 11:58, Andreas Veithen wrote: There is a third condition, namely that the addressing module is engaged at the server side as well. Andreas On Tue, Apr 5, 2011 at 10:54, Adil Allawi wrote: I

RE: axis2: how to ignore HTTP response status code?

2011-04-05 Thread Martin Gainty
this is the exception location: //org.apache.axis2.client.OperationClient if (resenvelope.hasFault()||responseMessageContext.isProcessingFault()) { if (options.isExceptionToBeThrownOnSOAPFault()) { // does the SOAPFault has a detail el

axis2: how to ignore HTTP response status code?

2011-04-05 Thread Michal Niklas
Hello, I have to connect with WebService that in case of error return the same SOAP envelope as in case of normal operation, but sets HTTP status to "500 Internal Server Error". Then I got exception: java.lang.IllegalArgumentException: The MessageContext does not have an associated SOAPFa

Re: Async web service issue in Axis2 1.5.4

2011-04-05 Thread Andreas Veithen
There is a third condition, namely that the addressing module is engaged at the server side as well. Andreas On Tue, Apr 5, 2011 at 10:54, Adil Allawi wrote: > I am trying to get Axis2 to invoke my web service asynchronously and > failing. I am beginning to thing this is due to a bug in Axis2. A

Async web service issue in Axis2 1.5.4

2011-04-05 Thread Adil Allawi
I am trying to get Axis2 to invoke my web service asynchronously and failing. I am beginning to thing this is due to a bug in Axis2. As I understand it, to get axis2 to launch a web service asynchronously, you need two conditions: 1/ The web service services.xml file contains the following par