AJAX :: ISA Proxy Server Returning 407 For Request?

Feb 10, 2010

We are using 2 ISA proxy servers in front of our webserver and are getting intermittant Ajax errors in our application.

Our web logs indicate that there are 407 errors occurring during the requests.

When other users hit the webserver directly this issue does not occurr and this is also not an issue in IE8 but is in IE7.

The error dialog has Sys.WebForms.PageRequestManagerParserErrorException and the details say "error parsing near '<!DOCTYPE html P'

View 1 Replies


Similar Messages:

Web Forms :: How To Programmatically Retrieve The Proxy Server To Submit A Web Request

Jan 12, 2010

I am trying to make a web request programmatically. When i submit the request through the browser it seems to work fine but when i programmatically submit the request it comes back with this error message "Unable to connect to the remote server"

Below is the code i am using to executing the command,

[Code]....

[Code]....

I assume the reason why i am getting the error message is because the proxy server has not been set programmatically. Can somebody tell me how i can get the proxy server and set it programmatically?

View 5 Replies

AJAX :: Request.status Is Returning 0 Error?

Jan 8, 2010

The following code is an example for the book Book Ajax Hacks by Bruce W. Perry.

When executed the code works correctly in Internet Explorer 8

However when I run the same code in firefox 3.5.7 when it hits the following line

if (request.status == 200) it returns 0 and I see the

[Code]....

View 3 Replies

How To Identify The Request Comes From A Web Proxy In Mvc

Jan 31, 2011

I want to make a statistical record to identify how many visitors come using web proxies to my asp.net mvc site. How to identify them?

View 1 Replies

Web Forms :: Request.PathInfo Not Returning Any Value

Oct 28, 2010

I'm in .net4/VS2010/C#

In my code behind I would like to use Request.PathInfo in an onItemDataBound Event, but it's not returning anything.

These work: Request.Path, Request.FilePath, Request.RawUrl, etc.

Is there any reason why it wouldn't return anything?

View 2 Replies

GET Request - Not Returning Pages / Implement The Webrequest Get And Post Methods

Jul 19, 2010

I am trying to implement the webrequest get and post methods. I am accessing a secure site that requires login authentication and was told that instead of sending a login request all the time; login to the site and capture the cookie and use this to send it in the header to get results from the page. In other words let us use google for example. Lets say google required u to login before searching for something. Now I login through my browser and leave the site logged in. Now I send a httwebrequest from my program that includes the cookie authentication details in the request header and get results for say ?param=sports. Now when I increment the page number like &page=3, I am still only getting page 1 results.

Here is some code:

[Code]....

Now I am using the request method GET. This is in the actual request header from the original request.

[Code]....

View 1 Replies

WCF / ASMX :: Writing A Web Service To Call The Proxy Server From The IIS Web Server In Vb.net?

Feb 6, 2011

How to write a webservice to call the proxy server through IIS webserver?

View 2 Replies

How To Protect A Web Server Froma Reverse Proxy Server

Oct 10, 2010

I have a website [URL]. Recently I found out that somebody has set up a reverse proxy with an almost identical url "www.website1.com" in front of my website.

I'm concerned of those users who came to my website through that reverse proxy. Their username and passwords might be logged when they login.

Is there a way for me to have my web server refuse reverse proxy?

For example, I've set up a reverse proxy using squid with the url "www.fakestackoverflow.com" in front of "www.stackoverflow.com". So whenever I type "www.fakestackoverflow.com" in my web browser address bar, I'll be redirected to "www.stackoverflow.com" by the reverse proxy. Then I notice the url in my address bar changed to "www.stackoverflow.com" indicating that I'm no longer going through the reverse proxy.

"www.stackoverflow.com" must've detected that I came to the website from another url and then redirected me to the website through the actual url.

View 8 Replies

AJAX :: Get XML Data From Server On Request?

Dec 13, 2010

I am in a situation where I need to get XML string of each product from server side on request, but only those tags that are added to XML at server side after the last client request. How can I determine at server side and return only newly added tags of XML of requested product to client so that only latest and relevant information could be shown at client side. And is there any way to save and keep on updating that XML data retrieved for each product on client side?

View 2 Replies

Ajax - Is It Possible To Use XMLHTTP Request To Bind Server Controls

Jan 22, 2011

