Re: Struts Application Generator plugin

2019-12-01 Thread Zahid Rahman
property in a selected JSP (create a JSP > if > > one doesn't exist, minimum generated code required code by struts > > framework), Also creating the corresponding s:property field just above > > TAG. all following the struts design pattern. > > > > As

Re: Struts Application Generator plugin

2019-11-30 Thread Zahid Rahman
te a JSP > if > > one doesn't exist, minimum generated code required code by struts > > framework), Also creating the corresponding s:property field just above > > TAG. all following the struts design pattern. > > > > As you can see the functionality of the S

Re: Struts Application Generator plugin

2019-11-30 Thread M Huzaifah
create a JSP if > one doesn't exist, minimum generated code required code by struts > framework), Also creating the corresponding s:property field just above > TAG. all following the struts design pattern. > > As you can see the functionality of the Struts application Generator

Struts Application Generator plugin

2019-11-30 Thread Zahid Rahman
t, minimum generated code required code by struts framework), Also creating the corresponding s:property field just above TAG. all following the struts design pattern. As you can see the functionality of the Struts application Generator plugin is same as the Object orientated getter an setter, constr

Re: How to put Spring object in Struts application scope on web startup?

2017-10-06 Thread Lukasz Lenart
e object in the struts >> > application scope within a listener during startup. Does that make >> sense? >> > >> > On Fri, Sep 29, 2017 at 11:50 AM, Adam Brin >> > wrote: >> > >> >> it’s a mixture of things: >> >> >>

Re: How to put Spring object in Struts application scope on web startup?

2017-09-30 Thread Burton Rhodes
purred the idea > > to have a "BaseAction" class where I autowire my object > > (MyApplicationSettings.java) and then extend all of my Actions from this > > class. > > > > Just for my info though... My original line of thinking was to be able to > > ac

Re: How to put Spring object in Struts application scope on web startup?

2017-09-30 Thread Yasser Zamani
this > class. > > Just for my info though... My original line of thinking was to be able to > access the object with the following: > > Map application = (Map) ActionContext.getContext().get("application"); > application.get("myApplicationSettings"); > --

Re: How to put Spring object in Struts application scope on web startup?

2017-09-29 Thread Burton Rhodes
access the object with the following: Map application = (Map) ActionContext.getContext().get("application"); application.get("myApplicationSettings"); ---or--- I just couldn't figure out a way to put the object in the struts application scope within a listener during star

Re: How to put Spring object in Struts application scope on web startup?

2017-09-29 Thread Adam Brin
Antiquity 480.965.1278 > On Sep 29, 2017, at 9:03 AM, Burton Rhodes wrote: > > How do you put a Spring object into the Struts application scope Map on > startup of a web application? I have 2 listeners that I thought would be > the usual suspects, but have not had success yet

How to put Spring object in Struts application scope on web startup?

2017-09-29 Thread Burton Rhodes
How do you put a Spring object into the Struts application scope Map on startup of a web application? I have 2 listeners that I thought would be the usual suspects, but have not had success yet. I have a ServletContextListener class but on the contextInitialized(ServletContextEvent event) method

Re: Struts application

2013-02-21 Thread Harsh
I am not able to locate struts2 portlet example. can some one help me point to correct location. following link doesn't talk about web.xml file configuration http://struts.apache.org/release/2.0.x/docs/struts-2-portlet-tutorial.html On Thu, Feb 21, 2013 at 3:59 PM, Brajesh Patel wrote: > thanks

Re: Struts application

2013-02-20 Thread Brajesh Patel
thanks for quick reply I am navigating if found any difficulty come back ;) On Wed, Feb 20, 2013 at 11:22 PM, Miguel Almeida wrote: > Or, if you already use Maven, use the Maven archetypes available at > http://struts.apache.org/ > > > Miguel Almeida > > On Wed, 2013-02-20 at 22:31 +0530, Umes

Re: Struts application

2013-02-20 Thread Miguel Almeida
Or, if you already use Maven, use the Maven archetypes available at http://struts.apache.org/ Miguel Almeida On Wed, 2013-02-20 at 22:31 +0530, Umesh Awasthi wrote: > download sample application from S2 official download section and you will > be able to see how things are being configured and

