Re: help with struts 2 + jfreechart plugin example

2008-04-29 Thread jignesh.patel
Hi, I have the same problem once i place the struts2-jfreechart-plugin-2.0.11.jar I have got the deployment error like this Apr 29, 2008 2:13:30 PM org.apache.catalina.core.StandardContext filterStart SEVERE: Exception starting filter struts2 Class: gnu.xml.dom.DomElement File:

Dynamic namespace in application

2008-03-06 Thread jignesh.patel
Hi, I am having struts2 + hibernate application.It uses static namespace(crud) like http://hax.mysite.com/crud/createUser.action. I want it to be dynamic like, i can be able to set it with my algorithm which is unique for each session ... e.g for 1 session)

Re: Dynamic namespace in application

2008-03-06 Thread jignesh.patel
This is just for security purpose.Actually it is a very secure application and i do not want to make rest of the world aware with urls,so they can copy the urls or keep in history for future use. jignesh.patel wrote: Hi, I am having struts2 + hibernate application.It uses static

Re: Dynamic namespace in application

2008-03-06 Thread jignesh.patel
thanks jeromy It would be fine for me,if you will send binary or any plug in example. jignesh.patel wrote: Hi, I am having struts2 + hibernate application.It uses static namespace(crud) like http://hax.mysite.com/crud/createUser.action. I want it to be dynamic like, i can be able

Re: Context problem in struts2

2008-02-28 Thread jignesh.patel
() Is there any way so i can get the same locale until i change the request parameter (request_locale=x)? Thanks. jignesh.patel wrote: Hi, I am having struts2 application,whenever i am doing action redirect i am getting new context instead of old one ? ../authentication/login.action

Context problem in struts2

2008-02-26 Thread jignesh.patel
Hi, I am having struts2 application,whenever i am doing action redirect i am getting new context instead of old one ? result name=login type=redirect../authentication/login.action/result or result name=login type=redirect-action login /result And context log looks like ...

Struts2 sesionExpired page

2008-02-06 Thread jignesh.patel
Hi, I am having struts2 application with hibernate + mysql.I want to create web app session Expired page,but i am not able to detect weather my application session expired or not. I have given session time out to 1 min also but it still displays active session. session-config

Re: Pretty urls without .action

2008-01-22 Thread jignesh.patel
Hi, I think you missed something struts.action.extension=action,, leads to not actions without .action but to the actions with (action-name suffix(.)). e.g http://localhost:8080/email (tends to 404 page not found) but http://localhost:8080/email. (with suffix (.) works as ,, ). Jeromy Evans

Re: Pretty urls without .action

2008-01-21 Thread jignesh.patel
=org.apache.struts2.dispatcher.multipart.JakartaMultiPartRequest And url works fine with .action and .com not works only with /email or every action name without .action ext. ): And one more thing i am using sitemesh,but i think it not a big issue at all. Br, jignesh jignesh.patel wrote: Hi, Still

Re: Pretty urls without .action

2008-01-20 Thread jignesh.patel
Hi, Still not able to call without any domain name like .action,.com URL:- http://host:8080/email(withour . extension) Error Page:- type Status report message /email description The requested resource (/email) is not available. My struts.properties file struts.devMode = true

Re: Pretty urls without .action

2008-01-18 Thread jignesh.patel
Hi, thanks for your reply,but unfortunationatily it is not working I just want only action name without any domain like .actiion,.do,.com anything (only category) The double comma above means blank is a valid extension is not able to call respected action. Is there anything missing ? Jeromy