Re: Exception: No serializer found for class java.io.File in registry org.apache.axis.encoding.TypeMappingImpl@102b2b6

2004-10-18 Thread Kirubakaran . Pakkirisamy
TED]> 10/18/2004 06:45 AM Please respond to [EMAIL PROTECTED] To [EMAIL PROTECTED] cc Subject Exception: No serializer found for class java.io.File in registry [EMAIL PROTECTED] Hi, I am trying to write a web service that will read error logs form the server and display it

Exception: No serializer found for class java.io.File in registry org.apache.axis.encoding.TypeMappingImpl@102b2b6

2004-10-18 Thread METIN ZAVRAK
and deploy my web service. However, at runtime, I received the following error: AxisFault  faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException  faultSubcode:  faultString: java.io.IOException: No serializer found for class java.io.File in registry [EMAIL PROTECTED]  

[solved] RE: [Axis error] No serializer found for class

2004-09-28 Thread Matthias Wessendorf
aul [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 28, 2004 4:26 PM > To: [EMAIL PROTECTED] > Subject: RE: [Axis error] No serializer found for class > > > Hello Matthias, > > I suspect you are trying to send this bean from your client > to your server > on

RE: [Axis error] No serializer found for class

2004-09-28 Thread Bouche Paul
; To: [EMAIL PROTECTED] > Subject: RE: [Axis error] No serializer found for class > > > karim, paul > > thanks! The call via HTTP.GET works now. > I just started to implement my java-client > and got an Exception during Deserializing. > (see below) > > I have th

Re: No serializer found for class javax.activation.DataHandler

2004-04-02 Thread Sivakumar Jagadeesan
Yah thanx, I was missing mail.jar :( Now it is working. But still I am getting the first problem I mentioned, I am not able to see the WSDL Rgds, -Siva From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: No serializer found for class

Re: No serializer found for class javax.activation.DataHandler

2004-04-01 Thread J . Sugrue
Make sure both activation.jar and mail.jar are in your classpaths . James "Sivakumar Jagadeesan" <[EMAIL PROTECTED]> 01/04/2004 23:01 Please respond to [EMAIL PROTECTED] To [EMAIL PROTECTED] cc Subject No serializer found for class javax.activation.DataHandler I wa

No serializer found for class javax.activation.DataHandler

2004-04-01 Thread Sivakumar Jagadeesan
: faultString: java.io.IOException: No serializer found for class javax.activation.DataHandler in reg istry [EMAIL PROTECTED] faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/}stackTrace: java.io.IOException: No serializer found for class javax.activation.DataHandler in

Re: No serializer found for class

2004-02-26 Thread christopher justin
an element? I believe the qn is referencing the complex type now.. From: Airline Pedestal <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: No serializer found for class Date: Thu, 26 Feb 2004 16:49:22 -0800 (PST) Best I can tell, this whole type m

RE: No serializer found for class

2004-02-26 Thread christopher justin
as? Thank you very much for replying.. From: "Hari Lakshmanan" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]> Subject: RE: No serializer found for class Date: Thu, 26 Feb 2004 16:35:11 -0800 Sorry it should read as namespace instead of qname

Re: No serializer found for class

2004-02-26 Thread Airline Pedestal
ROTECTED]> wrote: > Hello all, > > My web service client seems to not register my class > with the BeanSerializer > correctly...I keep getting "No serializer found for > class > TLI.beans.Category". I am stumped... if any one can > help out it would be &

RE: No serializer found for class

2004-02-26 Thread Hari Lakshmanan
Sorry it should read as namespace instead of qname mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 4:11 PM To: [EMAIL PROTECTED] Subject: No serializer found for class Hello all, My web service client seems to not register my class with the BeanSerializer correctly...I keep getting

RE: No serializer found for class

2004-02-26 Thread Hari Lakshmanan
To: [EMAIL PROTECTED] Subject: No serializer found for class Hello all, My web service client seems to not register my class with the BeanSerializer correctly...I keep getting "No serializer found for class TLI.beans.Category". I am stumped... if any one can help out it would b

