I have a web service that I'm trying to consume from a console app through http post. I receive a 500 exception error from the xmlstring parm being passed to the web service. Can someone please help?
Add the following to web.config of the web service. Although it is not working in debug in vs 2008 as well. <webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
<add name="HttpSoap"/>
<add name="Documentation"/>
<add name="HttpPostLocalhost"/>
</protocols>
</webServices> The web service is not executing any logic:Imports System.Web
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.Security.Cryptography
Imports System.IO
Imports System.Text
Imports System.Xml
Imports System.Linq
Imports System.Xml.Linq
Imports System.Xml.XPath.Extensions
Imports System.Data
Imports System.Collections
Imports System.Collections.Generic
Imports System.Diagnostics
Imports System.Net
Imports System.Diagnostics.Process
Imports System.Runtime.InteropServices
' To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
' <System.Web.Script.Services.ScriptServi
View Complete Post