RE: is it possible to use Collections with client proxies?

2004-05-22 Thread Airline Pedestal
How do you do the typeMappings with arrays in the deploy.wsdd and on the client side? Thanks, A --- Anne Thomas Manes [EMAIL PROTECTED] wrote: You should switch to arrays. Anne __ Do you Yahoo!? Yahoo! Domains – Claim yours

Re: No serializer found for class

2004-02-26 Thread Airline Pedestal
Best I can tell, this whole type mapping mechanics is complete magic Here's an idea that might help you. The qn I think needs to reference a complex type in the XML schema (not an element). By the way, what does encoding style NS_URI_XML mean? --- christopher justin [EMAIL PROTECTED]

Re: Connection Timed Out

2004-02-11 Thread Airline Pedestal
Maybe an Out of Memory error. You could consider increasing the heap size on the server JVM. You could add something like set JAVA_OPTS=-server -Xms128m -Xmx256m to catalina.bat Just a guess though. --- Rommel Sharma [EMAIL PROTECTED] wrote: Just to add to my earlier query...I have

Re: Out of memory error

2004-01-28 Thread Airline Pedestal
You could add something like this to your Tomcat file: catalina.bat to increase the heap size. set JAVA_OPTS=-server -Xms128m -Xmx256m You can also use this parameters when starting the client to increase the heap size. java -Xms128m -Xmx256m com.xxx.Client -Xms: this is inital heap

Re: No deserializer

2004-01-20 Thread Airline Pedestal
Is the test.B class an interface by chance? I had problems when mapping the Java interface. I got it to work by mapping the actual Java Class. --- Rémi_Bars [EMAIL PROTECTED] wrote: hi all, there is my problem i m trying to serialize and deserialize this class : when i launch my

Re: Latest/Nightly Axis1.2 JAR?

2004-01-20 Thread Airline Pedestal
Here is the alpha version: http://archive.apache.org/dist/ws/axis/1_2alpha/ Does anyone know when the beta will come out? Does anyone know when is the final release? --- Ekbote, Niranjan [EMAIL PROTECTED] wrote: Hi, Does anyone know where I can get the latest Axis 1.2 JAR file. The

Re: SimpleDeserializer encountered a child element... documentation!

2004-01-06 Thread Airline Pedestal
+1 to the confusion factor of all this type mapping stuff. I've been going round and round trying to figure out how the settings on the Call object and the settings in the WSDD file should be configured. Could someone please explain how this works? -A --- Jeff [EMAIL PROTECTED] wrote: Hi!

Problem with Axis 1.2

2004-01-03 Thread Airline Pedestal
There seems to be a problem with Axis 1.2Alpha. I have a web service that has been running correctly under Axis 1.1. I'm trying to port the service to Axis 1.2. With Axis 1.2, it doesn't map my Java Objects to the serializer factories correctly. My object does impliment the Java interface

Re: No serializer found... (AXIS 1.2 alpha)

2003-12-19 Thread Airline Pedestal
throws No serializer found for my classes and complaining about is a component of a larger object which has registered type mapping CAn you help me in soling this in Axis1.1..? thanks Rao., Airline Pedestal [EMAIL PROTECTED] wrote: Hi, I tried switching to AXIS 1.2

Re: No serializer found... (AXIS 1.2 alpha)

2003-12-19 Thread Airline Pedestal
type mapping CAn you help me in soling this in Axis1.1..? thanks Rao., Airline Pedestal [EMAIL PROTECTED] wrote: Hi, I tried switching to AXIS 1.2 alpha. Now it throws an exception saying no serializer found for one of my classes. It is true that I did not register one, but I

Re: No serializer found... (AXIS 1.2 alpha)

2003-12-18 Thread Airline Pedestal
about is a component of a larger object which has registered type mapping CAn you help me in soling this in Axis1.1..? thanks Rao., Airline Pedestal [EMAIL PROTECTED] wrote: Hi, I tried switching to AXIS 1.2 alpha. Now it throws an exception

No serializer found... (AXIS 1.2 alpha)

2003-12-16 Thread Airline Pedestal
Hi, I tried switching to AXIS 1.2 alpha. Now it throws an exception saying no serializer found for one of my classes. It is true that I did not register one, but I don't need it before. The class that it is complaining about is a component of a larger object which has registered type

IDREFs and pound sign

2003-09-15 Thread Airline Pedestal
Please help if you know about this. I've had this problem for awhile. I'm writing a custom deserializer which extends the DeserializerImpl class. I'm having trouble with multi-referenced elements in my XML instances. I have a XML schema defined with the following definitions:

Deserializing XML with AXIS

2003-07-30 Thread Airline Pedestal
Hi Everyone, I've written several deserializer classes which extends the DeserializerImpl class. All these classes together get called based on the typemappings that I have defined. In that regard, all is well and the XML gets marshalled correctly. Although, I'd like to reuse this