0

i wanna consume a php web service with asp.net but web service requires post data. So add reference tab is not working for me? is there any solution to that problem.

thanks

duzenz
  • 331
  • 1
  • 4
  • 9
  • Do you have any more information on the PHP service? "Web service" isn't very specific. What are the requirements to integrate with that service? – David Dec 28 '11 at 15:54
  • i have a web service than i post an xml to this service it returns me an another xml. soap, and xml-rpc request could be send – duzenz Dec 28 '11 at 15:55

1 Answers1

1

If your php service has a WSDL, you can use that to consume the service in .Net, otherwise you need to generate your soap messages manually - see Building SOAP message with XMLDocument VB.NET for an example

Community
  • 1
  • 1
Aerik
  • 2,307
  • 1
  • 27
  • 39