Re: Struts application

2013-02-20 Thread Umesh Awasthi
download sample application from S2 official download section and you will be able to see how things are being configured and how things are working. This is a good place to start and get overview of the structure On Wed, Feb 20, 2013 at 10:27 PM, Brajesh Patel wrote: > Hi all, > > I am looking

Connection between Struts Application and DB.

2012-04-23 Thread Anjib Mulepati
Hi All, I have my DB and web application running in different machine. And whenever my DB machine restart my application fail since it can't connect to the DB. I have to restart my application every time my DB start. I am using Struts Plug-in to load connection information from web.xml file a

RE: cannot run a simple struts application, server start error - myeclipse

2011-02-10 Thread Martin Gainty
donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Thu, 10 Feb 2011 15:00:30 +0530 > Subject: Re: cannot run a simple struts application, server start error - > myeclipse > Fro

Re: cannot run a simple struts application, server start error - myeclipse

2011-02-10 Thread Mohamed SIDI
you try to parse a XML File, but there is a null value, you may put out more trace of exception 2011/2/10 abhishek jain > hi > here is another error: > cannt understand what it is: > > Digester.getParser: java.lang.UnsupportedOperationException: This > parser does not support specification "null

Re: cannot run a simple struts application, server start error - myeclipse

2011-02-10 Thread Kushan Jayathilake
This one also relates with the XML parser, What are you going to do in your application, how it interacts with a parser? On Thu, Feb 10, 2011 at 2:49 PM, abhishek jain wrote: > hi > here is another error: > cannt understand what it is: > > Digester.getParser: java.lang.UnsupportedOperationExcepti

Re: cannot run a simple struts application, server start error - myeclipse

2011-02-10 Thread abhishek jain
hi here is another error: cannt understand what it is: Digester.getParser: java.lang.UnsupportedOperationException: This parser does not support specification "null" version "null" at javax.xml.parsers.SAXParserFactory.setXIncludeAware(SAXParserFactory.java:448) at org.apache.commons.digeste

Re: cannot run a simple struts application, server start error - myeclipse

2011-02-08 Thread Kushan Jayathilake
It seems there is another xml parser is conflicting. Check the lib folder of the tomcat, there should be another Xml parser there. Remove it, and replace the parser in your application. On 8 Feb 2011 17:38, "abhishek jain" wrote: > hi, > I noticed if i remove the xerces-2.6.2.jar file and restart

Re: cannot run a simple struts application, server start error - myeclipse

2011-02-08 Thread abhishek jain
hi, I noticed if i remove the xerces-2.6.2.jar file and restart the server, it works fine, dont know why, Pl. advice the reason and will it have any affect on Hibernate thing in the project, thanks abhishek On Tue, Feb 8, 2011 at 3:13 PM, abhishek jain wrote: > hi, > thanks for replying, > in my

Re: cannot run a simple struts application, server start error - myeclipse

2011-02-08 Thread abhishek jain
hi, thanks for replying, in myeclipse,if i do contrl + click on the struts-default.xml in struts.xml, it opens the file, hence it seems this is also not the error, thanks abhishek On Tue, Feb 8, 2011 at 3:06 PM, Mohamed SIDI wrote: > You should have problem in your classpath, it looks for a file

Re: cannot run a simple struts application, server start error - myeclipse

2011-02-08 Thread Mohamed SIDI
You should have problem in your classpath, it looks for a file named struts-default in your classpath, so in your classes directory can you check if you have this file or not, another alternative, check your classpathconfiguration in your eclipse . 2011/2/8 abhishek jain > On Tue, Feb 8, 2011

Re: cannot run a simple struts application, server start error - myeclipse

2011-02-08 Thread abhishek jain
On Tue, Feb 8, 2011 at 2:47 PM, Mohamed SIDI wrote: > Hi, > > May be you dont have well configure your application context. > > check your web.xml file > > best wishes !! > > 2011/2/8 abhishek jain > > > Hi, > > I am running myeclipse(8.x) on windows. trying my hands on struts 2.x > > applicatio

