Re: fault string: parameter xxxx doesn't exist

2008-09-09 Thread keith chapman
Try this. http://www.keith-chapman.org/2008/07/using-tcp-monitor-to-debug-web-service.html Probably that would help you. Thanks, Keith. On Wed, Sep 10, 2008 at 8:17 AM, jackdawson <[EMAIL PROTECTED]> wrote: > > Thanks Keith. > But I couldn't get the TCP/IP monitor to work. > If this is the endp

Re: fault string: parameter xxxx doesn't exist

2008-09-09 Thread Deepal Jayasinghe
There are two main ways you can set up that - if you are using IDE like InteliJ you can add that as a pluing - or else you can download TCP monitor and run that as a java application Once it runs , you can configure that as you wish. -Deepal jackdawson wrote: > Thanks Keith. > But I couldn't g

Re: Axis Fault exception

2008-09-09 Thread jackdawson
But my company has all of its web services in Axis 1.2 Do you think we are in the ancient ages? I have a WSDL of other team's web service and I generated client side stubs and developed a simple java app client. And, when I run the client this is what getting thrown. Did I miss any step? Thanks

Re: fault string: parameter xxxx doesn't exist

2008-09-09 Thread jackdawson
Thanks Keith. But I couldn't get the TCP/IP monitor to work. If this is the endpoint address, http://www.interpressfact.net/webservices/getJoke.asmx , how would I set up TCP/IP monitor. I want to try with external web services first. I generated the client side stubs using their WSDL and I only h

Re: Testing tool for QA

2008-09-09 Thread charitha kankanamge
Hi Affan, You may start with SoapUI which is a good web services functional testing tool. http://wso2.org/library/3862 describes a set of useful testing tools. regards Charitha http://charithaka.blogspot.com Qureshi, Affan wrote: Hello, Is there a tool/way to take a WSDL and automatically

i' is not a valid XML character

2008-09-09 Thread Vianca Ramirez
Hi, I am trying to deploy a web service using Axis and Tomcat and I keep getting this error: axis-admin: [BioLit] Processing file /***/tomcat6/webapps/doc/webservices/moby-services-to-deploy-2008-08-22/deploy-wsdd/BioLit.wsdd [BioLit] Exception in thread "main" java.lang.IllegalArgumentExc

Axis2 JiBX integer binding

2008-09-09 Thread don t
My WSDL defines an integer element like this: I ran Axis2 1.4 wsdl2java with JiBX binding and unwrap option and got this error: Exception in thread "main" org.apache.axis2.wsdl.codegen.CodeGenerationException: java.lang.RuntimeException: Cannot unwrap element ... no format definition found fo

RE: Testing tool for QA

2008-09-09 Thread Bhattacharjee, Raja
I have used http://www.soapclient.com/soaptest.html to have some time users use a SOAP service. Some of my buddies have used Altova XML -Original Message- From: Qureshi, Affan [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2008 2:49 PM To: 'axis-user@ws.apache.org' Subject: Testin

RE: Testing tool for QA

2008-09-09 Thread Martin Gainty
struts has a tool which will convert formBean and servlet to ActionForm http://struts.apache.org/1.x/apidocs/org/apache/struts/util/RequestUtils.html#createActionForm(org.apache.struts.config.FormBeanConfig,%20org.apache.struts.action.ActionServlet) ActionForm RequestUtils.createActionForm(formBe

Testing tool for QA

2008-09-09 Thread Qureshi, Affan
Hello, Is there a tool/way to take a WSDL and automatically generate a web page with all the input fields and an "invoke service" button? I know in .NET you can get this kind of web page generated for you automatically. I need to give something simple for our QA folks to test the web services.

RE: web service URL

