My application is on Powerbuilder 10.5 with .net Engine 2.0
my code :
double StResultat
long param= 20
long ret
SetNull(StResultat)
SoapConnection conn
main proxy //ServiceProxy is a proxy generated by Web service
//wizard
kmehrresponse kr
TRY
conn = CREATE SoapConnection
ret = conn.CreateInstance(proxy, "main")
IF (ret <> 0)then
MessageBox("Fail", "Cannot create proxy "+ "main")
ELSE
kr = proxy.testgettransactionlist(param)
MessageBox("WebService OK ", "Return Double -> '" + string(kr))
END IF
CATCH (SoapException e)
MessageBox("WebService KO SoapException" , "Invoke Service
'testgettransactionlist " + e.text)
END TRY
Error - > The SoapClient doesn't support .NET proxy
Can you help me.?
<Meir Salomon> wrote in message news:4674dee5.6f6...@sybase.com...