Re: cannot run a simple struts application, server start error - myeclipse

2011-02-08 Thread Mohamed SIDI
Hi, May be you dont have well configure your application context. check your web.xml file best wishes !! 2011/2/8 abhishek jain > Hi, > I am running myeclipse(8.x) on windows. trying my hands on struts 2.x > application, when i try to run the application i see hte following error in > console

cannot run a simple struts application, server start error - myeclipse

2011-02-08 Thread abhishek jain
Hi, I am running myeclipse(8.x) on windows. trying my hands on struts 2.x application, when i try to run the application i see hte following error in console. Dont know why , pl help. due to this i cannt run the application and 404 error appears. I think i narrowed this to possibly remove the xerc

Re: basic struts application

2010-03-10 Thread tesla
quot;success"; >> >>    public ActionForward execute(ActionMapping mapping, ActionForm form, >>            HttpServletRequest request, HttpServletResponse response) >>            throws Exception { >> >>        BookForm bookForm = (BookForm) form; >>        Book book = new

Re: basic struts application

2010-03-10 Thread Saeed Iqbal
etResponse response) >>            throws Exception { >> >>        BookForm bookForm = (BookForm) form; >>        Book book = new Book(); >>        bookForm.setBookList(book.loadData()); >> >> >>        return mapping.findForward(SUCC

Re: basic struts application

2010-03-10 Thread Paweł Wielgus
rows Exception { > >        BookForm bookForm = (BookForm) form; >        Book book = new Book(); >        bookForm.setBookList(book.loadData()); > > >        return mapping.findForward(SUCCESS); >    } > } > > struts_config.xml > >   >         >     &g

basic struts application

2010-03-09 Thread tesla
ok = new Book(); bookForm.setBookList(book.loadData()); return mapping.findForward(SUCCESS); } } struts_config.xml data.jsp -- View this message in context: http://old.nabble.com/basic-struts-application-tp27844692p2784

Re: Dealing / determining lost session in Struts application

2009-11-24 Thread Paul Benedict
- if it's null or >> > not your own domain, send them to the login screen. >> > Otherwise send them to the session timeout screen. >> > >> > >> >> -Original Message- >> >> From: Himstedt, Maik (EXTERN: T-Systems on) >>

Re: Dealing / determining lost session in Struts application

2009-11-24 Thread Saeed Iqbal
gt;> Sent: Tuesday, November 24, 2009 11:29 AM > >> To: user@struts.apache.org > >> Subject: Dealing / determining lost session in Struts application > >> > >> Hi, > >> > >> I'm tasked with killing a bug related to session management &

Re: Dealing / determining lost session in Struts application

2009-11-24 Thread Paul Benedict
.maik.himst...@volkswagen.de] >> Sent: Tuesday, November 24, 2009 11:29 AM >> To: user@struts.apache.org >> Subject: Dealing / determining lost session in Struts application >> >> Hi, >> >> I'm tasked with killing a bug related to session management >

RE: Dealing / determining lost session in Struts application

2009-11-24 Thread Kawczynski, David
-Systems on) > [mailto:extern.maik.himst...@volkswagen.de] > Sent: Tuesday, November 24, 2009 11:29 AM > To: user@struts.apache.org > Subject: Dealing / determining lost session in Struts application > > Hi, > > I'm tasked with killing a bug related to session man

Dealing / determining lost session in Struts application

2009-11-24 Thread Himstedt, Maik (EXTERN: T-Systems on)
Hi, I'm tasked with killing a bug related to session management and Struts 1.3.10 in a rather conventional JEE web application. The problem is that after the session times out, the application throws a rather ugly exception, something like: 2009-11-04 11:45:46,803 ERROR de.mypackage.ipad.util.

Re: Problem adding sslext to Struts application

2009-10-05 Thread sonavor
> I added some debug logging to monitor the URL requests passing through my > Struts application servlet filter. > > For the HTTP requests I see my logs in the tomcat server log. For example > I see - > > request URI: /MyWebApp/ > > and > > request URI: /MyWe

