views:

29

answers:

2

I want to read web service data from a website and display it into my website.

i have these data:

  • address: WebService/TsePublic.asmx
  • service name : InstrumentDetailOneIns
  • input parameters :UserName,Password,CIsin

is there any available code for use?

+1  A: 

I see from the tags you are using PHP. The webservice you are talking about is .NET, you could use something similar as: http://randompost.ca/random/php-calling-c-net-webservice/ to get it to work.

Rody van Sambeek
thanks a lot.your guide is very useful.
mohammad mirzadeh
+1  A: 

PHP has a native SoapClient extension. Failing that I would recommend the open-source nuSoap package.

karim79