Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Server did not recognize the value of HTTP Header
Message
From
17/11/2008 03:12:31
 
 
To
16/11/2008 23:56:58
General information
Forum:
ASP.NET
Category:
Web Services
Environment versions
Environment:
VB 8.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Application:
Web
Miscellaneous
Thread ID:
01362237
Message ID:
01362252
Views:
9
>Tonight, I converted two in-place compilation Web Services into an application DLL. The project compiles. I sent the DLL into the Bin directory. The directory structure no longer includes an App_Code directory. This has been superceeded by the Bin directory. The ASMX files have been updated. I also restarted IIS. But, I keep getting this:
>
>
>System.Web.Services.Protocols.SoapException: Server did not recognize the value of HTTP Header SOAPAction: http://tempuri.org/WebService/Service1/Dispatch
>
>
>I did a search in my project and I cannot find a reference to tempuri nor to Service1. So, I looked in the server registry and didn't find anything there as well. Anyone would know where that is coming from?

Looks like the original webservice was using the default webservice namespace and class name. Try changing back to these and rebuilding the DLL. E.g:
<System.Web.Services.WebService(Namespace:="http://tempuri.org/")> _
Public Class Service1
    Inherits System.Web.Services.WebService

    ' Methods here
End Class
Or maybe just start with a new webservice file and paste in your methods.......
HTH,
Viv
Previous
Reply
Map
View

Click here to load this message in the networking platform