Visual Basic to struts connection

2002-07-13 Thread Martin Kuypers
Hi all Can anybody tell me what is the best way to connect the Microsoft world (Visual Basic) to a Struts based platform I woul appreciate some example code -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

FW:

2002-07-13 Thread Adarsh
Hi I am very new to struts.How does struts supports client side scripting like java script??? Can u all just help me out.. Sample code would be an advantage bye Adarsh Gupta Software Engineer Patni Computer Systems Limited SDF-7, 4th Floor, Unit 17, SEEPZ Tel : (022)-8290479/8291454 Extn :

RE:

2002-07-13 Thread Manish_Purang
Hi You can include javascript in the same fashion as you would do it in normal html page. There's not much difference in it..! Rgds -Original Message- From: Adarsh [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 13, 2002 5:45 PM To: Struts Users Mailing List Subject: FW: Hi I

RE:

2002-07-13 Thread Adarsh
thanks manish for ur quick reply. i just want to have a sample code . isearched on the net for it . it told that we can validate from the action errors method but i want client side scripting. again using script in the same page as jsp would break the laws for MVC model.Can we include a js file

how to use Tomcat 4.1x user management with struts?

2002-07-13 Thread rainer juenger
Hi. I want to use the Tomcat user managment with struts. Is there already some sample code or tutorial or so that makes starting somewhat easier??? thanks for any help, Rainer

Re: Retrieving forward .../ elements in order

2002-07-13 Thread Stan Baranek
Use a TreeMap to keep them in sorted order and write a tag to spit out the html. It's also handy to sort with case-insensitive like: TreeMap tmpMap = new TreeMap(String.CASE_INSENSITIVE_ORDER); tmpMap.putAll(Map map); Duke Ronlund wrote: Hi, I would like to be

Re: how to use Tomcat 4.1x user management with struts?

2002-07-13 Thread @Basebeans.com
Subject: Re: how to use Tomcat 4.1x user management with struts? From: Vic C. [EMAIL PROTECTED] === On the Struts resources pages there is a link to Security/JAAS. rainer juenger wrote: Hi. I want to use the Tomcat user managment with struts. Is there already some sample code or tutorial

Re: Retrieving forward .../ elements in order

2002-07-13 Thread Craig R. McClanahan
On 13 Jul 2002, Duke Ronlund wrote: Date: 13 Jul 2002 15:18:48 +1000 From: Duke Ronlund [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Retrieving forward .../ elements in order Hi, I would like to be

Re: logic tag to check value of bean

2002-07-13 Thread rainer juenger
thanks Keith, you are write, now it works!! (wrong bean name, I was using the objekt name instead of the stored variable name within the session context!) Rainer I don't see why that wouldn't work. I use the same syntax, the only difference is that I don't put scope=session. I suppose you

Re: how to use Tomcat 4.1x user management with struts?

2002-07-13 Thread rainer juenger
Hi, thanks for the hint! So JAAS seams to be the Keyword. Is there a sample somewhere ? JAAS/Tomcat/Strus authentification? Rainer On the Struts resources pages there is a link to Security/JAAS. rainer juenger wrote: Hi. I want to use the Tomcat user managment with struts. Is there

struts-config: input - not working

2002-07-13 Thread Stan Baranek
Hi yall, Using Struts 1.01 and Tiles: I'm having a problem getting a populated ActionForm object from my .jsp page to my Action. I get what appears to be a new() ActionForm on the request or session (depending on scope). I know it's not the reset() method of my form that's causing this.

RE:

2002-07-13 Thread Ade Barkah
You can include a js file just like in a normal html page. One caveat: since the js file is external to the file and wont be compiled as part of the JSP, you can't use any JSP or struts tags inside the js file. regards, -Ade -Original Message- From: Adarsh [mailto:[EMAIL PROTECTED]]

Re:

2002-07-13 Thread Eddie Bush
The concept of client-side validation is flawed anway - at least with current implementations. You have no guarantee the user hasn't turned off JavaScript. If you do use client-side validation, don't forget to also implement server-side validation! The server is the only place you can

RE: Readonly on html:text

2002-07-13 Thread James Mitchell
If I remember correctly, Netscape 4.x doesn't support disabling form fields. James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the Open Minded Developer Network http://www.open-tools.org/struts-atlanta -Original Message- From: Chilukuri, Pratap N Mr USAREC

Struts installation and web.xml question

2002-07-13 Thread @Basebeans.com
Subject: Struts installation and web.xml question From: BillB [EMAIL PROTECTED] === Hi, I'm trying to add Struts to my existing webapp under Tomcat 4.* . The following is the web.xml file that I have after installing Struts. The problem is with the weloome jsp file (start.jsp). It is no longer

RE: container managed security

2002-07-13 Thread Ade Barkah
Actually, in my experience, any real application with moderate complexity will have security needs beyond what current container- managed authorization schemes can provide... i.e. most apps will need to use both container and application managed security. I'd even go one step further to say that