I created a web service on machine1. Calling the web service using
XMLHTTP. When calling from machine1 WORKS FINE. When calling from any
remote machine fails. Calling a simple.asp page on machine1 from any
machine SUCCEEDS.
Code in client:
...
xmlhttp.open("POST",'/service.asmx/HelloWorld',true); // ('/
simple.asp' succeeds).
xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-
urlencoded");
xmlhttp.send(null);
...
if (xmlhttp.readyState==4)
if (xmlhttp.status==200)
alert("OK");
...
On machine1 anonymous access is allowed with the context of
IUSR_MACHINE1
Thank you
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web
Services,.NET Remoting" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/DotNetDevelopment
You may subscribe to group Feeds using a RSS Feed Reader to stay upto date
using following url
<a href="http://feeds.feedburner.com/DotNetDevelopment">
http://feeds.feedburner.com/DotNetDevelopment</a>
-~----------~----~----~----~------~----~------~--~---