Re: Problem adding sslext to Struts application

2009-10-05 Thread sonavor
Some additional information - I added some debug logging to monitor the URL requests passing through my Struts application servlet filter. For the HTTP requests I see my logs in the tomcat server log. For example I see - request URI: /MyWebApp/ and request URI: /MyWebWeb/sectPh.do When I

Problem adding sslext to Struts application

2009-10-05 Thread sonavor
and it works fine. In the Struts application I have added the necessary sslext.jar and the tld as well as modified the struts-config.xml (and necessary JSP sections). Everything compiles and all of the non-SSL pages work fine. The problem I am having is with the links and pages that I have set

Re: Open an excel in Struts application

2009-04-27 Thread musomesa
t have a different approach. -Original Message- From: Martin Gainty To: Struts Users Mailing List Sent: Mon, 27 Apr 2009 8:02 am Subject: RE: Open an excel in Struts application which error is displayed? can you show the logs? BTW: If you want Poi Action classes you will need

Re: Open an excel in Struts application

2009-04-27 Thread Dave Newton
Martin Gainty wrote: BTW: If you want Poi Action classes you will need the POI-plugin for Struts Can you provide a link to the POI plugin? Thanks, Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additio

RE: Open an excel in Struts application

2009-04-27 Thread Martin Gainty
t facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > To: user@struts.apache.org > Subject: Re: Open an excel in Struts application > Date: Sun, 26 Apr 2009 22:25:01 -0400 > From: musom...@aol.com > > When/

Re: Open an excel in Struts application

2009-04-26 Thread Zoran Avtarovski
with). The new poi throws an exception which many > have complained about but has not been fixed/ > Chris > > > > -Original Message- > From: renisha > To: user@struts.apache.org > Sent: Sun, 26 Apr 2009 1:30 pm > Subject: Re: Open an excel in Struts applic

Re: Open an excel in Struts application

2009-04-26 Thread musomesa
2009 1:30 pm Subject: Re: Open an excel in Struts application Thanks for your reply . I am using struts2 version. Could you please give me some sampl code if you have. Wes Wannemacher wrote: > > On Sunday 26 April 2009 11:00:59 am renisha wrote: >> Hi, >> >> I am

Re: Open an excel in Struts application

2009-04-26 Thread renisha
.com/wannemacher > > > - > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands, e-mail: user-h...@struts.apache.org > > > -- View this message in context: http://www.

Re: Open an excel in Struts application

2009-04-26 Thread Wes Wannemacher
On Sunday 26 April 2009 11:00:59 am renisha wrote: > Hi, > > I am reading some values from database , doing some calculations and > creating an excel file. > > In my action class , I am returning an HSSFWorkbook object and I need to > diaply the excel file as the output . Please let me know how do

Open an excel in Struts application

2009-04-26 Thread renisha
://www.nabble.com/Open-an-excel-in-Struts-application-tp23243002p23243002.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e

Re: How share information in a struts application

2009-04-18 Thread Dave Newton
Stefano Tranquillini wrote: If found nothing that can resolve my problem! i need to share a class that contains all information that i need between all the classes and jsps. i've to put a setter and ghetter for each action that i've? i need to store some inforamtion in a bean (simple java bean)

Re: How share information in a struts application

2009-04-18 Thread Stefano Tranquillini
If found nothing that can resolve my problem! i need to share a class that contains all information that i need between all the classes and jsps. i've to put a setter and ghetter for each action that i've? i need to store some inforamtion in a bean (simple java bean) and share this class in all th

Re: How share information in a struts application

2009-04-18 Thread stanlick
Hey bro -- Have you read anything about Struts 2 or are you just trying stuff? The form bean is gone and the action is now the action-model. If you have accessible setters on your action-model, OGNL will graph those data onto your action-model. I would recommend a quick Google search for tuoria

How share information in a struts application

2009-04-18 Thread Stefano Tranquillini
Hi i've a conceptual problem. i want to transport and share inforamtion in my application. e.g. when a user made the login i want to store that user is loggedin and its datas. how can i do that? in the past version of struts there was the actionform and use ther around the application. in stru

