Link to home
Start Free TrialLog in
Avatar of Larry Brister
Larry BristerFlag for United States of America

asked on

HTTP POST URL

I have a web service at http://wcfsendsomedata.mydomain.com/Service.asmx
It has one WebMethod called PostData and only one string is required
    [WebMethod]
    public string PostData(string value)

In SoapUI I can connect to  http://wcfsendsomedata.mydomain.com/Service.asmx?wsdl

Then do a request to PostData and it works

However...
To post directly to that WebMethod
What would the HTTP POST URL be?
ASKER CERTIFIED SOLUTION
Avatar of Kelvin McDaniel
Kelvin McDaniel
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Larry Brister

ASKER

Sorry for the late getback. Thanks!