Re: [OT] Applet communication with web app

2004-03-02 Thread Thad Humphries
We use HTTP/HTTPS. Our application is a web frontend to a document management a workflow system (http://www.mindwrap.com). As such we move both text and binary data between applets and the server, calling both servlets and JSPs depending upon the requirement. On Monday 01 March 2004 23:03, An

Re: html:text question

2004-02-23 Thread Thad Humphries
The message-resource file is loaded at startup an held in memory as an instance of org.apache.struts.util.MessageResources. The instance is stored in the ServletContext. To access it from a JSP, look for the Globals.MESSAGES_KEY attribute: <%@ page import="org.apache.struts.Globals" %> <%@ pa

Re: Extra Lines in Compiled JSP

2004-02-20 Thread Thad Humphries
Why care about how generated code looks? This approach makes the code you maintain harder to read. On Friday 20 February 2004 14:01, Gopalakrishnan, Jayesh wrote: > I must have had the same dream !! > I remember that tomcat config thing..and not too > long ago. I am surprised you couldn't fi

Re: Sturts JSP and Javascript

2004-02-19 Thread Thad Humphries
It's not much different than Javascript in any JSP. Cedric Dumoulin's "Tiles Advanced Features" (http://www.lifl.fr/~dumoulin/tiles/ tilesAdvancedFeatures.pdf) has several examples that use Javascript. On Thursday 19 February 2004 12:14, Ramadoss Chinnakuzhandai wrote: > Can anybody provide me s

O'Reilly Struts book missing info (Tiles)

2004-02-19 Thread Thad Humphries
In case this helps some people, yesterday I stumbled on a missing bit of necessary information in the otherwise very good book, "Programming with Jakarta Struts," by Chuck Cavaness (Nov 2002 printing): Chapter 14, 'Using Tiles', fails to explain the TilesRequestProcessor. I can find no mentio

Tiles and message-resources

2004-02-18 Thread Thad Humphries
Is there any way to for a tlles definition to take a value from the message-resources file? For example, if I wanted only one file to control my applications text, could pull the value from the message-resources file like a JSP would do.

Re: passing beans to tiles

2004-02-18 Thread Thad Humphries
ribute in one of the enclosed tags - or > you specifed name="screenRec" on a tag before your or something > along those lines. > > What happens if you just have a simple screenList-body.jsp - no tags, just > bit of html - does it work now - if so that means tiles is worki

passing beans to tiles

2004-02-17 Thread Thad Humphries
I'm trying to move a simple test application to tiles but I cannot get a list of object from my servlet to the tile. It works without tiles. In struts-config.xml I have ... In screenList.jsp, I have As I said, the above approach works. Now, try

redirecting from applet

2003-12-16 Thread Thad Humphries
see it in the applet's Java console via println and in the browsers URL navigation field. So why do I get switched to login.jsp vs. the Success action like I do when this is all JSP? -- Thad Humphries "...no religious test shall ever be required Web Development Manage