You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@ws.apache.org by Bineet Basant <bi...@wipro.com> on 2001/10/05 08:42:13 UTC

High and Low Level Api

hello,

can anyone tell what is High level api and Low level api in soap.

regards
bineet

Re: High and Low Level Api

Posted by "Carlos Vinueza M." <ca...@vimeworks.com>.
It's not directly SOAP related, it has relation with the two ways you
could use the MS SOAP Toolkit.
Check the samples.

Regards

Bineet Basant wrote:

> hello, can anyone tell what is High level api and Low level api in
> soap. regardsbineet

--
Carlos Vinueza M.
Director Comercial
VIMEWorks Cia. Ltda.
Construyendo Sueños en Internet
(CEL)  (593)(9)9703-375
(OFIC) (593)(2)2237-784 / (593)(2)2903-925


Re: High and Low Level Api

Posted by "Carlos Vinueza M." <ca...@vimeworks.com>.
It's not directly SOAP related, it has relation with the two ways you
could use the MS SOAP Toolkit.
Check the samples.

Regards

Bineet Basant wrote:

> hello, can anyone tell what is High level api and Low level api in
> soap. regardsbineet

--
Carlos Vinueza M.
Director Comercial
VIMEWorks Cia. Ltda.
Construyendo Sueños en Internet
(CEL)  (593)(9)9703-375
(OFIC) (593)(2)2237-784 / (593)(2)2903-925


Re: High and Low Level Api

Posted by Bineet Basant <bi...@wipro.com>.
hi,

thanxs a lot jean that was really very informative.

regards
bineet
  ----- Original Message ----- 
  From: Jean-Louis Vila 
  To: soap-user@xml.apache.org 
  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

Re: High and Low Level Api

Posted by Bineet Basant <bi...@wipro.com>.
hi,

thanxs a lot jean that was really very informative.

regards
bineet
  ----- Original Message ----- 
  From: Jean-Louis Vila 
  To: soap-user@xml.apache.org 
  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

RE: High and Low Level Api

Posted by Jean-Louis Vila <jl...@cosmosbay.com>.
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

RE: High and Low Level Api

Posted by Jean-Louis Vila <jl...@cosmosbay.com>.
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