Re: Storing images in SQL BLOBs

2005-09-06 Thread amos
commodate for this error anyway because even when everything is dandy the network or the client may go down at any stage. What do you see on the browser's side? Can you try using wget/curl instead of a web browser? Cheers, --Amos -

Re: writting File through jsp

2005-09-06 Thread amos
e PDF output?) Cheers, --Amos - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Example code for blobs

2005-09-05 Thread amos
ere it > > is linked. > > Does this sound right to you? I think this is the recommended practice for blobs if they are accessed much less than the other fields in the record. But it depends on your schema and expected application behaviour as Frank says. Cheers, --Amos - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Not serializable

2005-09-04 Thread amos
t this didn't seem to help. > private static final long serialVersionUID = 2897987282761L; > > Any suggestions? Add "implements Serializable" to the class declaration (it's an empty "flag" interface)? HTH, --Amos

Re: The latest stable version of struts

2005-09-04 Thread amos
all. > > Do you happen to remember if these cases were the result of features > deprecated in 1.1 and removed in 1.2? Yes, I think the above description applies to all the special cases. --Amos - To unsubscribe, e-ma

Re: Trim all fields before validation

2005-09-01 Thread amos
iterator.hasNext();) { Map.Entry entry = iterator.next(); if (entry.getValue() instanceof String) dynaActionForm.set((String)entry.getKey(), ((String)entry.getValue()).trim()); } } } Is there something I'm m

Re: The latest stable version of struts

2005-09-01 Thread amos
s in the process. Cheers, --Amos - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: The latest stable version of struts

2005-08-30 Thread amos
On Wed, 2005-08-31 at 12:02 +0530, SINHA Ranjay wrote: > Struts 1.1 is the one. Infact this is the last final released version. Is this the official project's statement? So where does this put 1.2.7 and 1.3? Thanks,

Fetching the form in RequestProcessor.processPreprocess?

2005-08-30 Thread amos
and I was thinking I can add this code to processPreprocess() but I don't know how to fetch the form bean (we use DynaValidatorActionForm) in that method. I'm reading through the struts document and API's but so far haven't found a clue. How can this

Re: core struts -- best practise fundementals

2005-08-30 Thread amos
programming - at this level of application programming (i.e. you are not writing some real-time multi- gigabyte network driver for a rocket launcher on a gunship) worry about performance when it hits you. Go for the "custom object" as you call it and see what you get. --Amos