Re: axis2 and unkown class

2006-01-02 Thread Ajith Ranabahu
Hi, The code generator eclipse plugin was not updated for the 0.93 release and the code it generates will only be compatible for the .92 release. If you need code generated for the latest source (release) please use the command line tool On 1/2/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: hi,i

RE: SoapMapper string could not be found

2006-01-02 Thread mukesh
Hmm, but WSDL is not being generated from our side it is provided by the client which I can not change   From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 03, 2006 3:23 AM To: axis-user@ws.apache.org Subject: Re: SoapMapper string could not be found   I

RE: javax.servlet.ServletException: javax/xml/rpc/Service

2006-01-02 Thread mukesh
Well I’ve added all the jars which contains jax and rpc in their name but is of no use   From: Jonathan Roberts [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 03, 2006 12:53 AM To: axis-user@ws.apache.org Subject: Re: javax.servlet.ServletException: javax/xml/rpc/Service  

Client Handler question: dynamic information per request

2006-01-02 Thread Ryan Chambers
I've implemented a custom client request handler. It adds some SOAPElement objects to the SOAPHeader. This is pretty easy to do when the stuff it adds is static for every request. But I need to make some changes where the stuff that is added is different for every request. How do I do that? I f

RE: Objectify XML Nodes

2006-01-02 Thread Wade Chandler
--- Ted Jones <[EMAIL PROTECTED]> wrote: > Thanks for the response. I am really looking for a > programatic solution since my XML document will be > dynamic. > > Thanks, > Ted > > P.S. I am using Axis 1.1 > > > -Original Message- > From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] >

RE: Objectify XML Nodes

2006-01-02 Thread Ted Jones
Title: RE: Objectify XML Nodes Thanks for the response.  I am really looking for a programatic solution since my XML document will be dynamic. Thanks, Ted P.S.  I am using Axis 1.1 -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED]] Sent: Mon 1/2/2006 4:24 PM To:

Re: soapenc:string vs xsd:string

2006-01-02 Thread Anne Thomas Manes
"-y WRAPPED" will produce a wrapped document/literal service rather than an rpc/encoded service. This is the preferred way to interoperated with .NET. You should only use the parameter name="dotNetSoapEncFix" value="true"/> attribute if you are using rpc/encoded, therefore it no longer applies in

Re: Objectify XML Nodes

2006-01-02 Thread Anne Thomas Manes
Define a schema for this XML document, import the schema into your WSDL, and run wsdl2java. It will generate the Java objects that map to the XML. AnneOn 1/1/06, Ted Jones <[EMAIL PROTECTED]> wrote: I have an XML document that I need to convert to Axis objects. The XML nodes will make-up t

Re: [axis2] wdsl2java generation

2006-01-02 Thread Anne Thomas Manes
Your binding definition is invalid. In particular: encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://intCoriolis.sismer.ifremer.com" use="literal"/> You cannot specify an encoding style with use="literal". Either change use="encoded" or remove the encodingStyle attrib

Re: Axis version help. (pls ignore my previous mail)

2006-01-02 Thread Anne Thomas Manes
Can you trace the input messages? Are they the same? It appears that the client is failing on a returned fault mesage.On 1/2/06, Gurunathan, Selvapandian (Cognizant) < [EMAIL PROTECTED]> wrote:Hi,I want to invoke a web service running in a remote location and it is written in Apache SOAP.Please fin

Re: SoapMapper string could not be found

2006-01-02 Thread Anne Thomas Manes
If the service is expecting an array of string, then the WSDL should specify that. The proper way to solve it is to fix the WSDL. AnneOn 1/2/06, mukesh <[EMAIL PROTECTED]> wrote: Hi,I have a function called deliverMTMessage which accepts an array of Stringas parameter but in wsdl it is defined as

User exception

2006-01-02 Thread Amleto Di Salle
Hi all, I have defined a Web Service with one method that throws an UserException (it extends from Exception and implements java.io.Serializable). Furthermore, I have added in the server-config.wsdd the related beanMapping i.e. http://amletodisalle.it/webservices"/> After, I have generated the cli

Re: javax.servlet.ServletException: javax/xml/rpc/Service

2006-01-02 Thread Jonathan Roberts
hi   ensure that   javax/xml/rpc/Service   is in your web app servers classpath!   Jmukesh <[EMAIL PROTECTED]> wrote: Hi friends,I am able to access web service via command prompt using "java-cp $AXISCLASSPATH ws.TestService" but getting following error when tryingto access a web service v

Re: Moving from jax-rpc ri to axis

