hi,
 
thanxs a lot jean that was really very informative.
 
regards
bineet
----- Original Message -----
Sent: Friday, October 05, 2001 1:20 PM
Subject: RE: High and Low Level Api

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 like makeHeader(..), makeBody(...)
                --> You have to know the SOAP message structure
    High: You known nothing about SOAP Message but you have
            a WSDL file. In this case, in few lines, you can invoke a service.
                1st line: Get the WSDL description file
                                    MS: mssoapinit(...)
                                    IBM: ServiceProxyFactory.getServiceProxy(service, port, wsdl);
                2nd line: Invoke a method from the previous build proxy
                                    MS: myProxy.getName()                                   
                                    IBM: myProxy.invoke("getName",args);
Hope that helps
Jean-Louis
-----------------------------------------------------------------------------------------------------------------------
Information transmitted by this E-MAIL is proprietary to Wipro and/or its Customers and
is intended for use only by the individual or entity to which it is
addressed, and may contain information that is privileged, confidential or
exempt from disclosure under applicable law. If you are not the intended
recipient or it appears that this mail has been forwarded to you without
proper authority, you are notified that any use or dissemination of this
information in any manner is strictly prohibited. In such cases, please
notify us immediately at mailto:[EMAIL PROTECTED] and delete this mail
from your records.
------------------------------------------------------------------------------------------------------------------------


Reply via email to