473,396 Members | 1,998 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,396 software developers and data experts.

ASP .NET Redirect Question.

MN
Hello all -

I'm hoping someone will be able to share their knowledge with me about this
issue I'm having because I have run out of answers. Here's the scenario....

I have a .aspx page that basically makes a call to a WSDL which returns a
RedirectURL that I need to navigate to to verify if I'm authorized to proceed
into an application. The moment I redirect to that login page and attempt to
login, it is detecting my original destination which I'm supposed to be
redirected back to but am only at a white page from their side.

I'm wondering that if I want it to return to my side that i have to interact
with it from a web service rather than a .aspx page. Has anybody ever
experienced this before? I'm thinking that since I'm running this locally,
it might not know how to return to my local and needs a defined IP address.

Any help is appreciated.
MN
Nov 19 '05 #1
5 1214
MN:

I'm having trouble following the flow of events, apologies.

Are you trying to browse a WSDL document with the browser and being
redirected? Or are you trying to call a web service from your asp.net
app? Where does the white page come from?

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Wed, 15 Dec 2004 09:41:02 -0800, "MN"
<MN@discussions.microsoft.com> wrote:
Hello all -

I'm hoping someone will be able to share their knowledge with me about this
issue I'm having because I have run out of answers. Here's the scenario....

I have a .aspx page that basically makes a call to a WSDL which returns a
RedirectURL that I need to navigate to to verify if I'm authorized to proceed
into an application. The moment I redirect to that login page and attempt to
login, it is detecting my original destination which I'm supposed to be
redirected back to but am only at a white page from their side.

I'm wondering that if I want it to return to my side that i have to interact
with it from a web service rather than a .aspx page. Has anybody ever
experienced this before? I'm thinking that since I'm running this locally,
it might not know how to return to my local and needs a defined IP address.

Any help is appreciated.
MN


Nov 19 '05 #2
MN
Hi Scott,

Thanks for responding. As for the flow of events, no worries. Here's what
happening. I'll try to be more detailed.

I have an .aspx page which in the Page_Load event I am initially making a
call to a WSDL file which, given the proper parameters passed in, returns to
me a RedirectURL parameter (basically a direct path to a login page with a
querystring parameter). The moment I receive this parameter in code, I do a
response.redirect to that URL. Once I provide the username and password
within the page, the processing page behind it is supposed to capture the
page that I'm coming from and redirect me back with a unique ID attached in
the querystring that will determine if the userID is authorized to proceed.
Instead, once I click "Login", I'm sent to a blank white page.

What I'm wondering is that since I'm running this on my local workstation if
it needs a dedicated IP address, if my local workstation isn't sufficient.
Just wondering if you experienced this behavior before. It's with a client
"over the pond" so many things are different (no .asmx files, etc.) I should
be able to test this on my local workstation, right?

Hope this colors a better picture.

Any help is appreciated,
MN

"Scott Allen" wrote:
MN:

I'm having trouble following the flow of events, apologies.

Are you trying to browse a WSDL document with the browser and being
redirected? Or are you trying to call a web service from your asp.net
app? Where does the white page come from?

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Wed, 15 Dec 2004 09:41:02 -0800, "MN"
<MN@discussions.microsoft.com> wrote:
Hello all -

I'm hoping someone will be able to share their knowledge with me about this
issue I'm having because I have run out of answers. Here's the scenario....

I have a .aspx page that basically makes a call to a WSDL which returns a
RedirectURL that I need to navigate to to verify if I'm authorized to proceed
into an application. The moment I redirect to that login page and attempt to
login, it is detecting my original destination which I'm supposed to be
redirected back to but am only at a white page from their side.

I'm wondering that if I want it to return to my side that i have to interact
with it from a web service rather than a .aspx page. Has anybody ever
experienced this before? I'm thinking that since I'm running this locally,
it might not know how to return to my local and needs a defined IP address.

Any help is appreciated.
MN


Nov 19 '05 #3
Yes, I think you'd be able to get this to work on your local machine.

What should the white screen display? Usually web services don't have
anything to 'display' really, you invoke them programatically.

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Wed, 15 Dec 2004 11:21:01 -0800, "MN"
<MN@discussions.microsoft.com> wrote:
Hi Scott,

Thanks for responding. As for the flow of events, no worries. Here's what
happening. I'll try to be more detailed.

I have an .aspx page which in the Page_Load event I am initially making a
call to a WSDL file which, given the proper parameters passed in, returns to
me a RedirectURL parameter (basically a direct path to a login page with a
querystring parameter). The moment I receive this parameter in code, I do a
response.redirect to that URL. Once I provide the username and password
within the page, the processing page behind it is supposed to capture the
page that I'm coming from and redirect me back with a unique ID attached in
the querystring that will determine if the userID is authorized to proceed.
Instead, once I click "Login", I'm sent to a blank white page.