i only found websites that uses the XMLHTTP request to call an aspx page or what ever page ( make a request to a page that appears the piece of data in a div or so )but i have a question is it possible to use it to bind asp.net server controls Examples 1- bind a gridview or datalist from this XMLHTTP request 2- after click an edit button in a grid can i use XMLHTTP request to fill some text boxes and dropdowns and other asp.net server controls 3- can i use upload files using XMLHTTP request i want to know if this is possible or not because Ajax and update panels are very slow and affect the server and client performance is there another alternative if my senarios are imposible with XMLHTTP request where can i learn about this alternative if this possible where can i learn more about this XMLHTTP request with asp.net server side controls instead of ajax and updatepanel

View 1 Replies

AJAX :: Request Doesn't Go To Server When Button Click?

Mar 31, 2010

[Code]....

from above code i use UpdatePanel but when i am click on Button the request doesn't goto server but i want to send request to server.. how can i do that

View 9 Replies

Ajax Request To SQL Server Opens Too Many Pooled Connections?

Aug 27, 2010

I'm implementing a Google like search box in my asp.net application. Each keypress in the box sends an Ajax request to IIS webmethod that queries the txt and return matches - works pretty cool. However, on loading up activity (e.g. 300 users), I'm getting errors that my 100 Pooled connections are used up. Now I'm rethinking that perhaps opening/closing a db connection on each keystroke may be too much. How would one architect this differently, or insure that the connections are reclaimed really fast. I'm have the 'using' construct for connections to insure it is closed. The concern is GC may not be reclaiming them fast enough?

How would google handle such a large open/close cycle.

View 2 Replies

C# Webclient - Accessing Web Through Proxy Server?

Apr 21, 2010

I am currently using C# and the webClient class to downloading and uploading images, data, see code below

[code]....

This works fine for a direct internet connection, but fails through a proxy server.

And giving the error "The remote server returned an error: (407) Proxy Authentication Required."

I have tried using the default credentials in the credentials property

[code]....

View 2 Replies

Web Forms :: IE 7 With Webforms And Proxy Server?

Sep 8, 2010

I have started having problems with our asp.net webform applications running behind a proxy since the user base have upgraded to IE7. Some postbacks seem to drop out and at times it is difficult to make controls on a page raise an event. It appears to be intermittant and I have been told there are issues around using IE7 behind a proxy with post requests. Is this the case and what are the options? Rewite in MVC? Does the issue of post requests behind a proxy remain in IE8?

View 3 Replies

AJAX :: Is It Possible To Make Request And Simulate The Server Response In The Code Behind

Mar 4, 2010

i'm just getting started with asp.net and ajax. My question is : is it possible to make an ajax request and simulate the server response in the code behind. in other words can the request be sent to the code behind of the same page? if it's possible haw can i perform this ?

View 2 Replies

AJAX :: Error: Sys.WebForms.PageRequestManagerTimeoutException: The Server Request Timed Out?

Feb 17, 2010

I am getting this ajax timeout error.I am using updatepanel and update progress. Locally am not getting this error but after hosting this error is coming and the page is not navigating to the next page to show the result.

I tried most of the solutions eplained like below,

http://forums.asp.net/p/1042916/2700600.aspx#2700600

http://forums.asp.net/p/1042916/3582830.aspx#3582830

http://forums.asp.net/p/1189929/2040856.aspx#2040856

http://forums.asp.net/p/1355876/2781123.aspx#2781123

View 4 Replies

IIS Configuration :: Web Browser Can Be Named As Proxy Server

May 16, 2013

In an article I have read "A web browser can be named as proxy server. As safari, chrome, mozilla".But proxy server is like a an intermediatary btween the clent and server know?

What is actually the difference between the two?

View 1 Replies

AJAX :: Updatepanel Stops Working Under Proxy And It Happens Only In IE

Mar 13, 2011

We have an updatepanel in our site and there are a number of linkbuttons in it. Please note that the site works fine in all browsers without proxy the proxy changes the url from for instance [URL] to 0-[URL] it also works fine in all browsers but IE the issue is that under proxy and in IE8, it gives an error when clicking one of the linkbuttons, the error message is "Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; Tablet PC 2.0; InfoPath.1; .NET4.0C; .NET4.0E) Timestamp: Sun, 13 Mar 2011 20:38:58 UTC

