473,378 Members | 1,134 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Are there any issues with ASP and proxy servers?

Hello there,

I am unsure as to where to ask for help about this, so I thought I might try
here.

Our website works correctly for 99.9% of customers, however we have one set
of customers who access our website from what appears to be a proxy server
of some kind. i.e. The IP address is always the same no matter where the
location of the computer is.

My site is a framed site, and the specific problem is that a list of links
in one frame will not load a page on another frame. I don't believe this is
a browser compatibily problem. (I wont rule it out though). But there are no
problems as far as I can tell on other peoples computers.

My question is....Is there anything special that needs to be done to make
sure a site works through proxy servers, or is this likly to be some other
problem such as an SSL problem (the whole site is under ssl), browser
incompatibility problem, or just downright dodgy programing on my behalf?

Thank you so much for any help or ideas on where to start with this problem.
Kind regards
John Sheppard
Jul 22 '05 #1
6 1706
ASP has no knowledge of framesets, it just returns a single page. The
browser controls which frame it is displayed in. Sounds like a client-side
problem. How are the links in one frame used to load another frame? Show an
example. What error do you get?

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"John Sheppard" <ma*************@dontspambosomofo.com.au> wrote in message
news:41********@duster.adelaide.on.net...
Hello there,

I am unsure as to where to ask for help about this, so I thought I might
try
here.

Our website works correctly for 99.9% of customers, however we have one
set
of customers who access our website from what appears to be a proxy server
of some kind. i.e. The IP address is always the same no matter where the
location of the computer is.

My site is a framed site, and the specific problem is that a list of links
in one frame will not load a page on another frame. I don't believe this
is
a browser compatibily problem. (I wont rule it out though). But there are
no
problems as far as I can tell on other peoples computers.

My question is....Is there anything special that needs to be done to make
sure a site works through proxy servers, or is this likly to be some other
problem such as an SSL problem (the whole site is under ssl), browser
incompatibility problem, or just downright dodgy programing on my behalf?

Thank you so much for any help or ideas on where to start with this
problem.
Kind regards
John Sheppard

Jul 22 '05 #2
On Tue, 30 Nov 2004 15:48:30 +1000, "John Sheppard"
<ma*************@dontspambosomofo.com.au> wrote:
I am unsure as to where to ask for help about this, so I thought I might try
here.

Our website works correctly for 99.9% of customers, however we have one set
of customers who access our website from what appears to be a proxy server
of some kind. i.e. The IP address is always the same no matter where the
location of the computer is.

My site is a framed site, and the specific problem is that a list of links
in one frame will not load a page on another frame. I don't believe this is
a browser compatibily problem. (I wont rule it out though). But there are no
problems as far as I can tell on other peoples computers.

My question is....Is there anything special that needs to be done to make
sure a site works through proxy servers, or is this likly to be some other
problem such as an SSL problem (the whole site is under ssl), browser
incompatibility problem, or just downright dodgy programing on my behalf?


ASP doesn't know about the path taken to a remote system, or anything
in between. Proxies have no effect on ASP per se, but there are any
number of things that could be causing your issues. Have the client
test outside thier proxy to eliminate it from the mix.

Jeff
Jul 22 '05 #3
The website is www.boso.com.au if you log in with postcode 4170 you can get
in. The problem is with the links down the left side which are a javascript
dhtml menu. I have experimented with removing the dhtml and putting just
plain links but the problem is still the same.

This is heading away from an asp problem but here is the javascript used to
redirect the page.
parent.main.document.location = "./displayCategoryList.asp?listingGroupId="
+ listingGroupId + "&categoryId=" + categoryId + "&browseOption=" +
parent.data.browseOptions + "&cardFileId=" + parent.data.trolley.cardFileId

The main reason I ruled out any of that as the problem was because a
standard link wasn't working either. I figured perhaps it was something to
do with the target asp page. I have a logging function that fires first
thing on the target asp page, and it is not firing. Is it possible that
their proxy server has some kind of ban on that page?

If thats not a possibility I think I should go back and start trouble
shooting from scratch to make sure I havnt made a mistake.

Thanks heaps for your ideas
John

"Mark Schupp" <no******@email.net> wrote in message
news:OK**************@tk2msftngp13.phx.gbl...
ASP has no knowledge of framesets, it just returns a single page. The
browser controls which frame it is displayed in. Sounds like a client-side
problem. How are the links in one frame used to load another frame? Show an example. What error do you get?

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"John Sheppard" <ma*************@dontspambosomofo.com.au> wrote in message
news:41********@duster.adelaide.on.net...
Hello there,

I am unsure as to where to ask for help about this, so I thought I might
try
here.

Our website works correctly for 99.9% of customers, however we have one
set
of customers who access our website from what appears to be a proxy server of some kind. i.e. The IP address is always the same no matter where the
location of the computer is.

