SV: SOAP between Java and C++

2001-06-06 Thread Patrik Lindefors
Hi David! One of the nice things about SOAP is that it isn't language dependent but that you can write a SOAP client or service in the language of your desire. You would have to have an XML parser though and also one or more Serializers who can understand the SOAP protocol. I think Microsoft

Réf. : Re: Question about Parameters

2001-06-06 Thread manuel . paitreault
Hi Cecile !! (just a question : aren't you french ??) I really thank you for your help !! your proposition works but does it mean that we can't send a call with any types of parameter ?? I am forced to pass only XML elements parameters ?? in fact, I think I don't understand exactly what

RE: Ref. : Soap benchmarking

2001-06-06 Thread Jean-Louis Vila
No of course ... -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Envoyé : mardi 5 juin 2001 15:45 À : [EMAIL PROTECTED] Objet : RE: Ref. : Soap benchmarking Is it re-compiling the JSP page? -Original Message- From: Jean-Louis Vila [mailto:[EMAIL

Re: How can I get the the IP of client from A Soap Service program?

2001-06-06 Thread oh
I checked the archive of this mailing list, and I found nothing. I think it' neccessary for a service bean to get the information in the request. Is there any solution to solve it ? Maybe I have to give up trying with Apache Soap.. Any help will be appreciate. Huimin Wang, Globus,Inc

IIS and Apache SOAP Client

2001-06-06 Thread Colin Saxton
Apache SOAP client does not work on IIS. IIS sends: ... Content-Type:text/xml; charset=utf-8 ... Where as Apache sends ... Content-Type: text/xml; charset=utf-8 ... Notice the extra space after Content-Type:. An Exception is thrown in the SOAP client (GetAddress example) that states the

NullPointerException

2001-06-06 Thread manuel . paitreault
Hi, I'm trying to create a new document from the extraction of an element of an existing Document : public Document Decomposer(Document docXML) { Document XMLElementary=null; NodeList NL= docXML.getElementsByTagName(Word); Node NodeEntity = NL.item(0);

Re: How can I get the the IP of client from A Soap Service program?

2001-06-06 Thread Doug Davis
Don't have time to go into it right now, but try adding a SOAPContext parameter to the start of your parameters on your method - look at the template provider to see what you can pull out of the properties. You can get things like the ServletContext, HTTPRequest object... -Dug oh [EMAIL

Re: How can I get the the IP of client from A Soap Service program?

2001-06-06 Thread oh
Thank you for your response. - Original Message - From: Doug Davis [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 06, 2001 6:26 PM Subject: Re: How can I get the the IP of client from A Soap Service program? Don't have time to go into it right now, but try adding a

RE: VB to Apache SOAP

2001-06-06 Thread Ding, Chengmin
Hi,All, I have tried Richard's VB/Apache(StringService) soap sample and it works well. But I just found out a lot of error messages like the following in the tomcat console. I searched the archive and haven't found a fix for this problem. Has anyone else seen the same errors using the

WSDL

2001-06-06 Thread Daniel Kruler
I am defining string array in WSDL using the following: types xsd:schema targetNamespace=SOAPTester xmlns=http://www.w3.org/2000/10/XMLSchema; complexType name=ArrayOfstring xsd:complexContent

Re: How to use EnvelopeEditors?

2001-06-06 Thread Sanjiva Weerawarana
See the docs: http://xml.apache.org/soap/docs. Click on User's Guide and then on Using Transport Hooks! Boy, it feels good to be able to point to the docs!! Sanjiva. - Original Message - From: Michael Weir (Transform Research) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday,

Class Loading in SOAP/Tomcat

2001-06-06 Thread Javier A. Soltero
Hi All, I have a question regarding how classes which are made available via the soap interface are loaded by Apache Soap when soap runs inside the Tomcat 3.2 container. Essentially, I would like to package my soap server application as a war file which will be deployed into Tomcat. My

Apache SOAP server/MS SOAP client

2001-06-06 Thread Daniel Kruler
When I try to call Apache SOAP server from MS SOAP client (using VB) I get the following error: Application or Object error When I look at webserver console, I see that rpcrouter servlet is called, but my SOAP server never gets instantiated. My SOAP server is deployed correctly and I can call

RE: How to use EnvelopeEditors?

2001-06-06 Thread Michael Weir (Transform Research)
Title: RE: How to use EnvelopeEditors? I don't set out to waste your time! I'm looking at the docs! But, I see that you have to add a value to the configuration file for the RPCRouter, but it doesn't say where that file is. (I'm pretty new to Java, so maybe I'm missing something that I ought

Re: Réf. : Re: Question about Parameters

2001-06-06 Thread Saint-Martin Cecile
Hi Cecile !! (just a question : aren't you french ??) My english is so bad? :) I really thank you for your help !! your proposition works but does it mean that we can't send a call with any types of parameter ?? I am forced to pass only XML elements parameters ?? in fact, I think I

Re: How to use EnvelopeEditors?

2001-06-06 Thread Sanjiva Weerawarana
Sorry, I wasn't implying that you did .. :-). Take a look at the Server Configuration section of the docs- that tells you that init parameters go into the web app config file web.xml found in the WEB-INF directory. The docs could be a bit more explicit :-). If you're deploying with the war file,

How to set output parameters in my server code

2001-06-06 Thread Yong Chen
Title: How to set output parameters in my server code Hi, I am trying to invoke a java method of a java service on server (via .../servlet/rpcrouter to deploy this service, actually just a java class containing that method). My problem is, this method will not only return a value, it will

ConfigManager can not read DeployedServices.ds

2001-06-06 Thread Shinta Tjio
We have an installation where the first few SOAP services were deployed using JDK 1.2.2_05a for Solaris 2.8. Later on, the JVM on that machine is upgraded to JDK 1.2.2_06. I'm finding that the ConfigManager could not read the DeployedServices.ds. This is the exception thrown: java

Re: ConfigManager can not read DeployedServices.ds

2001-06-06 Thread Mike Williams
Shinta, The problem is with serialization. A class that is serialized can only be deserialized with the same version of the JVM. The DeployedServices.ds file is a serialized hash map or maps of DeploymentDescriptors. This is what's causing your problem. You should be able to simply

MS SOAP Client / Apache SOAP server

2001-06-06 Thread Daniel Kruler
Do I need to do something special when calling methods like: int getIntegerValue() in Apache SOAP server from MS SOAP client? What about getStringValue()? MS SOAP client reads WSDL correctly, but when it invokes the method, RPCRouter doesn't instantiate the SOAP server object.