I am trying to use a .net webservice in a vb6 app, but without using a control i have to then put on the client machines.
i have tried posting data to the webservice using the inet control but i keep getting a malformed url error, i'm not sure if im even posting to the correct place
Code:wsurl = "http://localhost/Email/Email.asmx/SendEmail" postdata = "isHTML=true&[email protected]&[email protected]&Subject=this is a test email&Body=this is the body of the test email&applicationName=testapp2&emailID=test2" Inet1.Execute wsurl, "POST", postdata




Reply With Quote