My site is a framed site, and the specific problem is that a list of links in one frame will not load a page on another frame. I don't believe this
is
a browser compatibily problem. (I wont rule it out though). But there are no
problems as far as I can tell on other peoples computers.

My question is....Is there anything special that needs to be done to make sure a site works through proxy servers, or is this likly to be some other problem such as an SSL problem (the whole site is under ssl), browser
incompatibility problem, or just downright dodgy programing on my behalf?
Thank you so much for any help or ideas on where to start with this
problem.
Kind regards
John Sheppard


Jul 22 '05 #4

"Jeff Cochran" <je*********@zina.com> wrote in message
news:41****************@msnews.microsoft.com...
On Tue, 30 Nov 2004 15:48:30 +1000, "John Sheppard"
<ma*************@dontspambosomofo.com.au> wrote:
I am unsure as to where to ask for help about this, so I thought I might tryhere.

Our website works correctly for 99.9% of customers, however we have one setof customers who access our website from what appears to be a proxy serverof some kind. i.e. The IP address is always the same no matter where the
location of the computer is.

My site is a framed site, and the specific problem is that a list of linksin one frame will not load a page on another frame. I don't believe this isa browser compatibily problem. (I wont rule it out though). But there are noproblems as far as I can tell on other peoples computers.

My question is....Is there anything special that needs to be done to make
sure a site works through proxy servers, or is this likly to be some otherproblem such as an SSL problem (the whole site is under ssl), browser
incompatibility problem, or just downright dodgy programing on my behalf?


ASP doesn't know about the path taken to a remote system, or anything
in between. Proxies have no effect on ASP per se, but there are any
number of things that could be causing your issues. Have the client
test outside thier proxy to eliminate it from the mix.

Jeff


Thanks Jeff, I will try that and see if that solves the problem.

Other than basic coding problems. Would you be able to list other things
that might be causing the issue?
For example could it be SSL or could it be my web provider not liking my
clients computers or something like that?

Thank you
John

Jul 22 '05 #5
Give the user a url to call the ASP page that is not showing directly. That
should tell you if it is something with that page or with the javascript
menu.

I have seen proxy servers do some wierd things like truncating the page
before the <body> tag (keeps onload event from firing) and adding popup
blocking code.

If the page displays when called directly then have one of the users
right-click on the menu frame, select view source, and send it to you so
that you can see if it is different than what other users get.

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"John Sheppard" <ma*************@dontspambosomofo.com.au> wrote in message
news:41******@duster.adelaide.on.net...
The website is www.boso.com.au if you log in with postcode 4170 you can
get
in. The problem is with the links down the left side which are a
javascript
dhtml menu. I have experimented with removing the dhtml and putting just
plain links but the problem is still the same.

This is heading away from an asp problem but here is the javascript used
to
redirect the page.
parent.main.document.location =
"./displayCategoryList.asp?listingGroupId="
+ listingGroupId + "&categoryId=" + categoryId + "&browseOption=" +
parent.data.browseOptions + "&cardFileId=" +
parent.data.trolley.cardFileId

The main reason I ruled out any of that as the problem was because a
standard link wasn't working either. I figured perhaps it was something to
do with the target asp page. I have a logging function that fires first
thing on the target asp page, and it is not firing. Is it possible that
their proxy server has some kind of ban on that page?

If thats not a possibility I think I should go back and start trouble
shooting from scratch to make sure I havnt made a mistake.

Thanks heaps for your ideas
John

"Mark Schupp" <no******@email.net> wrote in message
news:OK**************@tk2msftngp13.phx.gbl...
ASP has no knowledge of framesets, it just returns a single page. The
browser controls which frame it is displayed in. Sounds like a
client-side
problem. How are the links in one frame used to load another frame? Show

an
example. What error do you get?

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"John Sheppard" <ma*************@dontspambosomofo.com.au> wrote in
message
news:41********@duster.adelaide.on.net...
> Hello there,
>
> I am unsure as to where to ask for help about this, so I thought I
> might
> try
> here.
>
> Our website works correctly for 99.9% of customers, however we have one
> set
> of customers who access our website from what appears to be a proxy server > of some kind. i.e. The IP address is always the same no matter where
> the
> location of the computer is.
>
> My site is a framed site, and the specific problem is that a list of links > in one frame will not load a page on another frame. I don't believe
> this
> is
> a browser compatibily problem. (I wont rule it out though). But there are > no
> problems as far as I can tell on other peoples computers.
>
> My question is....Is there anything special that needs to be done to make > sure a site works through proxy servers, or is this likly to be some other > problem such as an SSL problem (the whole site is under ssl), browser
> incompatibility problem, or just downright dodgy programing on my behalf? >
> Thank you so much for any help or ideas on where to start with this
> problem.
> Kind regards
> John Sheppard
>
>