2006-01-02 Thread iksrazal
A couple quick tips: First, use [axis2] in the subject. To set a timeout using axis2...             Options options = stub._getClientOptions();             options.setAction("your_soap_action");             options.setTimeOutInMilliSeconds(new Long(6)); The setAction part shouldn't be nec

RE: javax.servlet.ServletException: javax/xml/rpc/Service

2006-01-02 Thread Henrik Troeng
Hi again, Try to also include jaxrpc-api.jar in your classpath? It also contains Service, I don´t know what differs them, but you can always try? Henrik "mukesh" <[EMAIL PROTECTED]> 01-02-2006 18:40 Please respond to axis-user@ws.apache.org To cc Subject RE: javax.servlet.S

RE: javax.servlet.ServletException: javax/xml/rpc/Service

2006-01-02 Thread mukesh
thank you henrik,   not jax-rpc but I have added jaxrpc.jar in my classpath and I’ve confirmed that jaxrpc.jar has same file javax.xml.rpc.Service.   I have set all kind of path variables  in /etc/profile     -mukesh   From: Henrik Troeng [mailto:[EMAIL PROTECTED] Sent: M

axis2 and unkown class

2006-01-02 Thread m . depe
hi, i tried to use Code Generator Wizard from eclipse (and i think using wsdl2java is the same) to produce java stub code from axis2 example InteropTest.wsdl Some classes were produced but i got some errore in for exmple in Axis2SampleDocLitPortTypeMessageReceiver.java Axis2SampleDocLitPortTypeStu

Re: javax.servlet.ServletException: javax/xml/rpc/Service

2006-01-02 Thread Henrik Troeng
Hi, is jax-rpc in your servers classpath? "mukesh" <[EMAIL PROTECTED]> 01-02-2006 17:47 Please respond to axis-user@ws.apache.org To cc Subject javax.servlet.ServletException: javax/xml/rpc/Service Hi friends,            I am able to access web service via command pr

javax.servlet.ServletException: javax/xml/rpc/Service

2006-01-02 Thread mukesh
Hi friends, I am able to access web service via command prompt using "java -cp $AXISCLASSPATH ws.TestService" but getting following error when trying to access a web service via browser (jsp page) cause java.lang.NoClassDefFoundError: javax/xml/rpc/Service java.lang.ClassLoa

SoapMapper string could not be found

2006-01-02 Thread mukesh
Hi, I have a function called deliverMTMessage which accepts an array of String as parameter but in wsdl it is defined as "anyType" and when I generate stub using WSDL2Java the gets mapped to following way param = new org.apache.axis.description.ParameterDesc(new javax.xml.namespace.QName("",

Re: Axis client using ssl

2006-01-02 Thread Cyrille Le Clerc
Hello, Here are some docs about client side SSL with Axis : By default, in Axis, client-side SSL implementation relies on Java Secure Socket Extension (aka JSSE). By default, JSSE will accept any ssl cerficate issued by a certificate authority like Verisign, ... Axis is also bundled wit

Moving from jax-rpc ri to axis

2006-01-02 Thread Claudio Miranda
Hi all, I have a simple application running on top of application server J2EE 1.4, JAX-RPC RI, the client uses static stubs. Sometimes when the overall system is under high load, the ws client take much time to do its job. Then a timeout is needed to put to the ws client, but jax rpc

Axis version help. (pls ignore my previous mail)

2006-01-02 Thread Gurunathan, Selvapandian \(Cognizant\)
Hi, I want to invoke a web service running in a remote location and it is written in Apache SOAP. Please find attached the sample java application written in axis version 1.1 that I use to invoke the web service. This is working fine and I am able to get a response from the target machine. When

Axis version help.

2006-01-02 Thread Gurunathan, Selvapandian \(Cognizant\)
Hi, I want to invoke a web service running in a remote location and it is written in Apache SOAP.   Please find attached the sample java application written in axis version 1.1 that I use to invoke the web service. This is working fine and I am able to get a response from the target mac

[axis2] wdsl2java generation

2006-01-02 Thread vincent le squere
Hello, you can see below my wsdl file. There are some commented lines, if i uncomment them the generation fail with a nullPointerException at : org.apache.axis2.wsdl.builder.wsdl4j.WSDLPump.generateReferenceQName and i've any idea why... Someone could help me ? thanks http://intCoriolis.si

User defined fault help

2006-01-02 Thread Barak Bar Orion
I am using axis to write a web server that will be access mostly from .Netclients.Therefore I write the wsdl manually use wsdl2java to produce the javaclasses for my value objects the stub and the skeleton. I am trying to define a fault for each of my server errors in such why thatmy server will th