What I'm wondering is that since I'm running this on my local workstation if
it needs a dedicated IP address, if my local workstation isn't sufficient.
Just wondering if you experienced this behavior before. It's with a client
"over the pond" so many things are different (no .asmx files, etc.) I should
be able to test this on my local workstation, right?

Hope this colors a better picture.

Any help is appreciated,
MN

"Scott Allen" wrote:
MN:

I'm having trouble following the flow of events, apologies.

Are you trying to browse a WSDL document with the browser and being
redirected? Or are you trying to call a web service from your asp.net
app? Where does the white page come from?

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Wed, 15 Dec 2004 09:41:02 -0800, "MN"
<MN@discussions.microsoft.com> wrote:
>Hello all -
>
>I'm hoping someone will be able to share their knowledge with me about this
>issue I'm having because I have run out of answers. Here's the scenario....
>
>I have a .aspx page that basically makes a call to a WSDL which returns a
>RedirectURL that I need to navigate to to verify if I'm authorized to proceed
>into an application. The moment I redirect to that login page and attempt to
>login, it is detecting my original destination which I'm supposed to be
>redirected back to but am only at a white page from their side.
>
>I'm wondering that if I want it to return to my side that i have to interact
>with it from a web service rather than a .aspx page. Has anybody ever
>experienced this before? I'm thinking that since I'm running this locally,
>it might not know how to return to my local and needs a defined IP address.
>
>Any help is appreciated.
>MN



Nov 19 '05 #4
MN
Thanks for your thoughts on the first item.

As for the screen, it actually should redirect back to my calling page and
jump into the Page_Load event again. So all I did was actually interface
with the web service method to get the data I needed (RedirectURL).

But as long as you state I should be able to run this locally from the
description, I'm leaning towards there being an issue on the other side with
returning to my calling page.

Any additional thoughts are appreciated.

Thanks for your time.

MN

"Scott Allen" wrote:
Yes, I think you'd be able to get this to work on your local machine.

What should the white screen display? Usually web services don't have
anything to 'display' really, you invoke them programatically.

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Wed, 15 Dec 2004 11:21:01 -0800, "MN"
<MN@discussions.microsoft.com> wrote:
Hi Scott,

Thanks for responding. As for the flow of events, no worries. Here's what
happening. I'll try to be more detailed.

I have an .aspx page which in the Page_Load event I am initially making a
call to a WSDL file which, given the proper parameters passed in, returns to
me a RedirectURL parameter (basically a direct path to a login page with a
querystring parameter). The moment I receive this parameter in code, I do a
response.redirect to that URL. Once I provide the username and password
within the page, the processing page behind it is supposed to capture the
page that I'm coming from and redirect me back with a unique ID attached in
the querystring that will determine if the userID is authorized to proceed.
Instead, once I click "Login", I'm sent to a blank white page.

What I'm wondering is that since I'm running this on my local workstation if
it needs a dedicated IP address, if my local workstation isn't sufficient.
Just wondering if you experienced this behavior before. It's with a client
"over the pond" so many things are different (no .asmx files, etc.) I should
be able to test this on my local workstation, right?

Hope this colors a better picture.

Any help is appreciated,
MN

"Scott Allen" wrote:
MN:

I'm having trouble following the flow of events, apologies.

Are you trying to browse a WSDL document with the browser and being
redirected? Or are you trying to call a web service from your asp.net
app? Where does the white page come from?

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Wed, 15 Dec 2004 09:41:02 -0800, "MN"
<MN@discussions.microsoft.com> wrote:

>Hello all -
>
>I'm hoping someone will be able to share their knowledge with me about this
>issue I'm having because I have run out of answers. Here's the scenario....
>
>I have a .aspx page that basically makes a call to a WSDL which returns a
>RedirectURL that I need to navigate to to verify if I'm authorized to proceed
>into an application. The moment I redirect to that login page and attempt to
>login, it is detecting my original destination which I'm supposed to be
>redirected back to but am only at a white page from their side.
>
>I'm wondering that if I want it to return to my side that i have to interact
>with it from a web service rather than a .aspx page. Has anybody ever
>experienced this before? I'm thinking that since I'm running this locally,
>it might not know how to return to my local and needs a defined IP address.
>
>Any help is appreciated.
>MN


Nov 19 '05 #5
No problem, if you want to post some code that might help.

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Wed, 15 Dec 2004 13:19:03 -0800, "MN"
<MN@discussions.microsoft.com> wrote:
Thanks for your thoughts on the first item.

As for the screen, it actually should redirect back to my calling page and
jump into the Page_Load event again. So all I did was actually interface
with the web service method to get the data I needed (RedirectURL).

But as long as you state I should be able to run this locally from the
description, I'm leaning towards there being an issue on the other side with
returning to my calling page.

Any additional thoughts are appreciated.

Thanks for your time.

MN

"Scott Allen" wrote:
Yes, I think you'd be able to get this to work on your local machine.

