Re: Another issue

2005-09-05 Thread jayachandra
Alternately, you could code your own Serializer/Deserializer taking help from existing SimpleSerializer and Deserializer Factories that are present in org.apache.axis.encoding.ser package and later use in your WSDD.   For more information take a look at http://ws.apache.org/axis/java/user-guide.h

Re: Null Pointer from org.apache.axis.message.MessageElement.addTextNode

2005-09-05 Thread jayachandra
Did you try verifying what is being sent on wire to the server using TCPMon? Start TCPmon on some port and redirect the content to the tomcat host and port. Make sure you give tcpmon port in the portQName string rather than the tomcat port  Assuming I would like to start tcpmon on 9090 and have my

Re: Extracting Operation Name from a SOAP envelope

2005-09-05 Thread jayachandra
Thanks all for your pointers.  Regards Jaya  On 9/4/05, Mike Woinoski <[EMAIL PROTECTED]> wrote: >>Supposing I've to extract the operation name from a SOAP Envelope I got into>>my code, can I safely assume that for all styles and uses (doc-lit, rpc-enc) >>the first child element of body has its loc

RE: it goes out of memory

2005-09-05 Thread Tootell, James
The downfall of DOM objects is that they take up so much room in memory for large documents, especially when you're building them at run time. If you're going to stick with manipulating raw XML, try writing it to memory via SAX first and then import the resulting document into DOM as/if needed (sav

it goes out of memory

2005-09-05 Thread MUHAMMAD IQBAL
Hi All, I am using AXIS web services, i have a huge database that consists of around 100,000 row, i am using manual serialization using my own XSD. but when the response rows exceed 5000/= it goes out of memory. it is because first i am writting resonse into a DOM Element and then sending the

Re: Slow client side deserialization

2005-09-05 Thread Kr
use JiBX for (un)marshalling. It is faster than any other java<-->xml data binding frameworks out there.

Slow client side deserialization

2005-09-05 Thread Sergej Berishaj
Hello all. I have a slight problem using Axis. Everything works fine, but I'm bothered by the slowness of client side deserialization. I am trying to send an array of 1300 complex type instances (beans) over the wire. The bean has 15 members -- 10 strings, 3 floats and 2 Calendars. The serve

Re: Another issue

2005-09-05 Thread Jeff Greif
Look into message-style services (see the Axis user guide, Service Styles section, and the Wiki). A few signatures are possible, and one of these might be what you're looking for: Element[] your-method-name(Element[] requestBodyElements); Document your-method-name(Document requestBody); Th

Re: Unrecognised SOAPAction header value

2005-09-05 Thread Chris Mannion
Thanks Richard I wasn't explicitly setting the SOAPAction uri, I'm hitting the webservice successfully now (though being told I'm denied access, but that's somebody elses problem.) I'm quite new to all this, my client is a lightly tailored copy of the simplest example in the axis docs. Chris Man

RE: Unrecognised SOAPAction header value

2005-09-05 Thread Richard Schrauwen
Hi Chris, The AxisFault you show seems to me a case where you make a call with an empty soapaction towards for example a .NET server. Are you sure that the soapAction is included in your SOAP call? Richard From: "Chris Mannion" <[EMAIL PROTECTED]> Reply-To: axis-user@ws.apache.org To: "axis-

Another issue

2005-09-05 Thread Fabrício
Hello all,   As I said in previous messages, I want to create a web service that could receive any types and dynamically extracts the contents of those types. Thus, I saw in java Object a solution for my problem. Hence, I created the web service that receives and returns the java Object:

Unrecognised SOAPAction header value

2005-09-05 Thread Chris Mannion
Hi all   I'm having problems calling a non-axis-based web-service from an axis-based client.  I've read around the mailing list and discovered that people sometimes have problems in the opposite situation, calling an axis web service from a non-axis-based client, because axis requires the pr

Re: Return type for complex types

2005-09-05 Thread Rogério Luz
Hi Xinjun   Take a look at this thread: http://java2.5341.com/msg/86471.html On 9/3/05, #CHEN XINJUN# <[EMAIL PROTECTED]> wrote: Hi Rogério,Thank you for your response. Aspired by your previous emails, I tried to set style to "RPC" and it really works. I had never doubted that this setting would c

Re: creating WSDL contract

2005-09-05 Thread Plorks mail
Thanks Mike Very kind of you From: Mike Woinoski <[EMAIL PROTECTED]> Reply-To: axis-user@ws.apache.org To: axis-user@ws.apache.org Subject: Re: creating WSDL contract Date: Sun, 04 Sep 2005 11:06:27 -0400 Plorks mail wrote: can anyone give me an example of writing a WSDL contract so i can l

web.xml - servlet has dependency!

2005-09-05 Thread vicky axis
Just playing around with jboss,axis.   I created a servlet that makes use of a certain mbean. I want the mbean to be registered first and then the servlet class to be initialized. Can any one help me with this. Is there any way of doing this through web.xml?? Any thoughts on the load on startup tag

Null Pointer from org.apache.axis.message.MessageElement.addTextNode

2005-09-05 Thread Chris Mannion
Hi   I'm getting a null pointer exception on invoking a call object.  This happens for any call with parameters set, though I'm certain, from having debugged the code, that it is not 'caused by passing nulls for parameter values, the exception occurs even on calls where all the values are pr

Re: java to wsdl: How to generate minOccurs="0" instead of nillable="true"

2005-09-05 Thread Martin Grotzke
On Fri, 2005-09-02 at 08:54 -0400, Anne Thomas Manes wrote: > I suggest that you file a feature enhancement request to add a > parameter to generate minOccurs="0". Btw, where should this parameter be used? It would be used when the schema generated, so it's related to the Serializer.writeSchema an