If it is possible, how can I send an email from my DASP account from within a Web Service method? TIA, Rob
To prevent that from happening, we're planning to use WSE 3.0 to pass username credentials via secure transport layer (SSL). My question is this: Once we add the SSL support add-on and provide a certificate to DASP, will that apply to our web service calls and encrypt communications between the client and server? I'm guessing any communications between the client application and http://myDASPdomain.comwill be secured via SSL? TIA, Rob
You would use the same code inside an aspx page, but place it into a Web Service method. be careful with this though, if a spammer finds your webservice and exploits it to spam we will have to disable your site until it is fixed. Joel Thoms DiscountASP.NET http://www.DiscountASP.NET
If you setup SSL, changing http://yoursite to https://yoursite will enable SSL communication for that page. Since any webservice you create will be on your website, you can use SSL simply by adding 'https://' to your webservice communication. Though your webervice will also be available via 'http', so if you want to disable standard 'http' communication, you will have to detect this in your webservice and throw an error if it is not 'https'. Joel Thoms DiscountASP.NET http://www.DiscountASP.NET