Re: Announce: German book on Apache Axis released

2004-05-14 Thread John R Meloro
Where can I get an English translation? - Original Message - From: Thilo Frotscher [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 13, 2004 9:56 PM Subject: Announce: German book on Apache Axis released Hi! This week our German book on Apache Axis was released. On 650

Re: Project from hell?

2004-05-14 Thread John R Meloro
Here is a link to a web site that will walk you through creating a very simple web service. However, all the critical pieces are created. Hope this helps... - Original Message - From: Galbreath, Mark A [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 14, 2004 4:17 PM Subject:

Re: Axis Client - Basic Question

2004-05-14 Thread John R Meloro
Take a look at the following link: http://www.onjava.com/pub/a/onjava/2002/06/05/axis.html - Original Message - From: Miller, Janet [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 14, 2004 12:46 PM Subject: Axis Client - Basic Question I have a very basic question about

Re: XML Deserialization : Deserializer how to?

2004-05-13 Thread John R Meloro
Axis comes with Bean Serializer/Deserializer. If your bean was explicitly referenced as a return type then Axis should already register the Bean Serializer/Deserializer in the deploy.wsdd for the client and in the generated stub file for the server. If either or both of these do not show up then

Re: Serializer

2004-05-12 Thread John R Meloro
If I understand what you are saying, you want to take the servers response and re-package it as a SOAP Message and send it somewhere else? If so, then you would need to write your own class which creates a SOAP Message. The following book will tell you how to create your own SOAP Message

Re: Deserializing Error

2004-05-12 Thread John R Meloro
Whenever I have had a SAXException: there are two things I do: 1) Make sure the type has an entry in the deploy.wsdd, so Axis knows what deserializer to use. 2) Turn on TCPMon to see exactly what is coming back from the server - Original Message - From: Malai [EMAIL PROTECTED] To:

Re: could not find deserializer error

2004-05-12 Thread John R Meloro
I believe it means that there is no "typeMapping" entry in the deploy.wsdd for ResultsetType. - Original Message - From: Saritha Bhandarkar To: [EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 7:05 PM Subject: could not find deserializer error Hi, I

Re: URGENT: Axis client deserialization issue

2004-05-05 Thread John R Meloro
If you look into the "stub" generated by AXIS you should eventually find a call to "invoke". The "invoke"method starts a series of calls that will lead to the method "fromString" being called andpassed a java.lang.string as an argument. My guessis that you are missing one of the AXIS

Re: Need Help

2004-04-30 Thread John R Meloro
Try http://127.0.0.1:8080/axis/services - Original Message - From: mico [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 30, 2004 9:39 AM Subject: RE: Need Help Ok, I will try to be more specific this time, i think i've followed the instructions but something is wrong

Re: Classpath?

2004-04-07 Thread John R Meloro
I'm not sure if this is the problem; however, I thought that if you used the complete file name for a class then you had to be in the directory above? More specifically, it looks to me like you are attempting to execute the class samples.stock.GetQuote from the C:\axis-1_1\samples\stock