RE: Problem redirecting in flowscript

2004-04-19 Thread Joel McConaughy
I bet it uses the http-client library instead.

Joel McConaughy
Managing Partner
Displayware
800 Fifth Ave., #101-316
Seattle, WA 98104-3191
206-300-4732 Direct
206-382-2188 Fax
[EMAIL PROTECTED]


-Original Message-
From: Mark Lundquist [mailto:[EMAIL PROTECTED] 
Sent: Saturday, April 17, 2004 6:18 PM
To: [EMAIL PROTECTED]
Subject: Re: Problem redirecting in flowscript



On Apr 13, 2004, at 11:33 AM, Joel McConaughy wrote:

> Apache commons library does not support cross-host redirects.
> <..snip..>

How come  does not suffer from this?  It'll redirect 
you to anywhere!
- mark

> From: Mark Lundquist [mailto:[EMAIL PROTECTED]
>
> Any word on this?  I never saw a reply, but I too am interested in the

> answer... any takers? Thanks,
> Mark L :-)
>
> On Apr 2, 2004, at 8:08 AM, Mark H wrote:
>
>> I'm having a problem doing redirects in flowscript (using a 
>> non-cocoon
>>
>> protocol). I've traced the problem to the code below and it says 
>> redirects to a new URL are not allowed in the comments. Can anybody 
>> tell me why this is?
>>
>> org.apache.cocoon.environment.wrapper.EnvironmentWrapper:
>>
>> /**
>>  * Redirect the client to a new URL is not allowed
>>  */
>> public void redirect(boolean sessionmode, String newURL)
>> throws IOException {
>> this.redirectURL = newURL;
>>
>> // check if session mode shall be activated
>> if (sessionmode) {
>> // get session from request, or create new session
>> request.getSession(true);
>> }
>> }
>>
>> Mark H
>>
>>
>>
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Problem redirecting in flowscript

2004-04-17 Thread Upayavira
I know Mark H found a solution in using a global redirect. What a global 
redirect is, I'm not entirely sure, but it worked!

Regards, Upayavira

Mark Lundquist wrote:

On Apr 13, 2004, at 11:33 AM, Joel McConaughy wrote:

Apache commons library does not support cross-host redirects. <..snip..>


How come  does not suffer from this?  It'll redirect 
you to anywhere!
— mark

From: Mark Lundquist [mailto:[EMAIL PROTECTED]

Any word on this?  I never saw a reply, but I too am interested in the
answer... any takers?
Thanks,
Mark L :-)
On Apr 2, 2004, at 8:08 AM, Mark H wrote:

I'm having a problem doing redirects in flowscript (using a non-cocoon

protocol). I've traced the problem to the code below and it says
redirects to a new URL are not allowed in the comments. Can anybody
tell me why this
is?
org.apache.cocoon.environment.wrapper.EnvironmentWrapper:

/**
 * Redirect the client to a new URL is not allowed
 */
public void redirect(boolean sessionmode, String newURL)
throws IOException {
this.redirectURL = newURL;
// check if session mode shall be activated
if (sessionmode) {
// get session from request, or create new session
request.getSession(true);
}
}
Mark H



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Problem redirecting in flowscript

2004-04-17 Thread Mark Lundquist
On Apr 13, 2004, at 11:33 AM, Joel McConaughy wrote:

Apache commons library does not support cross-host redirects. 
<..snip..>
How come  does not suffer from this?  It'll redirect 
you to anywhere!
— mark

From: Mark Lundquist [mailto:[EMAIL PROTECTED]

Any word on this?  I never saw a reply, but I too am interested in the
answer... any takers?
Thanks,
Mark L :-)
On Apr 2, 2004, at 8:08 AM, Mark H wrote:

I'm having a problem doing redirects in flowscript (using a non-cocoon

protocol). I've traced the problem to the code below and it says
redirects to a new URL are not allowed in the comments. Can anybody
tell me why this
is?
org.apache.cocoon.environment.wrapper.EnvironmentWrapper:

/**
 * Redirect the client to a new URL is not allowed
 */
public void redirect(boolean sessionmode, String newURL)
throws IOException {
this.redirectURL = newURL;
// check if session mode shall be activated
if (sessionmode) {
// get session from request, or create new session
request.getSession(true);
}
}
Mark H



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Problem redirecting in flowscript

2004-04-13 Thread Joel McConaughy
Apache commons library does not support cross-host redirects.  Solution
is to 
use the httpClient library in an XSP to manually process the redirects 
and then read the response and serialize into the stream.

Joel McConaughy
Managing Partner
Displayware
800 Fifth Ave., #101-316
Seattle, WA 98104-3191
206-300-4732 Direct
206-382-2188 Fax
[EMAIL PROTECTED]


-Original Message-
From: Mark Lundquist [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 13, 2004 10:45 AM
To: [EMAIL PROTECTED]
Subject: Re: Problem redirecting in flowscript


Any word on this?  I never saw a reply, but I too am interested in the 
answer... any takers?
Thanks,
Mark L :-)

On Apr 2, 2004, at 8:08 AM, Mark H wrote:

> I'm having a problem doing redirects in flowscript (using a non-cocoon

> protocol). I've traced the problem to the code below and it says 
> redirects to a new URL are not allowed in the comments. Can anybody 
> tell me why this
> is?
>
> org.apache.cocoon.environment.wrapper.EnvironmentWrapper:
>
> /**
>  * Redirect the client to a new URL is not allowed
>  */
> public void redirect(boolean sessionmode, String newURL)
> throws IOException {
> this.redirectURL = newURL;
>
> // check if session mode shall be activated
> if (sessionmode) {
> // get session from request, or create new session
> request.getSession(true);
> }
> }
>
> Mark H
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Problem redirecting in flowscript

2004-04-13 Thread Mark Lundquist
Any word on this?  I never saw a reply, but I too am interested in the 
answer... any takers?
Thanks,
Mark L :-)

On Apr 2, 2004, at 8:08 AM, Mark H wrote:

I'm having a problem doing redirects in flowscript (using a non-cocoon
protocol). I've traced the problem to the code below and it says 
redirects
to a new URL are not allowed in the comments. Can anybody tell me why 
this
is?

org.apache.cocoon.environment.wrapper.EnvironmentWrapper:

/**
 * Redirect the client to a new URL is not allowed
 */
public void redirect(boolean sessionmode, String newURL)
throws IOException {
this.redirectURL = newURL;
// check if session mode shall be activated
if (sessionmode) {
// get session from request, or create new session
request.getSession(true);
}
}
Mark H



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]