fault tolerant bean serializer

2004-01-02 Thread Karl Baum
When using the bean serializer, I have noticed that when there is an extra field on the SOAP XML object which is not present on the client side bean, a fatal SAXParser exception is thrown and the service fails. Is it possible to make the bean serailizer and bean deserializer fault tolerant. A

RE: Bean Serializer/ Deserializer

2003-03-17 Thread Balakrishna, Vandana (Cognizant)
Hi, There have been no replies to this...Please help...!! Vandana. -Original Message- From: Balakrishna, Vandana (Cognizant) Sent: Thursday, March 13, 2003 10:06 PM To: [EMAIL PROTECTED] Subject: RE: Bean Serializer/ Deserializer Hi, I am kind of confused about the way AXIS goes

RE: Bean Serializer/ Deserializer

2003-03-13 Thread Balakrishna, Vandana (Cognizant)
e has done this can you please post the code? Vandana. -Original Message- From: Mike DuVall [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2003 8:26 PM To: [EMAIL PROTECTED] Subject: RE: Bean Serializer/ Deserializer Thanks for the info, Paul. I actually did figure that out this mo

RE: Bean Serializer/ Deserializer

2003-03-11 Thread Balakrishna, Vandana (Cognizant)
post the code? Vandana. -Original Message- From: Mike DuVall [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2003 8:26 PM To: [EMAIL PROTECTED] Subject: RE: Bean Serializer/ Deserializer Thanks for the info, Paul. I actually did figure that out this morning through trial and error

RE: Bean Serializer/ Deserializer

2003-03-07 Thread Mike DuVall
s From: "Paul Andrews" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> Subject: RE: Bean Serializer/ Deserializer Date: Fri, 7 Mar 2003 09:24:27 -0500 They use the reflection package. If you implement BeanInfo class

RE: Bean Serializer/ Deserializer

2003-03-07 Thread Paul Andrews
8 PM > To: [EMAIL PROTECTED] > Subject: Bean Serializer/ Deserializer > > > I have a question about how the built in BeanSerializer and > BeanDeserializer > determines what getters and setters to call. > > Do these classes just call every getter and setter on an a

Bean Serializer/ Deserializer

2003-03-06 Thread Mike DuVall
I have a question about how the built in BeanSerializer and BeanDeserializer determines what getters and setters to call. Do these classes just call every getter and setter on an a bean, or do they first look for data fields in the object, and then look for getters and setters that correspond t

RE: bean serializer

2003-02-12 Thread San 'NeTTwerk' Mehat
]] Sent: Wednesday, February 12, 2003 10:53 AM To: [EMAIL PROTECTED] Subject: RE: bean serializer   I had some issues returning beans and they got resolved when I used the code generated from WSDL2Java.  The generated files will provide all the mappings and they are very easy to use.  Try using

RE: bean serializer

2003-02-12 Thread David Gilbert
:[EMAIL PROTECTED]]Sent: Wednesday, February 12, 2003 10:34 AMTo: [EMAIL PROTECTED]Subject: bean serializer hi i wrote the client to access to a web service returning a bean this is my relevant code: String endpoint = "http://localhost:8080/axis/services/MessageService";  

bean serializer

2003-02-12 Thread luca marano
hi i wrote the client to access to a web service returning a bean this is my relevant code: String endpoint = "http://localhost:8080/axis/services/MessageService";     Service  service = new Service();    Call call    = (Call) service.createCall();     call.setTargetEndpointAddress( new

RE: bean serializer and field names like A_BCD (underscore)

2003-02-04 Thread Tom Jordahl
TED] Subject: bean serializer and field names like A_BCD (underscore) Hey all, I'm using the bean serializer for a fairly boring javabean, and most of the process is going well - however... I have a couple of fields - G_L_ACCT and C_AMT_BAPI - that aren't coming through properly; they co

bean serializer and field names like A_BCD (underscore)

2003-02-04 Thread Dmitri Colebatch
Hey all, I'm using the bean serializer for a fairly boring javabean, and most of the process is going well - however... I have a couple of fields - G_L_ACCT and C_AMT_BAPI - that aren't coming through properly; they come through as: 4703000 100.00 where the rest of the field

Re: AW: Bean Serializer as Seperate package

2002-07-15 Thread Adam Greene
ecommend the Castor? > Can we just use Axis bean Serializer? > > Thx, > Emily > > At 09:12 AM 7/15/2002 -0700, Kenneth Bowen wrote: > > Gerrit> What about JAXB? It makes it possible to create XMLFiles form > > Gerrit> Java objects and vice versa? Maybe

Re: AW: Bean Serializer as Seperate package

2002-07-15 Thread Jinghua Gu
Why do you recommend the Castor? Can we just use Axis bean Serializer? Thx, Emily At 09:12 AM 7/15/2002 -0700, Kenneth Bowen wrote: > Gerrit> What about JAXB? It makes it possible to create XMLFiles form > Gerrit> Java objects and vice versa? Maybe it can help? > &g

Re: AW: Bean Serializer as Seperate package

2002-07-15 Thread Kenneth Bowen
Gerrit> What about JAXB? It makes it possible to create XMLFiles form Gerrit> Java objects and vice versa? Maybe it can help? Or you could try Castor, from exolab (open source). I'm using it in a project and it works well. Kenneth -- Kenneth Bowen[EMAIL PROTECTED] telephone:

AW: Bean Serializer as Seperate package

2002-07-15 Thread Gerrit Quast
PROTECTED] > -Ursprungliche Nachricht- > Von: Adam Greene [mailto:[EMAIL PROTECTED]] > Gesendet: Sonntag, 14. Juli 2002 16:33 > An: [EMAIL PROTECTED] > Betreff: Bean Serializer as Seperate package > > > I'm trying to develop a portal engine and I need t

Bean Serializer as Seperate package

2002-07-14 Thread Adam Greene
I'm trying to develop a portal engine and I need to be able to serialize the portlets to XML and I'm looking for an Java to XML, XML to Java solution, sort of like the Bean Serializer in AXIS or XMLEncoder in JDK 1.4.0 (Which I cannot seem to get to work, it just renders empty doc

Still problem with bean serializer

2002-07-01 Thread Stefan Wagner
Hi! I just don't get it. I still want to send just a simple bean but get always the same error. I use JDK1.4, Tomcat 4.0.4, Axis Beta2 on Linux. I created a simple bean with two attributes and getter and setter methods. Then I created a simple interface with a method that return that bean. The

problem with bean serializer contains array object

2002-02-26 Thread Tom Le
Hi Does anybody know how to serialize a bean contains one or more array of complextype? - eg. here is my wsdl definition