MySQL Monitoring

2008-08-23 Thread Frans Thamura
hi all anyone has try MySQL Enterprise monitoring is it use Struts2? any product that cool use S2 like MySQL monitoring? -- -- Frans Thamura Meruvian Foundation Mobile: +62 855 7888 699 Linkedin: http://www.linkedin.com/in/fthamura Training JENI, Medallion (Alfresco, Liferay dan Compiere).

RE: Struts loses action configuration

2008-08-23 Thread Martin Gainty
could you display struts.configuration.xml.reload parameter from struts<-default>.properties is there anything else that may be interfering with your servlet container connection (usually 8080) confirm with netstat -a and make sure that port is not already occupied Martin _

Re: [struts2] url tag not evaluating OGNL in anchor attribute

2008-08-23 Thread Daniel Ruan
Nah, the web.xml has no jsp-config at all. Daniel On Sat, Aug 23, 2008 at 8:28 PM, Martin Gainty <[EMAIL PROTECTED]> wrote: > > check your el-ignored parameter in web.xml > does it look like > > > *.jsp > true > > ? > Martin > __ >

RE: [struts2] url tag not evaluating OGNL in anchor attribute

2008-08-23 Thread Dave Newton
--- On Sat, 8/23/08, Martin Gainty <[EMAIL PROTECTED]> wrote: > check your el-ignored parameter in web.xml > does it look like > > > *.jsp > true > > ? That won't affect S2's evaluating OGNL in a tag attribute, AFAIK. Dave ---

RE: [struts2] url tag not evaluating OGNL in anchor attribute

2008-08-23 Thread Martin Gainty
check your el-ignored parameter in web.xml does it look like *.jsp true ? Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmissi

Re: [S2] problem still with "actionRedirect" and "redirect" results (Struts2.1.2)

2008-08-23 Thread Andreas Mähler
Hello Daniel, in Struts 2.1.2, you can add an empty string to the comma sperated list that goes to the "struts.action.extension" parameter (e.g. "action,," allows you to use the normal ".action" extension and the empty one) . If you would like to switch off the extension entirely (like I do),

RE: Struts 2 onchange event to get values from databases

2008-08-23 Thread Priyanka.dandekar
Johnson nickel wrote: > > Thanks for your quick response. > I have created Jsp and action and struts.xml. you are mistaken > me(imlazy), i'm not > asking the code for my requirement. > > I want to display the userdetails, at the time of Onchange > event. I don't want >

Re: [struts2] url tag not evaluating OGNL in anchor attribute

2008-08-23 Thread Daniel Ruan
I found the same behavior with 2.1.2 Beta, although the bug WW-2015 claims it is fixed in 2.0.10. Thanks, Daniel On Tue, Jun 24, 2008 at 4:34 AM, Volker Krebs <[EMAIL PROTECTED]> wrote: > Hello, > > I have the following in my JSP Page: > > > It seems that the anchor attribute is not evaluating

Re: Struts loses action configuration

2008-08-23 Thread tjstavenger
The application doesn't appear to be reloaded. The "java.net.SocketException: Broken pipe exception" appears just before the Struts action configuration is lost. I've also seen "java.lang.IllegalStateException: Cannot forward a response that is already committed" just before the Struts configura

Re: [S2] Double conversion issue

2008-08-23 Thread Milan Milanovic
Hi Jeromy, well, if someone have this converter, please give it here. I use BigDecimals for currency, this double is just for representing some real values. -- Milan Jeromy Evans - Blue Sky Minds wrote: > > Milan Milanovic wrote: >> Uf, bug again :-(((. >> >> Is there any custom type-convert

Re: using maven to setup a project

2008-08-23 Thread Wendy Smoak
On Sat, Aug 23, 2008 at 8:55 AM, Ian P. Christian <[EMAIL PROTECTED]> wrote: > I am attempting to setup a struts 2 project as described here: > - http://struts.apache.org/2.x/docs/ready-set-go.html > - http://struts.apache.org/2.x/docs/struts-maven-archetypes.html > > However, neither of these wo

Re: using maven to setup a project

2008-08-23 Thread Dave Newton
--- On Sat, 8/23/08, Ian P. Christian wrote: > However, neither of these work. I think somebody is working on the archetypes at the moment. > Firstly, I'm not sure how to progress here getting this > working - I guess for the time being I'll have to avoid > using maven. For the archetype, proba

using maven to setup a project

2008-08-23 Thread Ian P. Christian
I am attempting to setup a struts 2 project as described here: - http://struts.apache.org/2.x/docs/ready-set-go.html - http://struts.apache.org/2.x/docs/struts-maven-archetypes.html However, neither of these work. Maven attempts to download a file such as this: http://people.apache.org/repo/m

Re: [OT] S2 Stream Result, downloading large file, advice needed

2008-08-23 Thread Gabriel Belingueres
IMO the best solution is the one that download the files faster. The faster the files download, the quicker the response will finish and another user can download a file. Whether you store all the file in memory or in a temp file could be irrelevant if the server have a low bandwidth network conne

Re: [S2] Iterate through two lists

2008-08-23 Thread Dave Newton
--- On Sat, 8/23/08, Milan Milanovic wrote: > O.K. I'll try to find it. But I just think that this synax is no good: > > You may *think* that, but the syntax is fine, and I have working code that uses it, written while working on your problem. Dave ---

help required in using < S:set

2008-08-23 Thread ravi_eze
hi, The below i need the getSubCategories(xxx) method of action class to be called. ANy idea where i am doing wrong below here. The method is not getting called here. (2) i nee the inner loop also to get executed. Any ideas how this can happen. (1) abc abc

Re: [OT] S2 Stream Result, downloading large file, advice needed

2008-08-23 Thread Stephan Schröder
> I'm still interested in hear any suggestions. I know that this is not > strictly an S2 issue but it is related to using a Stream result type. If > I was writing a servlet I would just get the OutputStream and write directly > to it, putting the burden of buffering etc. onto the container. If yo

Re: [S2] Double conversion issue

2008-08-23 Thread Jeromy Evans
Milan Milanovic wrote: Uf, bug again :-(((. Is there any custom type-converter for Double-s that doesn't have this error ? -- Milan A custom type-converter means you can write one yourself for that specific property. It's very simple: http://struts.apache.org/2.0.11.2/docs/type-convers

Re: [S2] Double conversion issue

2008-08-23 Thread Milan Milanovic
Uf, bug again :-(((. Is there any custom type-converter for Double-s that doesn't have this error ? -- Milan Jeromy Evans - Blue Sky Minds wrote: > > I've seen this reported previous as a bug in S2/Xwork (appending an > extra 0 character). I can't recall where I saw that. > > Write a cus

Re: [S2] Iterate through two lists

2008-08-23 Thread Milan Milanovic
O.K. I'll try to find it. But I just think that this synax is no good: -- Milan newton.dave wrote: > > --- On Fri, 8/22/08, Milan Milanovic wrote: >> Where can I set levels DEBUG for S2, XWork and OGNL ? > > Search the fine web for Java logging, possibly after checking what S2 has > for lo