Need extended Message Services Example

2005-01-20 Thread John Menke
I am trying to use the message type service - i can get the basic example working (it returns the input) but I can't seem to get a service doing anything with the Document instance working. Service method public Document testService (Document doc){ // do something with doc besides return it }

java.lang.reflect.InvocationTargetException --> how can i debug this???

2005-01-18 Thread John Menke
I have no clue what is causing this and the error is not very helpfull... ANY ideas java.lang.reflect.InvocationTargetException null AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: java.lang.reflect.InvocationTargetException

RE: does anyone have complex serialization working?

2004-11-14 Thread John Menke
ferenceObject; } /** * @param object1 * The object1 to set. */ public void setReferenceObject(ObjectWithReferences referenceObject) { this.referenceObject = referenceObject; } } -Original Message--

does anyone have complex serialization working?

2004-11-14 Thread John Menke
Is it even possible to serialize an array of beans where the beans have references to another bean? Nobody has been able to come up with a working example. beanMapping is not working for me. I have posted several times and nothing... i'm beginning to think it's not possible. -jm

RE: Repost: OT-ANN: My favorite SoA is Hessian

2004-11-14 Thread John Menke
Vic! Can Hessian do complex object serialization? Say i have a bean x that contains a ref to bean y and i need to return an array of x can hessian handle that? -jm -Original Message- From: news [mailto:[EMAIL PROTECTED] Behalf Of Vic Cekvenich Sent: Sunday, November 14, 2004 10:35 AM To

RE: typeMapping and Bad Types

2004-11-13 Thread John Menke
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java";> http://schemas.xmlsoap.org/soap/encoding/"/> >From: "John Menke" <[EMAIL PROTECTED]> >Reply-To: [EMAIL

RE: typeMapping and Bad Types

2004-11-13 Thread John Menke
Kevin, are you using the beanMapping or typeMapping tags in your wsdd? I don't see a reference to them in this email. -jm -Original Message- From: Kevin J. Duling [mailto:[EMAIL PROTECTED] Sent: Saturday, November 13, 2004 1:24 AM To: [EMAIL PROTECTED] Subject: Re: typeMapping and Bad T

RE: Serialization and Deserialization of Beans Problem

2004-11-12 Thread John Menke
It's amazing that there is virtually NO DOCUMENTATION ON THIS. -- PEOPLE WANT TO LEARN THIS. Suggestion: Maybe if people needing the documentation commit to producing the documentation to commit back to the Axis project then somebody will take the time to walk us through this. Is anyone listenin

How to learn complex object serialization?

2004-11-11 Thread John Menke
I've been having problems with trying to get axis to serialize / deserialize a set of two beans where one bean contains a reference to the other bean -- my service also returns an array of these complex objects. Can somebody point me to any resources for doing this? I have asked a few questions o

Re: SOAP Monitor - Applet class not found

2004-11-10 Thread John Menke
Yes there is more than one class to copy. Copy all resulting from compile and it works

Pleaase help with beanMapping / typeMapping in wsdd

2004-11-10 Thread John Menke
PLEASE HELP!!! - I'm stuck I have a webservice that uses 2 beanS. One bean contains a reference to the other. When i try to deploy the webservice without bean mappings it works and i get my wsdl defined like below. But when i add beanMapping tags to serialize my beans the deploy fails without an

RE: webservices for stocks

2004-11-10 Thread John Menke
see http://www.xmethods.com/ -Original Message- From: Marco Mistroni [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 8:45 AM To: [EMAIL PROTECTED] Subject: webservices for stocks Hello all, Does anyone know if there are any free services on the Internet that allows you

RE: Custom Serializer is invoked twice for a single web service call

2004-11-10 Thread John Menke
Tom, you mention a complex type. I have a complex type i need to serialize that contains another complex type. Are there any examples on how to setup the serializer/deserializer for this either with BeanSerializer or with custom classes? -jm -Original Message- From: tom ONeill [mailto:

serializing nested objects

2004-11-09 Thread John Menke
I have two objects Foo and Bar Foo's Structure is: Foo (contains 3 fields on field is Bar Object type) fooString - type of String fooLong - type of long Bar - type of Bar Bar barString - type of String