RE: struts application not recognised in linux ,tomcat.

2008-10-18 Thread Martin Gainty
recipient. Sender does not necessarily endorse content contained within this transmission. > Date: Sat, 18 Oct 2008 04:10:38 -0700 > From: [EMAIL PROTECTED] > Subject: Re: struts application not recognised in linux ,tomcat. > To: user@struts.apache.org > > --- On Sat, 10/

Re: struts application not recognised in linux ,tomcat.

2008-10-18 Thread Dave Newton
--- On Sat, 10/18/08, Raghu wrote: > org.apache.jasper.JasperException: File > "/tags/struts-logic" not found at Do you have a TLD file there? Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EM

struts application not recognised in linux ,tomcat.

2008-10-18 Thread Raghu
Hi, Sample struts applications also not working in linux system. JDk 1.5 Tomcat 5.5 Struts1.2.8 struts-exercise-taglib servlets-examples I am getting following error on linux system. HTTP Status 500 - Description: The server encountered an internal error () that prevente

how to include flash file in struts application

2008-05-09 Thread john lee
how to include .swf in struts application? tks john - Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now.

problem to run struts application on tomcat5.0

2008-04-11 Thread ashishSaxena
I have my struts application devleoped in websphere stdio where it run properly but when i run it on tomcat5.0 i show problem "CAN'T FIND MESSAGE RESOURCE KEY UNDER MESSAGE RESOURCE" BUT when i run it on tomcat4.0 it run properly but that time shows database error class not

Re: Structure of a Struts Application

2008-03-06 Thread Antonio Petrelli
2008/3/6, getElectro <[EMAIL PROTECTED]>: > > > Hi ppl, I got a lil doubt, > What do you guys are used to do when developing > simple applications such as a small BookStore? > I did mean what I should use: > > * Action or DipatchAction ? > * form-bean or ActionForm ? > * Validate by cal

Structure of a Struts Application

2008-03-05 Thread getElectro
else ? * what to use for Handling excepetions ? Many thanks in advance. struts 1.3.8 -- View this message in context: http://www.nabble.com/Structure-of-a-Struts-Application-tp15864702p15864702.html Sent from the Struts - User mailing list archive at Nabble.com

Re: Error with DisplayTag in Struts application

2007-12-02 Thread Martin Gainty
can we see the implementation in your jsp example located here at Martin-- - Original Message - From: "puchacz" <[EMAIL PROTECTED]> To: Sent: Sunday, December 02, 2007 7:09 AM Subject: Error with DisplayTag in Struts application > > Hi > I am using Di

Error with DisplayTag in Struts application

2007-12-02 Thread puchacz
-- View this message in context: http://www.nabble.com/Error-with-DisplayTag-in-Struts-application-tf4931462.html#a14114888 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROT

Re: [S1] Ping another page from within a struts application

2007-10-28 Thread Paul Benedict
I do not understand what you're trying to achieve. You cannot send information to "pages" unless you're doing client-side scripting. You can, however, send a new request to a server with information. Paul On 10/22/07, enthucoder <[EMAIL PROTECTED]> wrote: I have requirement where, i need to send

Re: [S1] Ping another page from within a struts application

2007-10-23 Thread Piero Sartini
Am Montag, 22. Oktober 2007 19:27:59 schrieb enthucoder: > I have requirement where, i need to send session id of app2 to a listener > page in app1 (i.e non jee based one and i am allowed to send this > information as a 'get'), everytime the a new page loads or user goes to new > page in app2, with

[S1] Ping another page from within a struts application

2007-10-22 Thread enthucoder
rom-within-a-struts-application-tf4672509.html#a13348507 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: RE : RE : Struts Application is not working