Message: Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules, or server trace is enabled. Details: Error parsing near ' <!DOCTYPE html PUB'.

Line: 4674
Char: 21
Code: 0"

I have no idea what goes wrong here, it seems that IE can't parse the response?

View 5 Replies

C# - How To Make AJAX Request To The Server Without Getting Response With The Information For All The Update Panels

Jan 12, 2010

For example, I have three UpdatePanels on the page. I click a button, and I get pretty long response, that contains all the data for the three UpdatePanels, the viewstate string.

I want to optimize my query and receive response like "ok" or "not ok". How can I do that?

View 1 Replies

Configuration :: Web Application Under Proxy Server - Relative URLs?

Jun 23, 2010

our web application should be hosted under proxy server, for that we had to change our URL to be relative.

we changed all the url's but then we saw that web resources that are embeded in the .net dll's are being written to the page with absolute path, start with "/" for example:

[Code]....

how can we change it? how can we set the web resource to be relative like this "../webresource.axd"

View 3 Replies

DataSource Controls :: Sql Server Agent Proxy Account?

May 4, 2010

Well I would like to get understanding on sql server security. how to map windows user eg:'srm123' to sql server agent so that user when logins in sql server can also work with sql server agent.bydefault u can not see sql server aqent icon in ssms in userlogin.what is a role of a proxy and credentials how to map them with windows user to workwith jobs and alerts.

View 1 Replies

WebMatrix :: Deploying To Msdeploy Does Not Support A Proxy Server?

Aug 18, 2010

I am trying to deploy through webmatrix but my system Proxy server configuration is not being used. I assume that webmatrix would detect the proxy server settings and use that for the msdeploy calls under the hood. Can anyone confirm this is a know issue?

View 1 Replies

C# - Why Is The Call To Request.QueryString["ReturnUrl"] Returning NULL

Jan 29, 2010

(This is a more narrow question)

In my asp.net MVC action, I am looking if the ReturnUrl value is in the URL.

My Url looks like this:

[URL]

In my action, I am looking if that querystring value exists, and it is returning NULL?? How can this be?

The code:

if(Request.QueryString["ReturnUrl"] != null)
{
}

Tracing through the application, it is just skipping the if statement's body i.e. it is NULL.

How can this be explained?

[URL]

View 2 Replies

Security :: Request.ServerVariables["LOGON_USER"] Not Returning Any Value In IIS7

Mar 25, 2010

when i was working with IIS 6.0 and windows 2003 Request.ServerVariables["LOGON_USER"] is giving me the current logged in user id,

but now we have upgraded to IIS 7 and Windows 2008 if i use the same statement it is not returning me any value.

NOTE : i am using vs2005 to write my programs.

View 5 Replies

AJAX :: WebResource Fail To Work Under Reverse Proxy?

Jul 19, 2010

We have an issue when our web application runs under reverse proxy.

The reverse proxy change the URL for the website from for example: "http://TestWebApp/" to: "http://ProxyDomain/Test/" when it runs under reverse proxy which is mapped to "http://TestWebApp/" and rout requests to it.

This raise an issue of root relative paths (paths that start with "/" to be relative to the root of the web application i.e. "/Folder1/Test.aspx"). Generally all paths that need to be rendered to client we use ResolveClientUrl method and all is good.

When using Ajax controls and ScriptManager WebResource.axd paths are rendered in script tags as a relative url paths ("/WebResource.axd?blablabla") because the root under reverse proxy is the proxy domain itself the path is useless - the web resouce is not downloaded and the application break.

To fix this we tried to set a Response.Filter in OnPreRender event handler of our base page. In our custom filter we use Regex to search and replace all "/WebResource.axd" occurences with the resolved to client root path using the ResolveClientUrl method of the page. This works great and the web resources are downloaded to client.

But this is not the end of our troubles.

In Ajax requests the response output is fixed as described but when recieved at the client end it is not valid and the partial update fails with Sys.WebForms.PageRequestManagerParserErrorException.

It fails to parse the response because the rendered response have numbers that states the actual count of bytes per rendered component (which includes the script tags referencing the WebResource.axd). The client reciever validates the recieved response according to the numbers, but, our filter altered the response so the numbers are not correct and the response validation fails.

We can try and code a smart filter that parse the response and recalculate the numbers according to the ammount of paths fixed, but I hope there is an elegant and better solution for this.

View 3 Replies







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