Deployed an ASP.NET webforms application to IIS 6.0 64-bit server. Some associated DLLs are only available in 32-bit so I enabled 32-bit applications following these instructions. At first I was not a
Background: I\'m trying to write a simple SoapExtension class to log inbound/outbound Soap messages from an asmx web service. Following this article on msdn, I have been able to get things working. Ho
I have an asmx web service that can be called using either SOAP or JSON. When I throw custom exceptions in a method (for instance for telling user he/she sent an invalid password) they are properly se
I have a web application in ASP.NET 4.0.I\'ve added an asmx service, primarily as a source for the autocomplete extender\'s lookup values.
I have a asp:Textbox with autocomplete, the data comes from a webservice and returns Json data. When a item is selected it puts a value (the id) into a \'hidden\' field and the price into another text
private static string WebServiceCall(string methodName) { WebRequest webRequest = WebRequest.Create(\"http://localhost/AccountSvc/DataInquiry.asmx\");
I have an existing web service (ASMX) which exposes a service FooService with a method called SelectPaged. This method returns a PagedList<FooDTO>. In ASMX this is converted to a PagedListOfFooD
How can I get or create a SOAP Message dynamically if I am able to generate the proxy for the passed service url in c#?
I have a asp.net application connecting to a .net web service, whenever i login & reach the main page, web services returns me back the data.
I have written an ASMX service that looks like thus; namespace AtomicService { [WebService(Namespace = \"http://tempuri.org/\")]