High and Low Level Api

2001-10-05 Thread Bineet Basant
hello, can anyone tell what is High level api and Low level api in soap. regards bineet --- Information transmitted by this E-MAIL is proprietary to Wipro and/or its Customers

secure method calling

2001-10-05 Thread Oleg Timofeyev
Hello, I am trying to setup services that will take into consideration security, will not let just anyone call methods on the server. What is the best way to do it? Would it be taking in username/password and sending back a cookie or .. ? Could you please help me out with this, any articles or

RE: High and Low Level Api

2001-10-05 Thread Jean-Louis Vila
Hi, SOAP is an XML RPC protocol. So, you have the schema of SOAP message and you can use XML parser to send, receive and analyse SOAP message, wich is boring !! All SOAP actors (MS, IBM) make severals API to help developpers. In general you find 2 level API: Low: You'll find methods

Re: MS-SOAP with SSL

2001-10-05 Thread Hartmut Bernecker
Hello, I seem to have the same problem, but no answer. Is there anybody who has made work such a constellation? Hartmut Putti Tang. wrote: Hello, I have set up SSL on my IIS but I can't use SOAPClient to connect to WSDL via https. It shows me the error about Security. Have anyone

Re: High and Low Level Api

2001-10-05 Thread Bineet Basant
hi, thanxs a lot jean that was really very informative. regards bineet - Original Message - From: Jean-Louis Vila To: [EMAIL PROTECTED] Sent: Friday, October 05, 2001 1:20 PM Subject: RE: High and Low Level Api Hi, SOAP is an XML RPC protocol.

unsubscribe me

2001-10-05 Thread Chris Seldon
Please, unsubscribe me.

Weblogic6.1 and SOAP

2001-10-05 Thread Amila Norbert
Hi, I have successfully deployed my User stuff in weblogic6.1 as can be seen from the http://localhost:7001/soap/admin/index.html .However when I to test running my test program I get the below given error. Generated fault: Fault Code = SOAP-ENV:Client Fault String = Deployment error in

RE: SOAP..I want more

2001-10-05 Thread Francis Ho
At this point, it is basically up to you: how you write and configure your services. sometime in the future, I can envision a more advanced SOAP service container that does things like activation and passivation. francis -Original Message- From: Gaurav [mailto:[EMAIL PROTECTED]]

RE: Weblogic6.1 and SOAP

2001-10-05 Thread Dahnke, Eric
I went through similar setups yesterday, and everything worked great once I have all the appropriate jars and classes in my classpath. It appears that if you change your classpath environment variable, you should stop and start tomcat too. -Original Message- From: Amila Norbert

RE: Weblogic6.1 and SOAP

2001-10-05 Thread Amila Norbert
Thanks Eric. The problem I am having with Weblogic ont with tomcat. I got everyting to work on tomcat. I have my cliet and server classes in jar files and have palced them in the corresponding lib directories as well. Is there any weblogic configurations I have missed here? Amila.

WSDL Problem

2001-10-05 Thread keith.watt
Hi I have created a java class which has one method square taking a double and returning a double. I have deployed this class to SOAP. I have genereated WSDL via IBM wstk tool. I am using WSIF to try and dynamically read the WSDL and invoke the method, but I cant seem to call it without

RE: WSDL Problem

2001-10-05 Thread Neil Smyth
I've had the same problem when using the wsdl4j toolkit. If you step through the Definition returned from the wsdl4j toolkit, you'll find that it doesn't find the referenced binding node - because it is looking in a different namespace. I've found this problem with a good subset of the wsdl files

Parsing the S:Body XML within a SOAP request.

2001-10-05 Thread Dahnke, Eric
Hello when going through ../soap-2_2/samples/messaging/POProcessor package samples.messaging; import java.io.*; import org.apache.soap.*; import org.apache.soap.rpc.SOAPContext; import javax.mail.MessagingException; public class POProcessor { public void purchaseOrder (Envelope env,

ms soap -- apache soap

2001-10-05 Thread Bono, Chris
We have been running an java apache soap client to a java apache soap server successfully since it was owned by IBM. :-) Well know we have a client that is a C++ shop and I have to write a C++ soap client. Well, not write one, but use one. I have chosen the MS Soap Toolkit. Without getting

RE: Help with parameters in Apache SOAP client and .NET SOAP service

2001-10-05 Thread Steve Stacey
Title: RE: Help with parameters in Apache SOAP client and .NET SOAP service I have a java SOAP 2.2 client talking to a .Net service. I did not have any problems with the Request, but the Response was a pain. After the .Net Service identified the response with a String attribute and I used the

RE: ms soap -- apache soap

2001-10-05 Thread Hansen, Richard
Here is a vb snippet that did it for me. I suppose the same set of calls should work the same in C++. Serializer.startElement string1 Serializer.SoapAttribute type, , xsd:string, xsi Serializer.writeString client 1 Serializer.endElement Rick Hansen We have been running an java apache