Re: Execute Action on the server

2007-09-21 Thread Oguz Kologlu
me on a JSP I'd probably have to use something similar though I've not seen anything that does. anyway mostly just wishful thinking.. Oz On 21/09/2007, at 11:55 AM, Paul Benedict wrote: Oguz, You can perform a JSP include and get the rendered page. Paul On 9/19/07, Oguz Kologlu <[E

Execute Action on the server

2007-09-19 Thread Oguz Kologlu
Hi, Does anyone know how to execute an action on the server and get the result on the server (without having to use something like commons http client). What I want is the resulting html from an action so I send it as an email. I vaguely remember a way to do it with a velocity template I'

Re: [S2] Design Advice Needed

2007-08-02 Thread Oguz Kologlu
When I used XSLFO (maybe 3-4 years ago) it was really a pain. I can't see how it could have gotten any better - without a visual designer anyway. Have a look at http://www.eclipse.org/birt (Birt) - It can generate PDF's, export data, has a good designer etc. (also if you are thinking abou

[S2] dojo 0.9 and ***-conversion.properties

2007-08-01 Thread Oguz Kologlu
Hi all, It seems when doing a dojo.xhrPost any collection object eg: contacts [0].firstName gets encoded to contacts %5B0%5D.firstName. The ***-conversion.properties don't seem to recognise the element as person so the person collection remains null and with lots of intercepter errors:

[SOLVED] Re: [S2] Disable fileupload interceptor

2007-07-17 Thread Oguz Kologlu
quest parsing - we'll see what happens. HTH anyone in the same boat Oz On 16/07/2007, at 2:06 PM, Oguz Kologlu wrote: Hi all, I've a S1/S2 mixed application that uses a S1 action to upload files, however S2 keeps getting in the way and ripping out the uploaded data even though it

[S2] Disable fileupload interceptor

2007-07-15 Thread Oguz Kologlu
Hi all, I've a S1/S2 mixed application that uses a S1 action to upload files, however S2 keeps getting in the way and ripping out the uploaded data even though it is a S1 action being called. Is there a way to disable the file upload interceptor so the S1 action can handle the upload? Or

Re: email within action

2007-06-25 Thread Oguz Kologlu
very lightweight api to just allow a client to call an objects method on the server deployed on tomcat5x. Oguz Kologlu <[EMAIL PROTECTED]> wrote: On 25/06/2007, at 10:33 PM, Chris Pat wrote: Hello How can I send the email asynchronously? My timeframe is the lifecycle of the action and my b

Re: email within action

2007-06-25 Thread Oguz Kologlu
Q before and it's quite stable/reliable. It's run for a few months without problems (though not under heavy load), YMMV. HTH Oz Can I really get a mail session and send from within an action? Doesnt that assume I am threading the process? When would this breakdown? At 100/hr or 100

Re: email within action

2007-06-25 Thread Oguz Kologlu
yes, The main issue will response times if you a send emails synchronously ( if you can you send async). Async will definitely scale better since the client isn't blocking a thread for nothing. Simultaneous clients should be no problem as long as you follow the same threading rules as every

Re: [S2] App generate lot (2GB) of garbage!

2007-06-19 Thread Oguz Kologlu
You may want to have a look at using a bit better profiler that can tell you what is instantiating the freemarker classes. I've noticed Code Gear (ex Borland) have released a free version of JBuilder with OptimizeIt built in: Have a look at http://www.codegear.com/eclipse_supercharged/index

Re: Reload Tiles configuration

2007-06-18 Thread Oguz Kologlu
Struts 2.0.8, Struts Tiles plugin 2.0.8, Tiles 2.0.3 Oz On 18/06/2007, at 4:57 PM, Antonio Petrelli wrote: 2007/6/18, Oguz Kologlu <[EMAIL PROTECTED]>: Hi All, Does anyone know how to get tiles to monitor it's configuration file (tiles.xml) for changes or how to reload it manua

Reload Tiles configuration

2007-06-17 Thread Oguz Kologlu
Hi All, Does anyone know how to get tiles to monitor it's configuration file (tiles.xml) for changes or how to reload it manually without have to restart the webapp or server? Thanks, Oz - To unsubscribe, e-mail: [EMAIL PR

Re: [OT] Is anybody else getting these? Fwd: Returned mail: see transcript for details

2007-06-06 Thread Oguz Kologlu
Yep, but only when I post/reply to a message. Oz On 06/06/2007, at 9:21 PM, Antonio Petrelli wrote: Me too, but Gmail puts it into spam... What's that? 2007/6/6, Paolo Beccari <[EMAIL PROTECTED]>: Me too. P. - To unsubscri

Re: Ending session

2007-06-05 Thread Oguz Kologlu
I think the way it is mostly done is by using push events from the server. Have a look at Mortbay Jetty servlet container if you are really interested, It's supposed to handle continuations/push events quite well. If you can no longer push server events out you could make the assumption the

[OT] Re: using jstl sql tags for displaying date from database

2007-06-05 Thread Oguz Kologlu
Ambaris, I think it's quite the opposite here, but anyway... the fact is it's database dependent. Depending on the DB you may be able use "select now()" as a query and if it doesn't work consult you DB manual. The question has nothing to do with struts Oz On 05/06/2007, at 9:46 PM, Am

Re: setAttribute

2007-06-04 Thread Oguz Kologlu
That's an implementation detail for each servlet container/ configuration. It is really very specific to each implementation as to what happens when you save something to session so you'd have to look at the doco's of the servlet container you're using Oz On 05/06/2007, at 10:41 AM, Chris

Re: Exception while using validator framework

2007-06-01 Thread Oguz Kologlu
also make sure you delete the old one. Oz On 01/06/2007, at 6:27 PM, <[EMAIL PROTECTED]> wrote: HI Fei Thanks for your kind response As said by u I have replaced existing commons-validator with new one commons-validator-1.3.1.jar But the problems still persists Regards Bhanu -Original M

Re: refresh problem

2007-05-31 Thread Oguz Kologlu
Hi Volkan, I had a similar issue which turned out to be a a bug in the result page. It seems when you have an error in an ajax result page nothing gets reported (probably for good reason), but it makes things difficult to debug. The simplest way I find to resolve it is to make the ajax ca

Re: action redirection

2007-05-28 Thread Oguz Kologlu
try redirect="true" /> add the context path as required ( eg: "/Management/ WebPatientManagenet/addPatient.do" ) Oz On 29/05/2007, at 9:38 AM, Ashuin Sharma Chamorro wrote: Im in struts 1.2.9 . -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Monday, May 28,

Re: hi

2007-05-28 Thread Oguz Kologlu
Try value="group_id" /> Oz On 28/05/2007, at 9:43 PM, Mansoor K.S. Ali wrote: Dear all, I have problem is radio button. I have to put the value in the radio button using bean: write. It s not working I am trying in this way. value=" write name="groupList" value="group_id" />" />