Jul 22 '05 #6
Thanks mark...
I have narrowed it down to some javascript problem I think. Im still not
100% sure yet though.
There are some linked javascript pages on the page, which might be causing
problems. Weather that has anything to do with the proxy server im not sure.
Since this is an asp group I'll leave it at that for now though.

Thank you very much for your help and advice.
It's much appreciated.
John

"Mark Schupp" <no******@email.net> wrote in message
news:#H**************@TK2MSFTNGP10.phx.gbl...
Give the user a url to call the ASP page that is not showing directly. That should tell you if it is something with that page or with the javascript
menu.

I have seen proxy servers do some wierd things like truncating the page
before the <body> tag (keeps onload event from firing) and adding popup
blocking code.

If the page displays when called directly then have one of the users
right-click on the menu frame, select view source, and send it to you so
that you can see if it is different than what other users get.

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"John Sheppard" <ma*************@dontspambosomofo.com.au> wrote in message
news:41******@duster.adelaide.on.net...
The website is www.boso.com.au if you log in with postcode 4170 you can
get
in. The problem is with the links down the left side which are a
javascript
dhtml menu. I have experimented with removing the dhtml and putting just
plain links but the problem is still the same.

This is heading away from an asp problem but here is the javascript used
to
redirect the page.
parent.main.document.location =
"./displayCategoryList.asp?listingGroupId="
+ listingGroupId + "&categoryId=" + categoryId + "&browseOption=" +
parent.data.browseOptions + "&cardFileId=" +
parent.data.trolley.cardFileId

The main reason I ruled out any of that as the problem was because a
standard link wasn't working either. I figured perhaps it was something to do with the target asp page. I have a logging function that fires first
thing on the target asp page, and it is not firing. Is it possible that
their proxy server has some kind of ban on that page?

If thats not a possibility I think I should go back and start trouble
shooting from scratch to make sure I havnt made a mistake.

Thanks heaps for your ideas
John

"Mark Schupp" <no******@email.net> wrote in message
news:OK**************@tk2msftngp13.phx.gbl...
ASP has no knowledge of framesets, it just returns a single page. The
browser controls which frame it is displayed in. Sounds like a
client-side
problem. How are the links in one frame used to load another frame? Show
an
example. What error do you get?

--
--Mark Schupp
Head of Development
Integrity eLearning
www.ielearning.com

"John Sheppard" <ma*************@dontspambosomofo.com.au> wrote in
message
news:41********@duster.adelaide.on.net...
> Hello there,
>
> I am unsure as to where to ask for help about this, so I thought I
> might
> try
> here.
>
> Our website works correctly for 99.9% of customers, however we have

one > set
> of customers who access our website from what appears to be a proxy

server
> of some kind. i.e. The IP address is always the same no matter where
> the
> location of the computer is.
>
> My site is a framed site, and the specific problem is that a list of

links
> in one frame will not load a page on another frame. I don't believe
> this
> is
> a browser compatibily problem. (I wont rule it out though). But there

are
> no
> problems as far as I can tell on other peoples computers.
>
> My question is....Is there anything special that needs to be done to

make
> sure a site works through proxy servers, or is this likly to be some

other
> problem such as an SSL problem (the whole site is under ssl), browser
> incompatibility problem, or just downright dodgy programing on my

behalf?
>
> Thank you so much for any help or ideas on where to start with this
> problem.
> Kind regards
> John Sheppard
>
>



Jul 22 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Yang Li Ke | last post by:
Hi guys, What's a good way to detect if an ip is a proxy ? Thanx ! :) -- Yang
1
by: yabba | last post by:
can a proxy connection be detected when someone is connecting to our web server using a proxy? tia
4
by: WATYF1 | last post by:
Hello. I'm writing a VB.NET app to check email message counts for both POP3 and IMAP4. I'm using TCPClient to connect, and a NetworkStream to send simple commands. It's a very simple bit of code,...
0
by: Steve Podradchik | last post by:
Hi, We have a commercial app that downloads data from various Web pages (not via a Web Service, per se) and parses the data from the response. The code below works fine most of the time but, in...
13
by: ShadowOfTheBeast | last post by:
Hi All, i have just written my first Webservice and client(windows form) but when i try to get a web references to the client to generate the proxy class on the client, i get an error this...
10
by: Jim | last post by:
I have seen http://www.vbdotnetheaven.com/Code/Aug2003/2146.asp - but it does not work. I need a working example....if anyone has seen one. Jim
4
by: Sharon | last post by:
Hi all, Can any one explain the relationship between real & transparent proxy? I couldn't fully understand it from the explanation at MSDN. Thanks, Sharon.
2
by: Mufasa | last post by:
Does anybody have any code that will handle proxy servers? Specifically I need something that will handle all the assorted options - no proxy, static proxy, dynamic proxy by a script. TIA - Jeff.
1
by: =?Utf-8?B?Z2FsbGFu?= | last post by:
We have an application that is running fine on several of our customer’s servers. However, one of our customers is having a problem running the application. The application works on one of his...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.