No serializer found for class

2004-02-26 Thread christopher justin
Hello all, My web service client seems to not register my class with the BeanSerializer correctly...I keep getting "No serializer found for class TLI.beans.Category". I am stumped... if any one can help out it would be greatly appreciated. Here is my client code:

Re: No serializer found for class

2004-02-24 Thread ian_d_stewart
ditors.com To: [EMAIL PROTECTED] cc: 02/23/2004 08:24 Subject: Re: No serializer found

Re: No serializer found for class

2004-02-23 Thread Parul . Joshi
The problem was with the Date and time, Axis was trying to use the Calendar Serializer and de-serializer, but I think the format of the incoming data was a bit weird hence it could not deserialize it correctly, I changed it to be a "String" and it worked.. partially . Now the problem that I am ru

Re: No serializer found for class

2004-02-23 Thread Vivek Nagulapati
PROTECTED] Subject: Re: No serializer found for class Date: Fri, 20 Feb 2004 13:55:43 -0800 Tony, If I do modify the wsdd, I will have to redeploy the service again correct? I'm not sure if I have access to do that (since its another team maintaning it) Also, The problem that I am facing is with t

Re: No serializer found for class

2004-02-20 Thread Parul . Joshi
                                                        0                                                                                                                         Thanks, Parul Tony Blair <[EMAIL PROTECTED]> 02/20/2004 01:20 PM Please respond to axis-user                 To:        [EMAIL PROTECTED]         cc:        (bcc: Parul Joshi/IS/Expeditors)         Subject:    

Re: No serializer found for class

2004-02-20 Thread Tony Blair
Parul,   I've notice two things:   1-Your WSDD does not have any information regarding the encoding, ser and deser. Perhaps you may have to add them manually yourself. The absence of these information results in exceptions such as Seriliazer or Desr not found.   2-In the client code the call.addPar

Re: No serializer found for class

2004-02-20 Thread Tony Blair
Parul,   Can you post your Client code and the your WSDD (NOT the WSDL) here?   Regards, Tony.[EMAIL PROTECTED] wrote: Hi there, I am extremely new to Axis and SOAP, and am trying to solve this for the past 2 days, without and luck. I am running into a problem when I am trying to deserialize incomi

Re: No serializer found for class

2004-02-20 Thread Parul . Joshi
Hi there, I am extremely new to Axis and SOAP, and am trying to solve this for the past 2 days, without and luck. I am running into a problem when I am trying to deserialize incoming data. I get the following exception. SimpleDeserializer encountered a child element, which is NOT expected, in so

Re: No serializer found for class