What should the white screen display? Usually web services don't have
anything to 'display' really, you invoke them programatically.

--
Scott
http://www.OdeToCode.com/blogs/scott/
On Wed, 15 Dec 2004 11:21:01 -0800, "MN"
<MN@discussions.microsoft.com> wrote:
>Hi Scott,
>
>Thanks for responding. As for the flow of events, no worries. Here's what
>happening. I'll try to be more detailed.
>
>I have an .aspx page which in the Page_Load event I am initially making a
>call to a WSDL file which, given the proper parameters passed in, returns to
>me a RedirectURL parameter (basically a direct path to a login page with a
>querystring parameter). The moment I receive this parameter in code, I do a
>response.redirect to that URL. Once I provide the username and password
>within the page, the processing page behind it is supposed to capture the
>page that I'm coming from and redirect me back with a unique ID attached in
>the querystring that will determine if the userID is authorized to proceed.
>Instead, once I click "Login", I'm sent to a blank white page.
>
>What I'm wondering is that since I'm running this on my local workstation if
>it needs a dedicated IP address, if my local workstation isn't sufficient.
>Just wondering if you experienced this behavior before. It's with a client
>"over the pond" so many things are different (no .asmx files, etc.) I should
>be able to test this on my local workstation, right?
>
>Hope this colors a better picture.
>
>Any help is appreciated,
>MN
>
>"Scott Allen" wrote:
>
>> MN:
>>
>> I'm having trouble following the flow of events, apologies.
>>
>> Are you trying to browse a WSDL document with the browser and being
>> redirected? Or are you trying to call a web service from your asp.net
>> app? Where does the white page come from?
>>
>> --
>> Scott
>> http://www.OdeToCode.com/blogs/scott/
>>
>> On Wed, 15 Dec 2004 09:41:02 -0800, "MN"
>> <MN@discussions.microsoft.com> wrote:
>>
>> >Hello all -
>> >
>> >I'm hoping someone will be able to share their knowledge with me about this
>> >issue I'm having because I have run out of answers. Here's the scenario....
>> >
>> >I have a .aspx page that basically makes a call to a WSDL which returns a
>> >RedirectURL that I need to navigate to to verify if I'm authorized to proceed
>> >into an application. The moment I redirect to that login page and attempt to
>> >login, it is detecting my original destination which I'm supposed to be
>> >redirected back to but am only at a white page from their side.
>> >
>> >I'm wondering that if I want it to return to my side that i have to interact
>> >with it from a web service rather than a .aspx page. Has anybody ever
>> >experienced this before? I'm thinking that since I'm running this locally,
>> >it might not know how to return to my local and needs a defined IP address.
>> >
>> >Any help is appreciated.
>> >MN
>>
>>



Nov 19 '05 #6

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

Similar topics

5
by: Steve Lutz | last post by:
Hello, I have a page that creates a class, and then on certain conditions, redirects user to another page. The class has a Class_Terminate() function that saves itself to a database. The class...
2
by: Robert Gordon | last post by:
I now realize I probably should have tried posting this on the IIS board first.. I am running OWA 2003 Server as Front End server to my Exchange 2000 native domain. The FE server is secured by...
4
by: JC | last post by:
Hi, I have a simple question regarding the Response.Redirect method. Does the server stop processing the ASP code as soon as it encounters the Redirect command? Or does it ever continue to...
1
by: Peter Kirk | last post by:
Hi there I have a program written by another company (it's a "web control" which returns a web-page: can I compare this to a servlet in the Java world?), which they think is causing problems on...
3
by: Sehboo | last post by:
On my ASP page, when I click a button, I want to do three things: 1. Check for some values. 2. Open a new window and pass some values as query string. 3. Redirect to some other page Here...
7
by: Markus McGee | last post by:
Hi all, I have a quick question...I believe. On my web page, call it page A, I have a drop downlist with runat server enabled. When the drop downlist change event occurs it repopulates a...
2
by: news://news.microsoft.com/microsoft.public.de.germ | last post by:
Hallo! Ich habe ein Frameset mit 3 Frames. Im 1. Frame wird eine ASPX-Seite geöffnet. In dieser werden einige Steuerelemente angezeigt. Nun soll bei bestimmten Benutzeraktivitäten eine andere...
1
by: David | last post by:
I need to redirect to a page and HTTP Post data. The Response.Redirect does not work and the HTTPREQUEST option calls the page and waits for a response, but I need to transfer control to the...
3
by: Alan Silver | last post by:
Hello, Sorry if this is a stupid question, but I can't really see much difference between these tow methods according to the scant info in the SDK. Could anyone enlighten me? TIA -- Alan...
9
by: RN1 | last post by:
When a server encounters the line Response.Redirect("abcd.asp") in a ASP script, the server tells the browser that it has to be redirected to another page (which is abcd.asp, in this case)....
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.