How do frames work with struts?

2001-07-04 Thread Jorrin Ruiz de Arcaute, Jorge
Hello, ... I've got a frame that works perfectly on his own, but once inside the frameset it gives a ServletException. Any idea? (scope is already session). Thanks everlybody!

bean with dynamic properties

2001-07-04 Thread suhas
Hi     I was not able to understand what u mean by bean with dynamic properties ? How this can be done ?   Suhas

RE: Is there any IDE for JSP? If yes, how to configure?

2001-07-04 Thread madhu
There is an Application Server Pramati, which has got Studio and Server. Studio has got test Server also   Thanks and Regards MadhuSudhan Rao -Original Message-From: Eda Srinivasareddy [mailto:[EMAIL PROTECTED]]Sent: Thursday, July 05, 2001 12:30 PMTo: [EMAIL PROTECTED]; su

Is there any IDE for JSP? If yes, how to configure?

2001-07-04 Thread Eda Srinivasareddy
Hi Please give me the list of IDEs that can be used to run the JSPs in the IDE itself. Also provide me the steps to configuration the best IDE with any application server. Thanks EdaDo You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year!http://personal.mail.yahoo.com

Re: URL rewriting

2001-07-04 Thread suhas
it is done internally by struts tags  . That's one of the reason u are using struts tag instead of normal html tags . Suhas   - Original Message - From: rajiv mulay To: [EMAIL PROTECTED] Sent: Thursday, July 05, 2001 10:22 AM Subject: URL rewriting how to ac

URL rewriting

2001-07-04 Thread rajiv mulay
how to achive url rewriting in sturts.   rajiv

RE: Help with Resources !!

2001-07-04 Thread Debasish Ghosh
Hi - The problem was that I had "struts.jar" in the environment classpath. Once I removed that, restarted Tomcat, the problem was solved. Cheers. - Debasish --- joi <[EMAIL PROTECTED]> wrote: > Verify the path to the > ApplicationResources.properties file in web.xml > is correct. Solved my prob

RE: Help with Resources !!

2001-07-04 Thread Debasish Ghosh
Hi - The problem was that I had "struts.jar" in the environment classpath. Once I removed that, restarted Tomcat, the problem was solved. Cheers. - Debasish --- joi <[EMAIL PROTECTED]> wrote: > Verify the path to the > ApplicationResources.properties file in web.xml > is correct. Solved my prob

Form (post) data encoding and form beans

2001-07-04 Thread RUCH,SCOTT (HP-NewJersey,ex2)
The issue of form data encoding has been discussed ad nauseum, however I didn't see anything in the archives regarding how one deals with arbitrary encodings when using Struts form beans. The introduction of ServletRequest.setEncoding() in 2.3 helps alleviate the form data encoding issue, but ca

Re: Lookup ejb's in action classes

2001-07-04 Thread Pham Thanh Quan
Title: Message You must have the following in your web.xml file     ejbUserManagement   Entity(or Session)   home bean here (e.g. project.package.UserManagementHome)   remote here (e.g. project.package.UserManagement)   after that, you must also have the following in the server-specific

Re: Help on making struts with Apache + Tomcat