2004-02-20 Thread Tony Blair
Hi there,   Adding bean mapping and the type mapping in your wsdd will create the ser/Deser on the server side. You also need to define ser/deser on the client side for each complex type in your Call.invoke() method. Let me know if you have more questions on this.   Regards, Tony.Rajagopal <[EMAIL

No serializer found for class

2004-02-20 Thread Rajagopal
ot;Request:"); oRequest.writeTo(System.out); SOAPMessage oReply = (SOAPMessage) oStub.onMessage(oRequest); System.out.println("Response:"); oReply.writeTo(System.out); } } The stack trace of the error I get == AxisFault faultCode: {h

EJB: No serializer found for class

2003-12-07 Thread Anthony Dodd
Exception for /axis/services/RemotableContext: java.io.IOException: No serializer found for class com.synergy.beans.Ticket in registry [EMAIL PROTECTED] I can't see what's wrong with my wsdd script, and I'm now at a loss to figure out how to proceed. If any body has any sug

Re: help! No serializer found for class org.apache.axis.message.SOAPB odyElement

2003-11-06 Thread Junaid . Bhatra
t; > call.setTargetEndpointAddress( new URL(opts.getURL()) ); > SOAPBodyElement[] input = new SOAPBodyElement[1]; > input[0] = new SOAPBodyElement((Element)data.getRootElement()); > Vector elems = (Vector) call.invoke("processInboundData",input); > > > EXCEPTION ON CLIENT &g

Re: help! No serializer found for class org.apache.axis.message.SOAPB odyElement

2003-11-06 Thread Andre Charbonneau
ew SOAPBodyElement((Element)data.getRootElement()); Vector elems = (Vector) call.invoke("processInboundData",input); EXCEPTION ON CLIENT ---------- java.io.IOException: No serializer found for class org.apache.axis.message.SOAPBodyElement in registry [EMAIL PROTEC

help! No serializer found for class org.apache.axis.message.SOAPBodyElement

2003-11-06 Thread ial
SOAPBodyElement[] input = new SOAPBodyElement[1]; input[0] = new SOAPBodyElement((Element)data.getRootElement()); Vector elems = (Vector) call.invoke("processInboundData",input); EXCEPTION ON CLIENT ---------- java.io.IOException: No serializer found for class

help! No serializer found for class org.apache.axis.message.SOAPBodyElement

2003-11-04 Thread ial
SOAPBodyElement[] input = new SOAPBodyElement[1]; input[0] = new SOAPBodyElement((Element)data.getRootElement()); Vector elems = (Vector) call.invoke("processInboundData",input); EXCEPTION ON CLIENT ---------- java.io.IOException: No serializer found for class

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

2003-09-15 Thread munesh
- From: munesh <mailto:[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> Sent: Friday, September 12, 2003 6:26 PM Subject: java.io.IOException: No serializer found for class java.util.AbstractList$Itr Hi, I am new to axis and webservices. I am us

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

2003-09-14 Thread vairamuthu thayapavan
(PurchaseOrder.class, q1));   regards vtpavan - Original Message - From: munesh To: [EMAIL PROTECTED] Sent: Friday, September 12, 2003 6:26 PM Subject: java.io.IOException: No serializer found for class java.util.AbstractList$Itr Hi,I am new to axis and webservices. I

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

2003-09-12 Thread munesh
Hi, I am new to axis and webservices. I am using axis 1.1 and while invoking our custom webservice i am getting the following exception on the client side java.io.IOException: No serializer found for class java.util.AbstractList$Itr in registry [EMAIL PROTECTED] All our custom objects used

RE: No serializer found for class...

2003-03-19 Thread Gurkan, Ozzie (MAN-Corporate)
uot; parameters to your hearts content. -Original Message- From: Gurkan, Ozzie (MAN-Corporate) Sent: Wednesday, March 19, 2003 11:34 AM To: '[EMAIL PROTECTED]' Subject: RE: No serializer found for class... Wow, I found it! It had to do with "encodingStyle" attribute

RE: No serializer found for class...

2003-03-19 Thread Gurkan, Ozzie (MAN-Corporate)
Now all of the classes end up getting created under the same type mapping impl class. -Original Message- From: Gurkan, Ozzie (MAN-Corporate) Sent: Wednesday, March 19, 2003 11:17 AM To: '[EMAIL PROTECTED]' Subject: RE: No serializer found for class... I have downloaded the so

RE: No serializer found for class...

2003-03-19 Thread Gurkan, Ozzie (MAN-Corporate)
it is or not. Stay tunedCan someone from axis-dev answer this question? Thanks, Ozzie Gurkan -Original Message- From: Gurkan, Ozzie (MAN-Corporate) Sent: Wednesday, March 19, 2003 9:11 AM To: '[EMAIL PROTECTED]' Subject: No serializer found for class... I had my serializer/

No serializer found for class...

2003-03-19 Thread Gurkan, Ozzie (MAN-Corporate)
I had my serializer/deserializer setup working for a while, and now, all of a sudden, it is not working anymore. Can anyone tell me what I am doing wrong? Is there a tricky classloading issue with loading custom factories? Here is the exception: java.io.IOException: No serializer found for class

No serializer found for class java.net.URL in registry

2003-03-03 Thread Michael Mattox
I'm sending an object that contains a java.net.URL. When I look at the wsdl it has the URL: But when I run my application I get: Received a fault: java.io.IOException: No serializer found for class java.net.URL in registry [EMAIL PROTECTED] Is there anything I need to do to have the de