RE: InvocationTargetException

2003-09-14 Thread Szöllosy Balázs
Hi ! I've had the same kind of Exception. What is the version of the webservers JRE ? I've tired it with 1.3.1 and that caused this problem. Set your webservers JRE to 1.4.1 and try with that. That helped me. Br Balazs > -Eredeti üzenet- > Feladó: Stephen Gordon [mailto:[EMAIL PROTECTED]

RE: Using JMS

2003-09-14 Thread Mayne, Peter
Title: RE: Using JMS Is the JMS URL syntax available yet? Thanks. PJDM -- Peter Mayne Technology Consultant Spherion Technology Solutions Level 1, 243 Northbourne Avenue, Lyneham, ACT, 2602 T: 61 2 62689727  F: 61 2 62689777 -Original Message- From: Ray Chun [mailto:[EMAIL PROTEC

Re: Which parser (DOM or SAX) does Axis makes use of?

2003-09-14 Thread Jeyakumaran.C
Hi yuvraj, I feel sorry for u as I am facing the same problems. i am sure that axis uses sax but even though it will use the memory in certain amount which leads to a memory over flow problem for big message. Regarding to memory probs u have already followed the earlier mail chats as yr name

Re: java.io.IOException: No serializer found for class java.util.AbstractList$Itr

2003-09-14 Thread vairamuthu thayapavan
hi make sure u have registered ur type in the followin way or any other way in the client side.   call.registerTypeMapping(PurchaseOrder.class, q1, new org.apache.axis.encoding.ser.BeanSerializerFactory(PurchaseOrder.class, q1), new org.apache.axis.encoding.ser.BeanDeserializerFactory(Purch

Re: AxisFault.

2003-09-14 Thread Jeyakumaran.C
Hi, u may catch the exceptions in a hierachial way to get the structurized faults. Good luck. Jeyakumaran.C - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 10, 2003 2:30 PM Subject: AxisFault. > Hi , > In axis, Can i cutomise what is going

Re: Unwrapping AxisFaults

2003-09-14 Thread Alireza Taherkordi
Hi Oleg, > have you tried AxisFault.getCause() Yes I've tried but it doesn't work, getCause() is method of RemoteException and can not work in his case, I'm looking for a way of deserializing my user exception. Best Regards Alireza oleg shteynbuk wrote: > have you tried AxisFault.getCaus

Re: Modifying SOAP responses with a Handler

2003-09-14 Thread oleg shteynbuk
I had SocketTimeoutException and in my case I solve it by setting org.apache.axis.client.Stub.setTimeout() method, default is like 45 seconds, there are several setTimeout() methods in different Axis classes and I believe you can specify timeout in wsdl2java too, at the time I was using debugge

Modifying SOAP responses with a Handler

2003-09-14 Thread Stephen Gordon
Hi there, I'm just wondering if anyone knows how to modify the SOAP content of a server response message using a Handler object?? What I want to do is get my Handler to change the response message to a SOAP message (in XML) which is read in from an InputStream. I've tried like this: InputSour