2001-07-04 Thread Dmitri Colebatch
On Thu, 5 Jul 2001 11:49, you wrote: > What I don't understand is why my struts app is the only one with > the Apache + Jserv + Tomcat deployment , that doesn' t work. Even the > struts-example is working... oic... sorry - I thought it was a simple problem (o: are you able to see the requests c

RE: Help on making struts with Apache + Tomcat

2001-07-04 Thread Domingo Aguilera
That is correct. I m using the ajp connector on 8007. What I don't understand is why my struts app is the only one with the Apache + Jserv + Tomcat deployment , that doesn' t work. Even the struts-example is working... I've been using this configuration for apache-soap and other servlet/jsp ap

Re: Help on making struts with Apache + Tomcat

2001-07-04 Thread Dmitri Colebatch
On Thu, 5 Jul 2001 11:31, you wrote: > I am using mod_jserv.so and Tomcat 3.2.1 ok.. not that bad then (although yes, good to change).. you're not using apache as a router from port 80 to 8080... you're using the ajp connector (I think) which runs on 8007 or 8009 depending on which one you're

RE: Help on making struts with Apache + Tomcat

2001-07-04 Thread Domingo Aguilera
I am using mod_jserv.so and Tomcat 3.2.1 Platform is Mandrake Linux 7.1 I'll try mod_jk. TKS -Mensaje original- De: Dmitri Colebatch [mailto:[EMAIL PROTECTED]] Enviado el: Miércoles, 04 de Julio de 2001 08:32 p.m. Para: [EMAIL PROTECTED]; Domingo Aguilera Asunto: Re: Help on making st

Re: Help on making struts with Apache + Tomcat

2001-07-04 Thread Dmitri Colebatch
Hi, On Thu, 5 Jul 2001 08:05, Domingo Aguilera wrote: > that are working using Apache as a router from port 80 to port 8080 > of tomcat. You shouldn't be using http tunnelling, mod_jk is much better. Look at the mod_jk doco in the docs directory of the tomcat dist. cheesr dim > > I don't kn

Re: Struts Templates Example in VAJ 3.5.3/WTE - Problem

2001-07-04 Thread Martin
Cedric, very  briefly tried adding flush="true" to all tags, resulted in the following error:org.apache.jasper.JasperException: Attribute flush invalid according to the specified TLD.   Jon, the browser used is IE5.5, there weren't any exceptions to the console. I've attached part of the so

Re: Team development with struts

2001-07-04 Thread Ted Husted
The "namespace" for the properties file can be arranged so that each developer can add new tokens to separate copies, and then the copies can be concatenated as part of the build process. The same sort of thing can also be done with the struts-config.xml if you follow the workaround recently pose

Pls send a ActionMapping & ActionForward snip

2001-07-04 Thread kuma.cra
Hi, folks i have been utlising the struts framework and some hoe i modified the ActioMapping & ActionForward thus would any one be so kind and post a snippet of the .class file as mine are still pre-compiled and wont compile to a class file. Thus all the remainder .java classes that are associate

RE: Help on making struts with Apache + Tomcat

2001-07-04 Thread Domingo Aguilera
Yes I have all that Indeed I have installed apache-soap and a couple of servlert/jsp apps ( not MVC ) that are working using Apache as a router from port 80 to port 8080 of tomcat. I don't know if Struts needs something special that relates to this Apache-Tomcat deployment. TKS -Mensaje or

RE: Help on making struts with Apache + Tomcat

2001-07-04 Thread Martin Duffy
1. Do you have the jserv module for Tomcat in the Apache modules directory? 2. Do you have an include statement in your httpd.conf for including the settings for tomcat? something like include /tomcat/conf/tomcat-apache.conf (this is the auto genereated file that is created each time that

RE: Help on making struts with Apache + Tomcat

2001-07-04 Thread Domingo Aguilera
Tks for the help. The browser also tells me that. This is a problem of Apache not talking as desired to tomcat. When I run the app from tomcat ( port 8080 ) alone everything is right , but when trying to run from Apache (which is installed in port 80) this error is being reported. Under webapp

Team development with struts

2001-07-04 Thread Valeriy Zavidnoy
Our team is starting to use Struts, that means each developer needs to edit struts-config.xml and *.properties files. The issue we encountered is that several guys (12-15) want to edit these getting huge files at the same time. Of course, we are using currently source control by VSS, we thought ab

Re: Help on making struts with Apache + Tomcat

2001-07-04 Thread Rick Smith
This might help http://www.iqinternet.com/services/faq/4.htm Domingo Aguilera wrote: > > I moved the app to $TOMCAT_HOME/webapps but I'm still having the 403 error. > > By moving the app to $TOMCAT_HOME/webapps I'm avoiding the inclusion of a > tag in server.xml (as in struts-example). > > A

Report to Recipient(s)

2001-07-04 Thread Paladin
Incident Information:- Originator:"Niall Pemberton" <[EMAIL PROTECTED]> Recipients:<[EMAIL PROTECTED]> Subject: RE: NotEqual Tag to compare multiple properties to a value Message from "Niall Pemberton" <[EMAIL PROTECTED]> was quarantined because it contained banned content.

RE: NotEqual Tag to compare multiple properties to a value

2001-07-04 Thread Niall Pemberton
You cant do that with the struts NotEqualTag you can however with the IF/THEN/ELSE tags I wrote which Ted Husted has posted on his site:   http://www.husted.com/about/struts/resources.htm#extensions           .                 Niall    

Re: URL Re-writing?

2001-07-04 Thread Kief Morris
David White typed the following on 11:10 AM 7/4/2001 -0700 >What I actually see is that sometimes I do not see the value displayed >and other times I will see it. Even when cookies are enabled, I may >still see this value. On the first request to a web application, your browser will not have a co

RE: Help on making struts with Apache + Tomcat

2001-07-04 Thread Domingo Aguilera
I moved the app to $TOMCAT_HOME/webapps but I'm still having the 403 error. By moving the app to $TOMCAT_HOME/webapps I'm avoiding the inclusion of a tag in server.xml (as in struts-example). Also the tomcat-apache.conf file includes the directives very similar to what were related to struts-ex

URL Re-writing?

2001-07-04 Thread David White
I am new to struts/jsp/etc. I understand that the struts framework can automatically handle session management via URL re-writing if the user's browser does not permit cookies to be used. The funny thing is that sometimes, my browser shows a jsessionid value in the address box and other times it

AW: Lookup ejb's in action classes

2001-07-04 Thread Jan Heise
Title: Message hi,   i use the jndi-browser that comes with sun's jndi-examples once in a while to check if my context contains what i expect to. on my last project with orion (but i did not use struts) i also set   java.naming.factory.initial=com.evermind.server.ApplicationClientInitialCon

Re: Help on making struts with Apache + Tomcat

2001-07-04 Thread Rick Smith
You need to create a context or virtual host in the server.xml file. Domingo Aguilera wrote: > > Hi, > > I've been using the combination of Apache + tomcat 3.x > > I've sucessfully installed struts-documentation.war and struts-example.war . > > When tested both apps work from www.mysite.com:

Re: Forwarding/redirecting to action mappings rather than directly to JSPs

2001-07-04 Thread Jim Quittenton
The relative path redirect issue is likely caused by Silverstream (as of 3.7.1) not fully implementing the servlet 2.2 spec. If so I'm left with trying to add the forwards to the actionservlet at runtime. - Original Message - From: Jim Quittenton To: [EMAIL PROTECTED]

Lookup ejb's in action classes

2001-07-04 Thread joi
Title: Message I have a problem performin lookup on my ejb's in struts action classes. I always get NameNotFoundException. I'm pretty sure that my ejb-jar.xml and web.xml are correct. Is this a common  problem accessing the Context through the struts action classes? I'm using orion 1.5.2

Forwarding/redirecting to action mappings rather than directly to JSPs

2001-07-04 Thread Jim Quittenton
Hi   I have an action class from which I need to forward to another action mapping (rather than directly to a JSP), and I have managed to get this working by setting up a global forward to an absolute path with rediredt set to true as follows:         http://myServer/myDB/myApp/myMapping.do

RE: Help with Resources !!

2001-07-04 Thread joi
Verify the path to the ApplicationResources.properties file in web.xml is correct. Solved my problem.. -Original Message- From: Keith Bacon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 04, July, 2001 15:26 To: [EMAIL PROTECTED] Subject: RE: Help with Resources !! I also had index.title

RE: Help with Resources !!

2001-07-04 Thread Keith Bacon
I also had index.title not found & ClassNotFoundException occurring in struts-example & other webapps (Windows 98, Tomcat3.2.2, struts-1.0-b3). My Action & Form classes weren't found by struts but I could instantiate them directly in a JSP. Does this imply that when a class is loaded from java cod

What are the chances of getting struts up and running on Iplanet WebServer 4.1???

2001-07-04 Thread Mikkel Bruun
Subject says it all... been reading the additional installtion instructions for 4.2, and it seems quite easy...but what about 4.1 thanks! Mikkel Bruun [EMAIL PROTECTED] Valtech Kanonbaadsvej 10 DK-1433 Copenhagen Tel +45 32 88 20 00 Fax +45 32 88 20 20 Direct + 45 32 88 22 73

specifying multiple forms in an action mapping

2001-07-04 Thread Narasimhan, Shyamala
hi i would like to use two different forms in an action class... kindly advise as to how to specify the action mapping thanks shyamala.

Re: SV: pls Help Invalid Package Declartions .java File Wont compile

2001-07-04 Thread Chuck Amadi
Hi again, i have encountered within the strus-examples a class path that states the wrong name.I have attached a visual for your perusal. Please comment Cheers chuck. Peter Alfors wrote: > Are you looking for the ActionMapping class file or java file? > either way, it should be in your download

Re: SV: pls Help Invalid Package Declartions .java File Wont compile

2001-07-04 Thread Chuck Amadi
Hi , i have located and redeployed struts-package ( jakarta-struts1-.0-b2)  to tomcat-3.2.2 . Thus renemd the struts-blank to bbnp ( my other webapp is bbnpa ) anyway on restarting tomcat -3.2.2 i have the following - ROOT,admin,bbnpa(original webapp),examples,bbnp(struts-blank),test & the other

Frame

2001-07-04 Thread Jorrin Ruiz de Arcaute, Jorge
There's a frame (frizq-admin_imgs.jsp) that works alone (as a page), but I can't make it work = as a frame. It produces a ServletException, I don't know why. The frame-parent-pages are these: Administración de imágenes --- Generación Dinámica de Webs

Re: SV: pls Help Invalid Package Declartions .java File Wont compile

2001-07-04 Thread Chuck Amadi
Hi, i have included all the .jar's within my WEB-INF\lib dir. .Nevertheless cheers . Meeraj Kunnumpurath wrote: >Part 1.1Type: Plain Text (text/plain) -- The views expressed by the sender of this message don't necessarily represent those of Brecon Beacons National Park Authority. This messa

Re: Access a relational database, problem

2001-07-04 Thread Maik Mrazovic
Problem solved, it works now.   I forgot a xml-end tag, that was all! But it´s strange, that Tomcat didn´t made an xml-input-error.     Regards,   Maik Mrazovic

Access a relational database, problem

2001-07-04 Thread Maik Mrazovic
I want to access relational database via Struts and JDBC. At Struts-User-Guide, 2.6, are instructions for creating the data-source - section at struts-config.xml and a example perform-Method for access.   But it does not work, I can make a connect manual, but not with the struts data-source

RE: Problems with iterate

2001-07-04 Thread Torsten Terp
Hi, Im using the proposed index extension, made by Dave Hay. It can be found on Ted Husted's site: http://www.husted.com/about/struts/resources.htm#extensions - "Indexed Tags" ^terp > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 04, 20

RE: does struts provide multip-channel rendering?

2001-07-04 Thread Jon.Ridgway
Hi Aysen, No Struts does not explicitly support multi channel rendering. You can use Struts to simplify the generation of an xml file you can then transform (XSLT) this into which ever channel you require. There are examples of doing this at : http://www.javaworld.com/jw-02-2001/jw-0209-xmlj2ee

RE: SV: pls Help Invalid Package Declartions .java File Wont compile

2001-07-04 Thread Meeraj Kunnumpurath
Please add struts.jar in your classpath when you compile your classes.   Regards -Original Message-From: Chuck Amadi [mailto:[EMAIL PROTECTED]]Sent: Wednesday, July 04, 2001 9:43 AMTo: [EMAIL PROTECTED]Subject: Re: SV: pls Help Invalid Package Declartions .java File Wont

Re: Problems with iterate

2001-07-04 Thread suhas
That was supposed to be indexed iterator tag . Might not be in the struts - official build Suhas - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 04, 2001 9:37 AM Subject: RE: Problems with iterate Hi There is according to documentation an

Re: SV: pls Help Invalid Package Declartions .java File Wont compile

2001-07-04 Thread Chuck Amadi
Hi, again i believe that i can create a classes dir at the same level as WEB-INF\ Thus if i C & P and thereby i will then i have a class path as follows classes\org.apache.struts.action.ActionMapping.class is this feasiable as i can do away with hyphen within WEB-INF. Peter Alfors wrote: Ahh... I

Re: SV: pls Help Invalid Package Declartions .java File Wont compile

2001-07-04 Thread Chuck Amadi
Hi, Peter i have completed the file structure albiet it is sensative to the hyphen separting. package WEB-INF.classes.org.apache.struts; Thus i am aware that i have to use the dot notation.or can i begin the package path from say org\apache\struts\action\ActionMappings.java Cheers Chuck. Peter Al

RE: Problems with iterate

2001-07-04 Thread guido . roth
Hi There is according to documentation and TLD no attribute 'indexed' for the html:text-tag in Struts 1.0. What version of Struts are you using? Guido |-+| |Guido Roth |SYSTOR AG | | |

Database Access

2001-07-04 Thread Aapo Laakkonen
I'm currently using Struts connection pooling facilities from Action classes. Now I'm going to implement data access logic in my data access components, but I'm not sure that how can I still use struts based connection pooling. Do I have to transfer DataSource object or servlet ocject from Action

Re: SV: pls Help Invalid Package Declartions .java File Wont compile

2001-07-04 Thread Chuck Amadi
Hi, you got it i couldn't recall what i had done as i have been install a few taglib's in order to have the right tools . Anyway i will try out your suggestion. Much appreciated for you help.Can't wait when i get a clear understanding of jsp and beans. Cheers Chuckie Peter Alfors wrote: > Ahh...

Re: Struts Templates Example in VAJ 3.5.3/WTE - Problem

2001-07-04 Thread Cedric Dumoulin
It looks like you don't use the latest version of Struts. The flush attribute is valid with since few weeks. Try to update your Struts jar and tlds. Cedric Martin wrote: > Cedric, very briefly tried adding flush="true" to all > tags, resulted in the following error: > org.apache.jaspe

Re: variable number of inputs

2001-07-04 Thread guido . roth
I was asking a very similar question to the mailing list a few days ago. This is the conclusion I did draw from the answers I got: The answers are: - Struts 1.0 does not support variable indexing - there exists a workaround employing some JSP code(see below) - there exists an inofficial impleme