2007-10-03 Thread aum strut
uts-config file.Please tell me where i am wrong :( On 10/3/07, Ezequiel Puig <[EMAIL PROTECTED]> wrote: > > Uppps, > That's for Struts 2. > > -Message d'origine- > De: Ezequiel Puig > Envoyé: mercredi 3 octobre 2007 16:53 > À: Struts Users Mailing Li

RE : RE : Struts Application is not working

2007-10-03 Thread Ezequiel Puig
Uppps, That's for Struts 2. -Message d'origine- De : Ezequiel Puig Envoyé : mercredi 3 octobre 2007 16:53 À : Struts Users Mailing List Objet : RE : Struts Application is not working Hi, Take a look at: http://struts.apache.org/2.x/docs/simple-setup.html. There you wil

RE : Struts Application is not working

2007-10-03 Thread Ezequiel Puig
 : Re: Struts Application is not working There are a ton of things that can cause the obscure error you are witnessing. You have to make sure the doctype definitions are correct as well for web.xml and struts-config. I'd start with a working example web.xml and struts-config (maybe the example

Re: Struts Application is not working

2007-10-03 Thread Rick Reumann
There are a ton of things that can cause the obscure error you are witnessing. You have to make sure the doctype definitions are correct as well for web.xml and struts-config. I'd start with a working example web.xml and struts-config (maybe the example app struts comes with - and then start swappi

Re: Struts Application is not working

2007-10-03 Thread aum strut
1 antlr 2 commons-beanutils 3 commons-digester 4 commons-fileupload 5 commons-logging 6 commons-validator 7 jakarta-oro 8 struts These are the jar flies in the lib folder On 10/3/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > At first glance it seems okay; maybe somebody else > will chime in.

Re: Struts Application is not working

2007-10-03 Thread Dave Newton
At first glance it seems okay; maybe somebody else will chime in. What library / jar files do you have in WEB-INF/lib? d. --- aum strut <[EMAIL PROTECTED]> wrote: > hi dave i m pasting my struts-config file for the > refrence.and as par the > dependencies i have used myeclipse as developing > en

Re: Struts Application is not working

2007-10-03 Thread aum strut
hi dave i m pasting my struts-config file for the refrence.and as par the dependencies i have used myeclipse as developing enviornment so it might be possible that there is something wrong as i downloaded an example in warfile form and when i deploy it in tomcat it worked fine but when i put my cla

Re: Struts Application is not working

2007-10-03 Thread Dave Newton
--- aum strut <[EMAIL PROTECTED]> wrote: > thks ajay for helping me out but can u point out > watcan be the cause of this error as pari know i have > configured the appliocation correctly... Without your struts config file we can't help very much -- *something* is wrong with either your library de

Re: Struts Application is not working

2007-10-03 Thread aum strut
fig classs > > correctly in the web.xml file i m also pasting the content of the > web.xml > > file.Please help me to find out the error. > > > > > > action > > org.apache.struts.action.ActionServlet > > > > config > > /WEB-INF/struts-c

Re: Struts Application is not working

2007-10-02 Thread AJAY KUMAR UPPALAPATI
n the web.xml file i m also pasting the content of the web.xml > file.Please help me to find out the error. > > > action > org.apache.struts.action.ActionServlet > > config > /WEB-INF/struts-config.xml > > 2 > > > > > > action > *.do &

Struts Application is not working

2007-10-02 Thread umeshawasthi
Regards, Umesh -- View this message in context: http://www.nabble.com/Struts-Application-is-not-working-tf4560069.html#a13013599 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

Re: Struts Application is not running

2007-10-02 Thread Dave Newton
--- aum strut <[EMAIL PROTECTED]> wrote: > can u send me a small demo project in struts.so > that i cn take help frm it No, but there are many, many Struts tutorials and projects searchable on the web, including those that come with Struts itself. Perhaps posting some configuration beyond

Re: Struts Application is not running

2007-10-02 Thread aum strut
can u send me a small demo project in struts.so that i cn take help frm it On 10/3/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > --- aum strut <[EMAIL PROTECTED]> wrote: > > I hav configured all the files in the right way > > Cool... but if everything was configured properly it > would pr

Re: Struts Application is not running

2007-10-02 Thread Dave Newton
--- aum strut <[EMAIL PROTECTED]> wrote: > I hav configured all the files in the right way Cool... but if everything was configured properly it would probably work. > Its showing in the tomcat log files that its not > getting the ActionServlet. This is usually due to a configuration error, miss

Re: Struts Application is not running

2007-10-02 Thread aum strut
I hav configured all the files in the right way and I m using My Eclipse. Its showing in the tomcat log files that its not getting the ActionServlet. On 10/3/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > I'd turn up the logging level. My initial suspicion > would be a configuration error, but it'

Re: Struts Application is not running

2007-10-02 Thread Dave Newton
I'd turn up the logging level. My initial suspicion would be a configuration error, but it's kind of hard to say at the moment. --- aum strut <[EMAIL PROTECTED]> wrote: > hi all, > > i have developeda small application in struts.but > itis not > running.andtomcat log file is giving the error tha

Struts Application is not running

2007-10-02 Thread aum strut
hi all, i have developeda small application in struts.but itis not running.andtomcat log file is giving the error that it is unable to find ActionServlet calss. i have configured ActionServlet class in web.xml as action org.apache.struts.action.ActionServlet config /WEB-

Re: Query on struts application design

2007-06-20 Thread Yoge
Another alternative, Move all the images/css specific to abc.com to a subdirectory named /abc/... Let all the images related to xyz.com be in another sub-directory /xyx/ Change path of images in your application to /abc or /xyz based on the request.*getRemoteHost*() . -- Yoge, AdventNet, Inc.

Query on struts application design

2007-06-14 Thread Rakesh Sharma
Dear All, I am new to struts so would need your help here. My client has an enterprise application(struts1.0 based) with : 1 WAR (virtual host www.abc.com) 1 EJB module Now, the client want the same application(almost same business rules..i.e same EJB module) but in different look and feel

Re: Exception processing Jsp page in my struts application.

2007-06-03 Thread vikas rao
Yes I am running on tomcat, and this message is being generated on the console window there: Jun 3,2007 10:12:18 PM org.apache.struts.util.PropertyMessageResourcesloadLocale WARNING: Resource org/apache/struts/taglib/html/LocalStrings_en.properties Not Found I am using apache-tomcat-6.0.10. My

Re: Exception processing Jsp page in my struts application.

2007-06-03 Thread Frank W. Zammetti
error, please notify the sender immediately by telephone or email and destroy the original message without making a copy. Thank you. - Original Message - From: "Frank W. Zammetti" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Sunday, June 03, 2007

Re: Exception processing Jsp page in my struts application.

2007-06-03 Thread Martin Gainty
ng a copy. Thank you. - Original Message - From: "Frank W. Zammetti" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Sunday, June 03, 2007 1:29 PM Subject: Re: Exception processing Jsp page in my struts application. I'm guessing your running on To

Re: Exception processing Jsp page in my struts application.

2007-06-03 Thread Frank W. Zammetti
I'm guessing your running on Tomcat? If so, can you look for the stack trace that should accompany this in localhost_log.*... that should give you more of a clue what's going on (I don't see anything obvious wrong, but with just the snippet and no stack trace it's tough to tell)... even if you

Exception processing Jsp page in my struts application.

2007-06-03 Thread vikas rao
This is the errror: org.apache.jasper.JasperException: An exception occurred processing JSP page /search.jsp at line 17 14: 15: 16: 17: 18: 19: 20: Nothing seems wrong with my line 17!! and my html tag is declared properly.. and in my struts-config.xml: Wondering what is wrong!!?? Th

Re: Hiding/encrypting URL parameters in Struts application

2007-05-13 Thread roberto
Hi, Which version of Struts are you using? If you are using Struts 1.x you can use HDIV for that. HDIV guarantees integrity and confidentiality of non editable data, including of course URL parameters. On the other hand, if you are using Struts2 we haven't still published a release for Struts2.

Re: Hiding/encrypting URL parameters in Struts application

2007-05-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sid, Sid wrote: > Is there a way to hide/encrypt URL parameters using Struts? Struts does not handle this directly. You'll have to do it yourself or use an existing tool to protect these parameters. When I do this type of thing, I symmetrically encr

Hiding/encrypting URL parameters in Struts application

2007-05-12 Thread Sid
Hi Is there a way to hide/encrypt URL parameters using Struts? Right now i am passing some critical params in the URL For e.g http://localhost:8080/method=xyz?param1=123¶m2=xyz I want to avoid this. Please let me know if anything can be done about this. Thanks Sid

Re: Deploy struts Application

2007-05-09 Thread Laurie Harper
horri khalid wrote: Hi, I'm new user in Struts, so i develop a application and I deploy it in my server. when I execute it I have this problem: Servlet action not available. For more information I use: -Tomcat 5.5.4 -Struts 1.1 'Servlet action not available' means there was an error dur

Re: Deploy struts Application

2007-05-09 Thread Gary Feidt
Did you deploy all the Struts jar files with your deployment file? >>> [EMAIL PROTECTED] 5/9/2007 3:57:44 AM >>> Hi, I'm new user in Struts, so i develop a application and I deploy it in my server. when I execute it I have this problem: Servlet action not available. For more information I use:

Deploy struts Application

2007-05-09 Thread horri khalid
Hi, I'm new user in Struts, so i develop a application and I deploy it in my server. when I execute it I have this problem: Servlet action not available. For more information I use: -Tomcat 5.5.4 -Struts 1.1

Re: Problem undeploying struts application

2007-02-23 Thread Niall Pemberton
roblem undeploying struts application Its a possible cause is the best I can say. Try replacing the Commons Digester jar with the 1.8 version. Can't remember if that is enough to fix that bug, or if it needs associated changes in Struts/Tiles/Validator/Chain - I'll look into it when I get

RE: Problem undeploying struts application

2007-02-23 Thread Juan Espinosa
PROTECTED] Enviado el: viernes, 23 de febrero de 2007 11:28 Para: Struts Users Mailing List Asunto: Re: Problem undeploying struts application Its a possible cause is the best I can say. Try replacing the Commons Digester jar with the 1.8 version. Can't remember if that is enough to fix that bug,

Re: Problem undeploying struts application

2007-02-23 Thread Niall Pemberton
2007 11:00 Para: Struts Users Mailing List Asunto: Re: Problem undeploying struts application On 2/23/07, Juan Espinosa <[EMAIL PROTECTED]> wrote: > Hi to all… > > Im having problems with the undeploy of an struts application im using > tomcat 5.5.4, when i undeploy the application

RE: Problem undeploying struts application

2007-02-23 Thread Juan Espinosa
List Asunto: Re: Problem undeploying struts application On 2/23/07, Juan Espinosa <[EMAIL PROTECTED]> wrote: > Hi to all… > > Im having problems with the undeploy of an struts application im using > tomcat 5.5.4, when i undeploy the application some jars get locked and > i c

Re: Problem undeploying struts application

2007-02-23 Thread Niall Pemberton
On 2/23/07, Juan Espinosa <[EMAIL PROTECTED]> wrote: Hi to all… Im having problems with the undeploy of an struts application im using tomcat 5.5.4, when i undeploy the application some jars get locked and i cant delete it…. I search in web and i found the context prop

Problem undeploying struts application

2007-02-23 Thread Juan Espinosa
Hi to all… Im having problems with the undeploy of an struts application im using tomcat 5.5.4, when i undeploy the application some jars get locked and i cant delete it…. I search in web and i found the context properties antiResourceLocking and antiJarLocking but it seems that they dont work

Profiling Struts Application

2007-02-22 Thread Rahul Patel
Does anyone know of any article/document that will allow me to profile a Struts application? I am still using Struts 1.1 with Eclipse 3.1 as IDE. I tried TPTP but couldn't figure out how to use it for a web app. Thanks, Rahul

Re: Struts Application Design Issue

2007-02-06 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Shyamsunder, Reddy, Shyamsunder wrote: > 1.How to make sure that ActionServlet doesn't create any session using > request.getSession(true) before the Request Processor class is classed. I don't believe that Struts ever calls request.getSession(tr

  1   2   3   >