RE: Re: [S2] Advice on Handling CLOBs in Struts2

2008-05-22 Thread Hoying, Ken
Subject: RE: Re: [S2] Advice on Handling CLOBs in Struts2 --- "Hoying, Ken" <[EMAIL PROTECTED]> wrote: > It appears to and that is my understanding. It appears to what, make a request? Where does it appear to do that? In the code it looks like it just creates an action prox

RE: Re: [S2] Advice on Handling CLOBs in Struts2

2008-05-21 Thread Dave Newton
--- "Hoying, Ken" <[EMAIL PROTECTED]> wrote: > It appears to and that is my understanding. It appears to what, make a request? Where does it appear to do that? In the code it looks like it just creates an action proxy and calls execute on it. Without doing any real digging it looks like it uses

RE: Re: [S2] Advice on Handling CLOBs in Struts2

2008-05-21 Thread Hoying, Ken
: Hoying, Ken [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 21, 2008 3:48 PM To: Struts Users Mailing List Subject: RE: Re: [S2] Advice on Handling CLOBs in Struts2 It appears to and that is my understanding. The examples show it as a way to include images that are built from an action. I tried to

RE: Re: [S2] Advice on Handling CLOBs in Struts2

2008-05-21 Thread Hoying, Ken
com.premierinc.sca.catalog.actions.ContractDetail.streamNote(ContractDet ail.java:201) -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 21, 2008 2:52 PM To: Struts Users Mailing List Subject: RE: Re: [S2] Advice on Handling CLOBs in Struts2 Does the take

RE: Re: [S2] Advice on Handling CLOBs in Struts2

2008-05-21 Thread Dave Newton
Does the take make an actual request? I guess I assumed it executed the action without making a full request, which could cause the error you're seeing, as the response would already have been written to by the time your stream result got ahold of it. Dave --- "Hoying, Ken" <[EMAIL PROTECTED]>

RE: Re: [S2] Advice on Handling CLOBs in Struts2

2008-05-21 Thread Hoying, Ken
BTW.. I have tested the stream action by calling it directly by placing the url to action in the address window of my browser and it works perfectly then. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Laurie Harper Sent: Wednesday, May 21, 2008 2:09 PM To: user@str

RE: Re: [S2] Advice on Handling CLOBs in Struts2

2008-05-21 Thread Hoying, Ken
Thank you for the response. Below is my config for the action. Please let me know what else I am missing. I am at a real loss. I would hate to have to create a JSP and place Java code in there to do the streaming or to stream directly in the action. I would really like to do it in keeping with