SoapConnection wbsrv_soapconnection
px_passwordserviceport lpo_proxy_obj
long ll_ret=0
TRY
wbsrv_soapconnection = CREATE SoapConnection
//get the proxyobject instance by connecting to webserver using soap createinstance()
ll_ret = wbsrv_soapconnection.Createinstance( lpo_proxy_obj, 'px_passwordserviceport','http://localhost:8080/test/test')
choose case ll_ret
case 100
Messagebox("WebService Proxy Creation Error","Invalid Proxy Name")
case 101
Messagebox("WebService Proxy Creation Error","Failed to create Proxy")
end choose
Catch (SoapException SoapError)
// An error occurred with the SoapConnection object (System Error)
Throw SoapError
Catch(RunTimeError RTError)
// A PowerBuilder Runtime error occurred
Throw RTError
Catch (Throwable GenError)
// An unknown error occurred
Throw GenError
END TRY
Can you put your code here please?