Please, seriuosly, help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Sorry for the cross post. I really need help. It's over a moth I have this
problem.

I have this problem on all my webservices all of a sudden. When I try to add
any of the web services I created
I get the error in Visual Studio

There was an error downloading 'http://server/webservice.asmx'.

The underlying connection was closed: The server committed an HTTP protocol
violation.


Why? They were all working before. I even tried


<configuration>
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing="true" />
</settings>
</system.net>
</configuration>

But that doesn't work either. Please advice.

Thanks
 
Your machine is attempting to serve up a MIME type it does not understand,
which suggests a metabase corruption.

Try this from a command prompt:

Assuming ASP.NET 1.1
%windir%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis /i

If you are not 1.1 (Visual Studio .NET 2003), find the proper v folder for
your version:

v1.0.3705 = 1.0
v2.0.50727 = 2.0

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top