2008-09-09 Thread Qureshi, Affan
Did you try changing the name of the folder "axis2" to "mycompany" in the webapps dir? There are other ways to map context roots in tomcat too via configuration in server.xml I think. Affan -Original Message- From: Attharkar, Asmita [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09

RE: intermittent NullPointerException

2008-09-09 Thread Tejesh Shetty
It is not returning an ArrayList but instead array[] of java objects. These client classes were generated using wsdl2java so I dont really control much of it. I did verified that its not doing any registerTypeMapping but again its also not returning ArrayList. Again this is a intermittent problem

Setting service scope on JAXWS service

2008-09-09 Thread Steve.Park
Hi everyone, I'm fairly new to Axis2. I'm trying to convert a JAX-WS service that originally ran on the Sun JAXWS reference implementation to run using the JAX-WS deployer on Axis2. It's annotated using JAX-WS and JSR-181 annotations. Here's the problem: the service is a stateful service

Problem in Axis2 version service

2008-09-09 Thread Sandy Pérez González
Hello, I am trying to use Axis2 for first time. I have followed the steps explained in http://ws.apache.org/axis2/1_4_1/installationguide.html. I have installed the standard binary distribution and all seems work fine. When I access the axis2, deployed in a servlet container, it seems work fine

RE: intermittent NullPointerException

2008-09-09 Thread Martin Gainty
sounds as if you are returning an ArrayList so you'll need to associate the ArrayList java type to your SOAP_ARRAY datatype via call.registerTypeMapping(ArrayList.class, XMLType.SOAP_ARRAY, new ArraySerializerFactory(), new ArrayDeserializerFactory()); then the call with a cast to ArrayList sho

intermittent NullPointerException

2008-09-09 Thread Tejesh Shetty
Hi, I am using Axis 1.4 with Java 1.6, and my code is calling couple of external web service. The client classes were generated using wsdl2java. Initially the calls to these services were single threaded (at any time only one thread was calling a method on a specific service (one thread per servic

web service URL

2008-09-09 Thread Attharkar, Asmita
Hi there, When I deploy the web service in the exploded axis2 in tomcat, The url that I could use with this kind of deployment is http://ipaddress:port/axis2/services/myservice but I want to use (and I am sure most developers do) http://ipaddress:port/mycompany/services/myservice What do I ne

Composing axis2 webservices

2008-09-09 Thread Jonge, Merijn de
Hi All, I'm using axis2-1.4.1 and Eclipse/WTP and want to create the following two services: * A service "f" that produces a result of type "A" * A service "g" that consumes an input of type "A" Next, I would like to make the service composition g(f()). In other words, I would like to pass

Re: Axis2 webservice over https in Tomcat

2008-09-09 Thread srodrigu
I have the same issue where it did not like the part in the services.xml. I tried not doing the part in the service.xml file and called up the wsdl and it looks like it thinks http is port 8080 and https is port 80 even though Tomcat is using port 80 for http and port 443 for https. Is there s

return type for a web service

2008-09-09 Thread Pugalia, Jai P (JP)
Hi, I have a web service method which is defined as below: public FieldArray getFieldInfo() throws Throwable; When this method is invoked, the SOAP response generated is: Integer Maximum 46 As the client is processing the SOAP response directly, we would lik

Re: can not generate async server sode code

2008-09-09 Thread Damin
Amila, I tested it and found that messageCtx.getParameter(DO_ASYNC).getValue() just returns an empty string. In fact, I found in Axis2 library class org.apache.axis2.receivers.AbstractMessageReceiver, the method receive uses messageCtx.isPropertyTrue(DO_ASYNC) to make the decision. I am wonderi

RE: Help needed with supported SOAP version

2008-09-09 Thread paul.ockleford
Hi, This is the text from the manifest in the axis.jar file: Created-By: 1.4.2_05-b04 (Sun Microsystems Inc.) Name: org/apache/axis Implementation-Title: Apache Axis Implementation-Version: 1.3 2244 October 5 2005 Implementation-Vendor: Apache Web Services I don't think that this is axis2? If

Re: Help needed with supported SOAP version

2008-09-09 Thread Deepal jayasinghe
I am not sure about Axis1 project but if you are using Axis2 yes we support both SOAP 1.1 and 1.2 Thank you! Deepal > Hi, > > I really need some clarification on something urgently. Do apache axis > versions 1.3 and 1.4 support SOAP 1.2? > > If someone can get back to me as soon as possible I woul

Using Axis2 and SAAJ API to send Attachments

2008-09-09 Thread Nesbitt, Karl
Hi, When running some simple SAAJ code to get Axis2 to send SwA type attachments, it doesn't add the attachments (it sets Content-Type to application/xop+xml, i.e. appears to be trying to do MTOM, but no attachments appear) Running the same code against the old Axis 1.4 release (with activation a

Help needed with supported SOAP version

2008-09-09 Thread paul.ockleford
Hi, I really need some clarification on something urgently. Do apache axis versions 1.3 and 1.4 support SOAP 1.2? If someone can get back to me as soon as possible I would be very grateful. Thanks, Paul Ockleford *** This me

Re: Axis2 webservice over https in Tomcat

2008-09-09 Thread Bartholodeus
Thank you for your explanations. My service.xml looks like this now: Please Type your service description here http://www.w3.org/2004/08/wsdl/in-only"; class="org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver" /> h