Webservice Returns HTTP Error 500 After Deployment?

Nov 2, 2010

I have a webservice (ASMX) which I have tested locally using built-in VS web server. It works fine in the Dev environment, and there was no configuration of anything in IIS for this kind of webservice to work.

Today when I deployed my site on the live server, I got a 500 error when the webservice is being called. The website doesn't work, and unfortunately the client did not test this on staging (same server)

Here's the sample call to my service.

$.ajax({
type: "POST",
url: 'http://www.mydomain.com/services/someservice.asmx/MyMethod',
data: "someid=564",
dataType: "xml",
success: function(msg){
}

In Firebug, http://www.mydomain.com/services/someservice.asmx/MyMethod returns error 500 internal server.

I called the service using jQuery AJAX, the live server is Windows Server 2008 Standard.

View 1 Replies


Similar Messages:

WCF / ASMX :: Webservice In Https Returns Undefined But Works On Http?

Jul 20, 2010

We have a problem regarding webservices when it runs in https. it say's that the service is undefined. BUT when we try it in http it runs okay...

View 1 Replies

Security :: WebService Returns "The Request Failed With HTTP Status 401: Unauthorized"?

Jan 7, 2010

I wrote a web services with Windows authentication, when i consume this WS from my app inside my network all work great, but when I consume this WS outside my network the WS return "The request failed with HTTP status 401: Unauthorized"I'd try the URL in an explorer page and all works great.In my app I use this:

webservice.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;

What alternatively can I use to get credential inside and outside of my net?

View 4 Replies

Custom Error Page For 404 Returns 302 For Http Status

Nov 29, 2010

In my asp.net web site I have custom error pages defined as following in my web.config file.

<customErrors mode="On" defaultRedirect="~/defaulterror.htm" >
<error statusCode="404" redirect="~/404.htm" />

When file is not found it correctly display 404.htm page but the issue is when I do Fiddler trace it returns 302 as HTTP status code.This is a big issue for search engine page indexing due to this lot of broken links still have been indexed recently because of this in my web site. how can I prevent returning 302 as HTTP status code for file not found errors and return 404 for file not found errors.I am using asp.net 3.5.

View 3 Replies

Web Forms :: Invoking A HTTP 202 Error Message Via Webservice?

Sep 22, 2010

I am new to ASP.NET but what i am trying to do is create a webservice (in C#) with a method that basically returns the IIS HTTP 202 Error Code (ACCEPTED) page.Is there any method that would automatically return this? Or would i need to write some sort of code that would cause the error message 202 to display?

View 1 Replies

Security :: HTTP Status 403: Forbidden Error When Trying To Access Webservice?

Feb 10, 2011

I hace created a webservice, that is on one server and then I created a web application on another server to consume that webservice. My web application uses threading. In my web application, I call the webservice and it returns me the response. Then my thread sleeps for 20 minutes and then it again calls webservice, but when i call the webservice second time , it fails. Here is the error and stack trace:-

Stack Trace:- at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
at TransactionExport.LocalWebService.TransactionExportStaging.GetDays(String projCode) in C:inetpubwwwrootTransactionExportWeb ReferencesLocalWebServiceReference.vb:line 102
at TransactionExport.TransactionExport.LoadDays() in C:inetpubwwwrootTransactionExportExport.vb:line 267

View 4 Replies

WCF / ASMX :: Webservice Header / Error Server Did Not Recognize The Value Of HTTP Header SOAPAction?

Oct 30, 2010

I call a webservices from my javascript and im getting response as error.

Server did not recognize the value of HTTP Header SOAPAction:

View 1 Replies

WCF / ASMX :: While Consuming Webservice Getting Error As "The Request Failed With HTTP Status 401: Unauthorized"

Jun 18, 2010

I am trying to consume a webservice. I added the web reference. But when i try to access the method, I am getting the error as:"The request failed with HTTP status 401: Unauthorized."The web service has username as "user1", password as "pass".I tried this:

Service1.TestPrcsService serv = new Service1.TestPrcsService();
serv.PreAuthenticate = true;
serv.Custom_methodname(true);

How to pass the username and password to access the method?

View 2 Replies

Configuration :: HTTP 403 Forbidden On Web App Deployment?

Dec 21, 2010

after deploying my web app to a new server using the add web setup method, I tried to run it from the browser but I am getting the error http 403 forbidden. I tried using previous suggestions to similar questions by checking enable anonymous access, and using https and trying to access a page but did not work.The application runs fine on my machine when running it from visual studio, but fails after running the setup.exe file on the production server.

View 2 Replies

Any Webservice That Returns JSON?

May 11, 2010

Does anyone know of free webservice that returns a list in the form of JSON? I have searched many webservice sites but they all return xml. Geonames.org is not required.

View 3 Replies

WCF / ASMX :: Webservice With Multiple Returns?

Feb 3, 2011

I am working with a .net 2.0 asmx webservice (code below)I need to return 4 "items", which will be based on the success of failure of the webservice, and the actual XML imput itself.The Webservice needs to be asyncronous.I have included the code below, but am happy for someone to re-do it as it's been built up on tutorials and examples.At present, I don't believe the async is working, and the returns don't seem to be getting done.I have also built a test harness, and testing, which allows me to send some custom XML and then receive the response.

[Code]....

Harness:

[Code]....

View 1 Replies

WCF / ASMX :: Webservice Returns Xml As A String?

Nov 22, 2010

i work with visual studio 2005 and asp net 2.0 and i must to create a webservice who returns a xml as a string

this string must be use by an application java as i know ..

ok i can create the asmx and my web method who run a sql command BUT how i can return a xml as a string ?

View 3 Replies

C# - Can Get WCF FaultException When Server Returns An HTTP 401

Jan 11, 2010

I have a WCF based test harness client for a set of web services. The test client allows me to see raw requests and responses going to and from the services. A Message Inspector endpoint behavior is used to "pick off" the raw requests and response messages and save them for later display in the UI.

This works great, except for the use case where invalid credentials are passed. The server returns an HTTP 401 along with a SOAP fault containing details of what happened. This hurts me in a couple ways:

On the client this shows up as a MessageSecurityException not a FaultException, so I can't get the details from the fault. This exception appears to prevent the AfterReceiveReply event handler on my message inspector from firing, so I have no access to the raw response.

Is there any way I can handle this case so that the SOAP fault comes through as a FaultException and allow my message inspector to handle responses regardless of the HTTP status code that is returned?

View 1 Replies

AJAX :: Webservice Returns Wrong Data?

Jun 25, 2010

So I have a WebMethod that I call using jQuery. The method is supposed to return a unique URL to a image file created dynamicly.

The WebMethod is called in a for loop so anywhere from 1 to 50 calls gets fired async.

The problem is that the webservice seems to be using the same instance of the object, so that it returns the same value to a couple of the requests.

[Code]....

Shouldn't the WebMethod create a new instance of the class for each call, so that all values are stored individually in memory?

[Code]....

View 3 Replies

WCF / ASMX :: How To Work With A Webservice Call That Only Returns Xml Nodes

Jul 20, 2010

I'm working with a webservice call after doing

[Code]....

[Code]....

View 1 Replies

WCF / ASMX :: Webservice Returns Object With Date Property?

Jul 28, 2010

Some strange problem have occured while developing application. Some WCF webservice returns object with date property.On client this web service is called using Jquery.ajax.Then result is parsed using json2.For date I simply use following expressions:
var reMsAjax = /^/Date((d|-|.*))[/|\]$/;
a = reMsAjax.exec(value);
if (a)
var b = a[1].split(/[-+,.]/);
return new Date(b[0] ? +b[0] : 0 - +b[1]);
unfortunatelly if browser timezone differs simple new Date with milliseconds not works.Time will be based on timezone.

View 1 Replies

C# - Can Get The Message/response Body In WCF When Server Returns An HTTP 401

Jan 12, 2010

I have a WCF client test harness where I'm using a "client message inspector" endpoint behavior to "pick off" raw requests and response messages going to and from a service and save them for later display in the UI.

This works great, except for the use case where invalid credentials are passed (Basic Authentication). The server returns an HTTP 401 along with a SOAP fault in the body containing details of what happened. I have no control over the service, so this behavior cannot be changed.

Because the HTTP 401 is returned as a WebException, my message inspector never fires and I can't get to the raw response. This exception eventually gets to the UI in the form a MessageSecurityException.

Is there any way to suppress this so the message inspector's AfterReceiveReply still fires? or is there somewhere else I can access the entire raw response?

View 1 Replies

HttpHandlers / Modules :: Securing A HTTP Handler That Returns Xml?

Apr 6, 2010

I have a HTTP handler that returns a GeoRSS feed (type of XML) when called. This handler is called from a javascript and the returning xml is consumed directly by a Virtual Earth (bing) map control on the same page. I am Encrypting/Decrypting URL parameters but any one can see the source html, copy the url and get access to the xml feed.Since the call is from javascript how can I prevent unauthorized access to the HTTP handler?

View 2 Replies

Web Forms :: Redirecting To A Page At Server / Error Is Http 500 Or Http 403

Dec 2, 2010

I am having problem redirecting error when error is http 500 or http 403 locally running this site there is no problem it gets redirected to my errorpage.aspx. But when deployed at server, it does not get .tried putting try and catch in page_load and in global.asax and I have set Application_Error to redirect to that page and also set <customErrors defaultRedirect to that page also

error
statusCode="500"
redirect="/errors/errorpage.aspx?error=500"
/>

View 9 Replies

Trying To Enable A Webservice To Accept HTTP Get?

Mar 8, 2011

I'm trying to enable a webservice to accept HTTPGet. I've done this in the past, but I have a feeling BlogEngine.NET may be interfering somehow. I've added these sections to web.config:

<system.web>
<webServices>
<protocols>
<add name="HttpGet" />
<add name="HttpPost" />
</protocols>
</webServices>

And my method has this signature:

[ScriptMethod(UseHttpGet = true)]
[WebMethod]
public void GetCurrent(string setupType)

Yet when I call the service, I just get the the WSDL description page. I'm trying to binary write a file to track numbers of downloads, so I have a rewrite rule to redirect what looks like a .zip file to my download service. The rewriting works fine as I see the WSDL file, but the method isn't invoked.

View 1 Replies

Web Forms :: How To Give Name Space In URI Instead Of HTTP URL In WebService

Oct 26, 2012

writing name space as URI instead of HTTP URL in WebServie like this [WebService(Namespace = "http://www.samplesite.com/somepath/sth100/Service1.asmx", Name = "STHDBtoXMLWebService")]

<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="soonthyehang.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>

View 1 Replies

Configuration :: Error On Deployment In IIS,No Error In Debuger Mode?

Jan 11, 2011

i am getting error when i publish my ASP .NET Application in IIS (using Sql Server 2008 in Window Autentication mode).There is no problem when i execute this ASP .NET Application in Debuger Mode.

View 11 Replies

AJAX :: Error After Deployment The Web Site In IIS 6?

Nov 13, 2010

I have a website written in ASP.NET (C# framework 2.0) with using AJAX 1.0 and Ajax control toolkit.

It worked cool when I deploy it in IIS 5.1 (Win XP).

But when I deploy it in web server (IIS 6.0, Windows 2003 server 32 bit), I get the following error in Javascript console of Firefox :

Error: h is not a constructor

View 2 Replies

Configuration :: Can Create An Incremental Deployment Package Using Either Visual Studio 2010 Web Deployment Projects

Mar 27, 2011

Can I create an incremental deployment package using either Visual Studio 2010 Web Deployment Projects or Web Deploy (Web Deployment Tool) .

I need to automatically select changed files from a source and destination or a change set on TFS and build a deployment package only with the changed files.

View 9 Replies

Configuration :: Remote Deployment / Giving Error

Oct 20, 2010

i placed ,my asp.net application in FTP server,and database in another remote server using aspnet_reg.sql in command prompt.

here

im getting an error in Roles,i tried executing on the same server with out roles its working properly and retrieving database.

here is my code of web.config file.

<connectionStrings>
<add name="mydata" connectionString="Data Source=192.101.08.2;Initial Catalog=xyz;Persist Security Info=True;User;Password=password1" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<roleManager defaultProvider="AspNetSqlRoleProvider1" enabled="true">
<providers>
<add name="AspNetSqlRoleProvider1" connectionStringName="mydata" applicationName="/"/>
<add name="AspNetWindowsTokenRoleProvider1" connectionStringName="mydata" applicationName="/" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</providers>
</roleManager>
<membership defaultProvider="AspNetSqlMembershipProvider1">
<providers>
<add name="AspNetSqlMembershipProvider1" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="mydata" enablePasswordRetrieval="true" enablePasswordReset="true"
requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Clear" maxInvalidPasswordAttempts="3" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression=""/>
<add name="MyMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="mydata" enablePasswordRetrieval="true" enablePasswordReset="true"
requiresQuestionAndAnswer="false" applicationName="/" requiresUniqueEmail="false" passwordFormat="Clear" maxInvalidPasswordAttempts="3" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression=""/>
</providers>
</membership>

-------------------

Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level. This error can be caused by a virtual directory not being configured as an application in IIS.

Line 41: <system.web>

Line 42:

Line 43: <roleManager defaultProvider="AspNetSqlRoleProvider1" enabled="true">

Line 44:

Line 45: <providers>

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved