Re: Multiple struts-config.xml files?

2002-02-14 Thread @Basebeans.com
Subject: Re: Multiple struts-config.xml files? From: "Jens Mander" <[EMAIL PROTECTED]> === Which are the alterations required to allow struts 1.0 to permit multiple Action Servlets? Doesn't a container (e.g. Tomcat) generate separate instances for each action servlet which

Re: Multiple struts-config.xml files?

2002-02-13 Thread Ted Husted
Struts 1.0 isn't designed to permit multiple ActionServlets. Unless you've made some alterations, there may be threading problems. Struts 1.1 does speak to the issues you raise, but we are all still getting our heads around it, and trying to put some documentation together. I was also just thi

Mapping in Struts-config.xml for a servlet

2002-02-13 Thread Arun_Kumar_N
Hello, I want to call a simple servlet from an action class. What is the mapping I have to do in struts-config.xml file. Please look into this Regards Arun -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Multiple struts-config.xml files?

2002-02-13 Thread Nick Pellow
I just had one ActionServlet, and for each action defined in it's struts-config.xml, there is a separate forward defined per role (prefixed by role name). "role1_success" "role2_success" etc. All forward name strings (e.g. "success") get intercepted essential

Multiple struts-config.xml files?

2002-02-13 Thread Press, Michael
I want to have multiple workflows, with users mapped to a particular workflow based on their role. I know that Struts doesn't support this now. Is there an intent to support this in the future? In the meantime, I'm interested in suggestions on the best way to implement this. Right now, I've d

Concatinating mutliple struts-config.xml files into one.

2002-02-07 Thread Ace
When working with a team on a struts web app it is best for each person to have his own piece of the struts-config.xml file and merge all on a build. What is the best way to do this? Can't find a cat command in ant? -- -- -

Re: forward setting in struts-config.xml

2002-02-01 Thread Steve Ardis
If I understand your question correctly, see the struts-config.xml file in the example application provided by Struts - here's the portion(s) relevant to you : >From: Henry Lu <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List&qu

forward setting in struts-config.xml

2002-02-01 Thread Henry Lu
) /// // struts-config.xml: ... ... /// What I want to do is to forwad to an action class. Could someone show me how to do it? Thanks

RE: Anyway to pass a parameter with the struts-config.xml file to an action?

2002-01-30 Thread David Larson
ation... hth, dave -Original Message- From: Antony Stace [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 30, 2002 7:05 PM To: [EMAIL PROTECTED] Subject: Anyway to pass a parameter with the struts-config.xml file to an action? Hi Is there anyway in the struts-config.xml file to spec

Re: Anyway to pass a parameter with the struts-config.xml file to an action?

2002-01-30 Thread Francisco Hernandez
ameter with the struts-config.xml file to an action? > Hi > > Is there anyway in the struts-config.xml file to specify a parameter and > its value to be passed to an action, ie I am looking for something like > > > type="com.bogusdomain.bogusproject.ListDe

Anyway to pass a parameter with the struts-config.xml file to an action?

2002-01-30 Thread Antony Stace
Hi Is there anyway in the struts-config.xml file to specify a parameter and its value to be passed to an action, ie I am looking for something like Is there some mechanism to do this using the struts-config.xml file? -- Cheers Tony

Problem with MockStrutsTestCase - can't find struts-config.xml

2002-01-30 Thread Michael Mehrle
Hi there: I'm running my tests through ant and all other tests run fine. However, when running an implementation of MockStrutsTestCase I keep getting this: Input/output error reading configuration from resource path /WEB-INF/struts-config.xml Now, of course I checked - the directory

Re: Required attributes for 'Action' tag in struts-config.xml

2002-01-25 Thread Mark Woon
Sriram Nookala wrote: > I have the following action mapping in my struts-config.xml: > > type="com.proteusmobile.actions.CampaignMainAction" > If this is a cut-and-paste job, your open action tag doesn't have a trailing >. > Isn't it possible t

Required attributes for 'Action' tag in struts-config.xml

2002-01-25 Thread Sriram Nookala
I have the following action mapping in my struts-config.xml: When I build and run the application I get the following error: javax.servlet.ServletException: Cannot create rewrite URL: java.net.MalformedURLException: Cannot retrieve ActionForwards collection . However if I modify the

required attributes for 'Action' tag in struts-config.xml

2002-01-24 Thread Sriram Nookala
I have the following action mapping in my struts-config.xml: When I build and run the application I get the following error: javax.servlet.ServletException: Cannot create rewrite URL: java.net.MalformedURLException: Cannot retrieve ActionForwards collection . However if I modify the

Re: The same name in scope, but different names in struts-config.xml

2002-01-11 Thread Christian Bouessay
> Would it be possible to have just 1 form with a "type" property and then > from the JSP's a hidden field that sets the type? Based on this "type" > you can control the proper validation. Having different classes with > the same form name could get messy. > Do you mean only one class (For

Re: The same name in scope, but different names in struts-config.xml

2002-01-11 Thread Mister Hundy
>From: Christian Bouessay <[EMAIL PROTECTED]> >Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: The same name in scope, but different names in struts-config.xml >Date: Fri, 11 Jan 2002 14:21:25 +0100 > >Hi, >I wou

The same name in scope, but different names in struts-config.xml

2002-01-11 Thread Christian Bouessay
Hi, I would like to use something like this: with : Form1.java, Form2.java, Form3.java extend Form.java. Form1, Form2 and Form3 have the same properties, but different validate() methods. How to write that all these forms refer the same one. I mean, I would like struts to save these differe

RE: Struts-config.xml

2002-01-06 Thread Rajan, Jeffy
nging the form bean and the local forwards in its mapping. UNQUOTE -Original Message- From: Ted Husted [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 06, 2002 10:52 AM To: Struts Users Mailing List Subject: Re: Struts-config.xml What you are really asking is how to have different

Re: Struts-config.xml

2002-01-06 Thread Ted Husted
Tel +1 585 737-3463. -- Web http://www.husted.com/struts/ "Rajan, Jeffy" wrote: > > I hope someone can provide me a sample struts-config.xml snippet for my > workflow stated as below: > > 1. A form is displayed to the user. The form has some fields with defaults > va

Struts-config.xml

2002-01-06 Thread Rajan, Jeffy
I hope someone can provide me a sample struts-config.xml snippet for my workflow stated as below: 1. A form is displayed to the user. The form has some fields with defaults values (i.e. current date etc) and blank fields 2. The form has the following actions permitted: SAVE (update/insert

RE: Documentation for struts-config.xml?

2002-01-04 Thread Ramanswamy, Muthu
Check the following dtd: http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd -Original Message- From: Mark Woon [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 5:50 PM To: [EMAIL PROTECTED] Subject: Documentation for struts-config.xml? Hello all... Another newbie

Documentation for struts-config.xml?

2002-01-04 Thread Mark Woon
Hello all... Another newbie question: is there any documentation for struts-config.xml? Thanks, -Mark -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Configuration struts-config.xml

2001-12-28 Thread Philip Tong
Dear all, When i study the the struts example and DTD, a set-property element has been found in action element. likes as follows: What is the propose of set-property? I can't get the information in actionmapping and can't get more information in javadoc in apache.org. How can i

RE: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread Martin Farrell
PROTECTED]] Sent: 19 December 2001 13:40 To: 'Struts Users Mailing List' Subject: RE: struts-config.xml-Is there a tool to find errors in it? I use xmllint. It is very simplistic, but works well. It comes as part of the gnome xml library, but you can download the sources and compile with

RE: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread Bryant, Doug
/ hope this helps. Doug -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 2:14 AM To: Struts Users Mailing List Subject: struts-config.xml-Is there a tool to find errors in it? Hi I have an error with my struts-config.xml file and I

Re: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread antony
gt; at org.apache.catalina.core.StandardHost.start(StandardHost.java) >>>> at org.apache.catalina.core.ContainerBase.start(ContainerBase.java) >>>> at >>>> org.apache.catalina.core.StandardEngine.start(StandardEngine.java) >>>> at >

Re: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread antony
I changed to have tomcat run with 1.3 and it works fine now. Question for someone. Is the active development of struts done with Suns JDK1.3 or Suns JDK1.4? or some other vendors JDK. Cheers Tony Tuomo Syvänperä wrote: > The problem only came up occasionally. If I had two webapps and I > s

Re: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread Tuomo Syvänperä
vice.start(StandardService.java) >>> at >>> org.apache.catalina.core.StandardServer.start(StandardServer.java) >>> at org.apache.catalina.startup.Catalina.start(Catalina.java) >>> at org.apache.catalina.startup.Catalina.execute(Catalina.java) >>>

Re: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread antony
nvoke(NativeMethodAccessorImpl.java:42) >> >> at >> >sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:28) >> >> at java.lang.reflect.Method.invoke(Method.java:327) >> at org.apache.catalina.startup.Bootstrap.main

Re: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread antony
TED] wrote: > >> Hi >> >> I have an error with my struts-config.xml file and I cannot find where >> the error is. Is there a tool which will help me track down where the >> error is, the messages in the tomcat log files are not very helpful in >>

Re: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread Tuomo Syvänperä
trap.main(Bootstrap.java) > Starting service Tomcat-Apache > Apache Tomcat/4.0.1 > -end tomcat log-- > > > > > Jeff Martin wrote: > >> What kind of error do you mean? Does it parse and validate against the >> provided

Re: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread ejf
try this link. it might help. Struts Console version 1.2 is now available. http://www.jamesholmes.com/struts/ http://www.jamesholmes.com/struts/struts-console-1.2.zip [EMAIL PROTECTED] wrote: > Hi > > I have an error with my struts-config.xml file and I cannot find where >

Re: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread antony
gt; From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, December 19, 2001 2:14 AM > To: Struts Users Mailing List > Subject: struts-config.xml-Is there a tool to find errors in it? > > > Hi > > I have an error with my struts-config.xml file and I cann

RE: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread Jeff Martin
What kind of error do you mean? Does it parse and validate against the provided DTD? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 2:14 AM To: Struts Users Mailing List Subject: struts-config.xml-Is there a tool to find errors in

struts-config.xml-Is there a tool to find errors in it?

2001-12-18 Thread antony
Hi I have an error with my struts-config.xml file and I cannot find where the error is. Is there a tool which will help me track down where the error is, the messages in the tomcat log files are not very helpful in tracking down the error. Cheers Tony -- To unsubscribe, e-mail

RE: struts-config.xml question

2001-12-06 Thread Alexander Jesse
ROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 10:59 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: struts-config.xml question ahh, yes. i have that too: action /wizard/* where 'action' is the name of org.apache.struts.action.ActionServl

RE: struts-config.xml question

2001-12-06 Thread Edward Q. Bridges
-e-- On Thu, 6 Dec 2001 09:41:49 -, Jon.Ridgway wrote: >Hi Edward > >You will need to add a mapping into your web.xml. > >Jon. > >-Original Message- >From: Edward Q. Bridges [mailto:[EMAIL PROTECTED]] >Sent: 06 December 2001 09:36 >To: [EMAIL PROTECTED] &g

RE: struts-config.xml question

2001-12-06 Thread Jon.Ridgway
Hi Edward You will need to add a mapping into your web.xml. Jon. -Original Message- From: Edward Q. Bridges [mailto:[EMAIL PROTECTED]] Sent: 06 December 2001 09:36 To: [EMAIL PROTECTED] Subject: struts-config.xml question given the below struts config which is part of a war file

struts-config.xml question

2001-12-06 Thread Edward Q. Bridges
given the below struts config which is part of a war file named 'wizard.war', i am trying to have a url that appears in the client web-browser address bar of the sort: http://localhost:8080/wizard/logon but the only thing i can get to work is: http://localhost:8080/wizard/logon.jsp how can i ac

Re: web.xml & struts-config.xml - what i'm doing wrong? - SOLVED

2001-11-19 Thread Dalibor Kezele
From: "Dalibor Kezele" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> > Apache Tomcat/4.0.1 - HTTP Status 404 - /lead/basicdata.do > type Status report > message /lead/basicdata.do > description The requested resource (/lead/basicdata.do) is not available. > I have a form with 10 properties. Probl

Struts + WebSphere ..... Missing configuration resource for path /WEB-INF/struts-config.xml

2001-11-16 Thread jpablo
ction] Error Code: 500 Target Servlet: action Error Stack: Root Error-1: Missing configuration resource for path /WEB-INF/struts-config.xml javax.servlet.UnavailableException: Missing configuration resource for path /WE

add extra name-value pairs at struts-config.xml

2001-11-14 Thread Zhiyong Li
I would like to add extra name-value pairs at struts-config.xml and to be able to retrieve it from my action classes. Any one has a sample code on how to do this? I am using Struts 1.0 Zhiyong Li Platform Development iBiomatics LLC , a SAS Company (919) 653-2746 [EMAIL PROTECTED] -- To

Re: AW: Bloated struts-config.xml

2001-11-13 Thread Darren Spurgeon
. The XML parser doesn't remove > comments or anything it just condenses some of the > spacing. You can also modify the config file > afterwards. > > -james > [EMAIL PROTECTED] > http://www.jamesholmes.com/struts/ > > > --- Roland Berger <[EMAIL PROTE

Re: AW: Bloated struts-config.xml

2001-11-13 Thread James Holmes
ses some of the spacing. You can also modify the config file afterwards. -james [EMAIL PROTECTED] http://www.jamesholmes.com/struts/ --- Roland Berger <[EMAIL PROTECTED]> wrote: > There is a tool called struts console which handles > the struts-config.xml > file. Unfortunately this

AW: Bloated struts-config.xml

2001-11-13 Thread Ronaldo . Mercado
Over here, we've added entities in the header of struts-config.xml like this: http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd"; [ .. ]> and then the appropriate entries under form-beans and , like this: &part1_formbeans;

AW: Bloated struts-config.xml

2001-11-13 Thread Roland Berger
There is a tool called struts console which handles the struts-config.xml file. Unfortunately this tool doesen't format the xml file nicly after saving the struts-config.xml file to disk. But as long as you work with that tool and as long you don't want to go back to edit the xml i

Bloated struts-config.xml

2001-11-13 Thread Yee Keat
After developing around 200+ jsp and 600+ java files, the struts-config.xml is getting around 3000 lines. Is there anyway to better organize the contents of the file? Like can organiza by java path or something like that. -- Cheers, Yee Keat -- To unsubscribe, e-mail: <mailto:[EM

RE: Newbe - problem with Struts-Config.xml

2001-11-02 Thread Chen, Gin
, Bill [mailto:[EMAIL PROTECTED]] Sent: Friday, November 02, 2001 2:14 PM To: 'Struts Users Mailing List' Subject: RE: Newbe - problem with Struts-Config.xml I apologize if I gave out incorrect information. I did not realize that you could place the JSPs in the WEB-INF ... learn som

RE: Newbe - problem with Struts-Config.xml

2001-11-02 Thread Siggelkow, Bill
Subject: RE: Newbe - problem with Struts-Config.xml You can have your JSPs in the WEB-INF directory - I use that and it works fine. Are you using a in your JSP? Rob Breeds |+-> || "Drozdowsk

RE: Newbe - problem with Struts-Config.xml

2001-11-02 Thread Rob Breeds
D]> | | cc: | |

RE: Newbe - problem with Struts-Config.xml

2001-11-02 Thread Drozdowski, Terry
ling List' Subject: RE: Newbe - problem with Struts-Config.xml Your JSPs should not be in your WEB-INF folder ... try moving it up. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, November 02, 2001 10:40 AM To: [EMAIL PROTECTED] Subject: Newbe

RE: Newbe - problem with Struts-Config.xml

2001-11-02 Thread Siggelkow, Bill
Your JSPs should not be in your WEB-INF folder ... try moving it up. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, November 02, 2001 10:40 AM To: [EMAIL PROTECTED] Subject: Newbe - problem with Struts-Config.xml Hello, I am relatively new to

Newbe - problem with Struts-Config.xml

2001-11-02 Thread tnist
Hello, I am relatively new to Struts and am encountering a problem with the struts-config.xml file. I have set up a global-forwards like below: Then I set up an action like below: Then I wrote the following index.jsp page: <%@ page language="java" %> <%

Re: XML include hack to split struts-config.xml + Struts Digester

2001-10-20 Thread Renaud Waldura
MAIL PROTECTED]> Sent: Friday, October 19, 2001 1:01 PM Subject: RE: XML include hack to split struts-config.xml + Struts Digester > James, > > Thanks! I'll give this a try. > > BTW, does anyone know what the general consensus is on > being able to use these XML external en

Re: XML include hack to split struts-config.xml

2001-10-19 Thread James Holmes
Done. Please reference the message titled "[PATCH] Allow Multiple Config Files" on the dev list. -james [EMAIL PROTECTED] http://www.ejcenter.com/struts/ --- Eric Rizzo <[EMAIL PROTECTED]> wrote: > James Holmes wrote: > > > I have the "fix" for multiple config files almost > > done. I need to

Re: XML include hack to split struts-config.xml

2001-10-19 Thread Eric Rizzo
James Holmes wrote: > I have the "fix" for multiple config files almost > done. I need to create the patch and send out an > email, but in the mean time you can use: > > http://www.ejcenter.com/struts/ActionServlet.java > > Just recompile the 1.0 source with the above file and > then in your w

RE: XML include hack to split struts-config.xml + StrutsDigester

2001-10-19 Thread Vaughan Jackson
Message- > From: James Holmes [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 19, 2001 12:32 PM > To: [EMAIL PROTECTED] > Subject: RE: XML include hack to split struts-config.xml > > > I have the "fix" for multiple config files almost > done. I need to create the

RE: XML include hack to split struts-config.xml

2001-10-19 Thread James Holmes
I have the "fix" for multiple config files almost done. I need to create the patch and send out an email, but in the mean time you can use: http://www.ejcenter.com/struts/ActionServlet.java Just recompile the 1.0 source with the above file and then in your web.xml file you can use a comma (",")

RE: XML include hack to split struts-config.xml

2001-10-19 Thread Vaughan Jackson
Hi, A while ago (Sept 10), Renaud Waldura posted this issue, saying that the only way he could get this to work was to hardwire the path to an included XML file like this: http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd>; [ ] > I have found the same thing. This is not go

RE: struts-config.xml

2001-10-19 Thread James Holmes
] > > Sent: Friday, October 19, 2001 8:01 AM > > To: [EMAIL PROTECTED]; > [EMAIL PROTECTED] > > Subject: Re: struts-config.xml > > > > > > Dirk-- > > > > I am working on a patch for Struts to allow > multiple > > config files and applicat

RE: struts-config.xml

2001-10-19 Thread Vaughan Jackson
] > Sent: Friday, October 19, 2001 8:01 AM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: struts-config.xml > > > Dirk-- > > I am working on a patch for Struts to allow multiple > config files and application resource files to be > used. This would allow

Re: struts-config.xml

2001-10-19 Thread James Holmes
CTED] http://www.ejcenter.com/struts/ --- storck <[EMAIL PROTECTED]> wrote: > Hi, > > is it somehow possible that struts reads its > configuration wich is defined > in struts-config.xml and the content of the > ApplicationResources.properties > from a database? > > Is it

struts-config.xml

2001-10-19 Thread storck
Hi, is it somehow possible that struts reads its configuration wich is defined in struts-config.xml and the content of the ApplicationResources.properties from a database? Is it possible to define for each and a bundle of JSP-Pages one ApplicationRescources.properties file so I dont have to put

Re: Adding Xml Tag in "Struts-Config.xml" file

2001-10-04 Thread Christophe Marchand
An entry in your web.xml should be the solution. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 04, 2001 2:55 PM Subject: RE: Adding Xml Tag in "Struts-Config.xml" file I have an application-config.xml. But how my

Re: Adding Xml Tag in "Struts-Config.xml" file

2001-10-04 Thread Gregor Rayman
So simply put it into hard-coded WEB-INF. This is how ActionServlet looks for struts-config.xml -- gR - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 04, 2001 6:00 PM Subject: RE: Adding Xml Tag in "Struts-Config.xml&q

RE: Adding Xml Tag in "Struts-Config.xml" file

2001-10-04 Thread bruno . morin
jet: Re: Adding Xml Tag in "Struts-Config.xml" file Is it a problem, if you hard code it into a final static memmber of a class? -- gR - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 04, 2001 3:55 PM Subject: RE: Addin

Re: Adding Xml Tag in "Struts-Config.xml" file

2001-10-04 Thread Gregor Rayman
Is it a problem, if you hard code it into a final static memmber of a class? -- gR - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 04, 2001 3:55 PM Subject: RE: Adding Xml Tag in "Struts-Config.xml" file I have an

RE: Adding Xml Tag in "Struts-Config.xml" file

2001-10-04 Thread bruno . morin
uot;Struts-Config.xml" file <[EMAIL PROTECTED]> wrote: > I need to configure my application by Xml. > > Is it possible to add personnal XmlTags in the "Struts-Config.xml file > and manipulate them in a "Action" class with the Digester ? > > Thxs. > > Br

Re: Adding Xml Tag in "Struts-Config.xml" file

2001-10-04 Thread Gregor Rayman
<[EMAIL PROTECTED]> wrote: > I need to configure my application by Xml. > > Is it possible to add personnal XmlTags in the "Struts-Config.xml file > and manipulate them in a "Action" class with the Digester ? > > Thxs. > > Bruno Why in st

Adding Xml Tag in "Struts-Config.xml" file

2001-10-04 Thread bruno . morin
I need to configure my application by Xml. Is it possible to add personnal XmlTags in the "Struts-Config.xml file and manipulate them in a "Action" class with the Digester ? Thxs. Bruno

Re: Missing configuration resource /WEB-INF/struts-config.xml

2001-10-02 Thread Mike Douglass
I've partially answered my own question. I thought I'd tried this (I've been at it all day). Starting up without security eliminates the Missing configuration resource error. I guess I need to mess around with catalina.policy to give the loader access. Shouldn't it have read access by default

Missing configuration resource /WEB-INF/struts-config.xml

2001-10-02 Thread Mike Douglass
I'm trying to get a combination of struts (1.0), tomcat 4 b7 and kerb 5 working. I've got security enabled and I'm getting the above message. I've tried moving the struts config file about and changing the config parameter in web.xml but no luck at all. It sort of worked with tomcat4 b5 but a

Problem with forward tag in struts-config.xml Action Mappings.

2001-09-25 Thread John Bowen
Hi, I just moved my directory structure around for a previously working Struts app and am having problems with the action mapping forward tags. Previously all of my JSPs and struts-config.xml were running in the same webapps directory [/webapps/cowboy]. Now my struts-config.xml is now

Re: Several Data-Sources in struts-config.xml

2001-09-21 Thread Arkadiusz Janowski
- Original Message - From: Geddes, Mark (ANTS) <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 20, 2001 6:04 PM Subject: RE: Several Data-Sources in struts-config.xml > Look at struts-config.dtd. It documents the required attributes. The one you >

RE: Several Data-Sources in struts-config.xml

2001-09-20 Thread Geddes, Mark (ANTS)
in struts-config.xml I would have guessed, that instead of " To: <[EMAIL PROTECTED]> Sent: Thursday, September 20, 2001 9:15 AM Subject: Several Data-Sources in struts-config.xml Hi All, how can I define more than one data-source for one struts-application? I want to read data from two sepa

Re: Several Data-Sources in struts-config.xml

2001-09-20 Thread David Corbin
I would have guessed, that instead of " To: <[EMAIL PROTECTED]> Sent: Thursday, September 20, 2001 9:15 AM Subject: Several Data-Sources in struts-config.xml Hi All, how can I define more than one data-source for one struts-application? I want to read data from two separate datab

Several Data-Sources in struts-config.xml

2001-09-20 Thread Arkadiusz Janowski
Hi All, how can I define more than one data-source for one struts-application? I want to read data from two separate databases in one application.   I tried it this way:       description="Data Source Description"   driverClass="org.gjt.mm.mysql.Driver"   password="*"   url="jdbc:mysql:

Question about in struts-config.xml

2001-09-19 Thread Ricco Lee
I am a new user in Struts, and have a query about action mapping. Under the in struts-config.xml, if there are more than one action definition with the same action path but with different input page, will the mapping depend on the actual input page? or only the first action definition will

Re: struts-config.xml : input attribute ?

2001-09-17 Thread Erik Hatcher
"input" defines where control will return if validation errors are generated. For complete documentation on struts-config.xml, check out the comments in the DTD.You can view it here: http://cvs.apache.org/viewcvs/jakarta-struts/conf/share/struts-config_1_0.dt d?annotate=1.5

struts-config.xml : input attribute ?

2001-09-17 Thread emmanuel.boudrant
Hello, How works the input attribute in struts-config.xml ? When a request /logon.do, the /logon/logon.jsp page doesn't displayed. Thanx ___ Do You Yahoo!? -- Un e-mail gr

Re: Error parsing struts-config.xml

2001-09-14 Thread lan vo
gt; > input="/login.jsp"> > > > >> path="/login.jsp"/> > > > > > > > > > > > > > > Here is the error message when I try to run the > > login page. > > > > >

RE: Error parsing struts-config.xml

2001-09-14 Thread Thibaud CHEVALIER
Objet: Error parsing struts-config.xml > > Hello All, > I am new to struts, and I am trying to setup the framework in JBuilder5 > with > a simple login test. > I have my struts-config in the WEB-INF directory. Here is my > struts-config > xml file. Please giv

Re: Error parsing struts-config.xml

2001-09-14 Thread James Holmes
quot;loginForm" > scope="request" > validate="true" > input="/login.jsp"> > >path="/login.jsp"/> > > > > > > > Here is the error message when I try to run the > login pag

Error parsing struts-config.xml

2001-09-14 Thread lan vo
. Here is the error message when I try to run the login page. 2001-09-14 12:13:16 - path="/st" :action: Initializing configuration from resource path /WEB-INF/struts-config.xml Parse Error at line 1 column 16: Element type "struts-config" must be declared. org.xml.sax.SAXPar

RE: XML include hack to split struts-config.xml

2001-09-10 Thread Daniel Toms
PROTECTED]] > Sent: Monday, September 10, 2001 4:08 PM > To: [EMAIL PROTECTED] > Subject: XML include hack to split struts-config.xml > > > I found out about the XML include hack that can be used to split the > struts-config.xml in more manageable portions: > > http://jakart

XML include hack to split struts-config.xml

2001-09-10 Thread Renaud Waldura
I found out about the XML include hack that can be used to split the struts-config.xml in more manageable portions: http://jakarta.apache.org:8080/jyve-faq/Turbine/screen/DisplayQuestionAnswer /action/SetAll/project_id/2/faq_id/16/topic_id/196/question_id/752 It's been mentioned many

Re: How have others handled management concerns over storing database userid and password in struts-config.xml?

2001-09-05 Thread Ernest Jones
erid and password in struts-config.xml? > I am using struts way of handling database using struts-config.xml. Where would I encrypt it? > > -Original Message- > From: Ernest Jones [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 05, 2001 10:46 AM > To: [EMAIL PROT

Re: How have others handled management concerns over storing databaseuserid and password in struts-config.xml?

2001-09-05 Thread Ted Husted
complete >database. This database account information(user, password, etc.) is stored in >struts-config.xml. This database account information is what the management is >worried about. Here I meant that the general Web user should not be allowed to do things like drop tables ;-) > So ar

RE: How have others handled management concerns over storing databaseuserid and password in struts-config.xml?

2001-09-05 Thread Shamdasani Nimmi-ANS004
depending on what he/she is allowed to see but the database account(the account which is used by the application to get the connection pool) has access to the complete database. This database account information(user, password, etc.) is stored in struts-config.xml. This database account information

Re: How have others handled management concerns over storing databaseuserid and password in struts-config.xml?

2001-09-05 Thread Ted Husted
You would want to restrict what kind of access your generic Web user has to the database. If the permissions are set right on the database, then they can't do much they couldn't do from the Website anyway. You should also restrict from where the Web user login can be used. It should only be good

RE: How have others handled management concerns over storing database userid and password in struts-config.xml?

2001-09-05 Thread Shamdasani Nimmi-ANS004
I am using struts way of handling database using struts-config.xml. Where would I encrypt it? -Original Message- From: Ernest Jones [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 05, 2001 10:46 AM To: [EMAIL PROTECTED] Subject: Re: How have others handled management concerns over

Re: How have others handled management concerns over storing database userid and password in struts-config.xml?

2001-09-05 Thread Ernest Jones
g (E-mail)" <[EMAIL PROTECTED]> Sent: Wednesday, September 05, 2001 9:24 AM Subject: How have others handled management concerns over storing database userid and password in struts-config.xml? > Hi, > > Here's my problem. My management feels that storing the database account(userid

How have others handled management concerns over storing database userid and password in struts-config.xml?

2001-09-05 Thread Shamdasani Nimmi-ANS004
Hi, Here's my problem. My management feels that storing the database account(userid/password)in the config file is a security risk. According to them a hacker can get access to the whole database if they can get access to this info. Supposedly the security team wants to put the application ser

what are different scope(s) available to define for a bean in struts-config.xml

2001-09-04 Thread Venkat Jonnalagadda
what are different scope(s) available to define for a bean in struts-config.xml and how do it define themany examples...please... --Venkat.

Re: Managing struts-config.xml

2001-08-23 Thread Ted Husted
463 -- http://www.husted.com/about/struts/ O'Reilly John wrote: > > Is there any way of splitting up struts-config.xml, possibly by being able > to include xml fragements into the main file. We are working on a project > involving approx. 12 developers. We are using cvs for source contro

Re: Managing struts-config.xml

2001-08-23 Thread Gregor Rayman
"O'Reilly John" <[EMAIL PROTECTED]> > Is there any way of splitting up struts-config.xml, possibly by being able > to include xml fragements into the main file. We are working on a project > involving approx. 12 developers. We are using cvs for source control. Wh

Managing struts-config.xml

2001-08-23 Thread O'Reilly John
Is there any way of splitting up struts-config.xml, possibly by being able to include xml fragements into the main file. We are working on a project involving approx. 12 developers. We are using cvs for source control. What we are finding is that we are getting frequent conficts when trying

prefix for struts-config.xml

2001-08-23 Thread Mike Dewhirst
Is it be possible to add a prefix to the "forward" parameter in an action mapping. I'm not too hot with xml, so could you explain how to do this? I presume you could define _something_ in the struts-config.xml/web.xml and include it in the forward value... Thanks

Re: multiple struts-config.xml

2001-08-16 Thread Becky Moyer
MAIL PROTECTED]> Subject: multiple struts-config.xml Date: Thu, 16 Aug 2001 13:27:45 +0100 is it possible to have struts-config split over several files? and use some xml include directive? =** If you are not the intended recipie

<    1   2   3   4   5   6   >