Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Webservice in PB6.5

Status
Not open for further replies.

TerrenceL

Programmer
Aug 11, 2011
1
HK
Hi all,

I am using PB 6.5 and trying to call Web Service and call the related functions together with some arguments and then return xml file and finally obtain the information inside.

I have found a similar sample from internet but that is for PB 10.5, which is using SoapConnection and Proxy (below is part of extracted scripts):
SoapConnection conn
str_endpoint = conn = create SoapConnection //Instantiated connection
rVal = Conn.CreateInstance(proxy_obj, "HelloServiceExport1_HelloServiceHttpService", str_endpoint)
rtn = proxy_obj2.classname()
messagebox("Current Exchange Rate", "One US Dollar" + " is equal to " + string(amount) + " Japanese Yen")

Would anyone can help to solve my problem in PB 6.5?

Thanks a lot.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top