Ang: Please Help: Struts issues in Weblogic5.1.0 (sp5+)

2001-01-18 Thread Magnus Petersson
I have encountered exactly the same problems and solved them the same way as described by Eric Pearson. This solution seems to work well as long as we run on WLS 5.1 sp6. There is another issue though. In WLS 5.1 sp8 the load-on-startup tag in the deployment descriptor has been fixed and works

Re: How to pass parameter to a JSP inside a template?

2001-01-18 Thread Michael Mok
Hi First thanks to Deadman for providing a tip to handle this challenge. I eventually found a better solution. The template tag will forward the request parameters through to the included JSP pages. Hence there is no need to add any "passing of parameters" code in the template page. I simply add

RE: Please Help: Struts issues in Weblogic5.1.0 (sp5+)

2001-01-18 Thread Anderson, Trey
I took a look and saw no struts.jar file outside of a lib or _deployment_dir of a web app. The start.cmd file of weblogic doesn't point to any dir that contains a struts.jar file and the Weblogic.properties file only contains the one web app config. Is the point that the files being loaded by

Re: escape characters in querystring

2001-01-18 Thread Peter Alfors
Thanks for the quick response Rodney! Im not sure how I overlooked those classes. I searched JavaSoft for 'escape', and 'query string' and did not find any mention of them. It appears that the query string is automatically encoded (at least for spaces). However, I imagine that it is still a goo

RE: escape characters in querystring

2001-01-18 Thread Waldhoff, Rodney
Title: RE: escape characters in querystring > However, when you retrieve the querystring from the request > object using getQueryString(), the data is not un-escaped.  > I could write a simple class the handle this problem, > however, I was wondering if there is a better way, or some > method

RE: Please Help: Struts issues in Weblogic5.1.0 (sp5+)

2001-01-18 Thread Anderson, Trey
Thanks for the quick response. I hope the following is the info you are looking for. Please advise if this isn't sufficient. My test application is configured as a web app (war file) setup as below: weblogic.httpd.webApp.test=D:/Java/Work/WAR_Dir weblogic.httpd.webApp.defaultWebApp=D:/Java/Wo

Re: Passing form property into custom tag

2001-01-18 Thread Peter Alfors
You cannot nest taglibs within each other. (A taglib cannot be an attribute for another taglib). However, you could retrieve the countrycode value as a script variable, and then use that as the attribute of the taglib. The value for the code attribute of decode must be TRUE for this to work...

escape characters in querystring

2001-01-18 Thread Peter Alfors
Hello all, I have run across the instance where the data that I am passing in the query-string has spaces. The spaces in the query-string are escaped (using %20). I have a class that retrieves the querystring and parses it into a hashmap with key/value pairs. However, when you retrieve the

Passing form property into custom tag

2001-01-18 Thread Brian Bowman
This has got to be very simple but I can't figure it out. All I want to do is pass a form bean property as an attribute value to a custom tag. My custom tag is called decode and it just converts a code(in this case country) into a full name. The code comes from the form associated with this page(i

Getting Struts to Work with Weblogic 5.1 SP6

2001-01-18 Thread Markus Meissner
Hi, has anyone gotten any of the recent nightly builds of Struts 1.0 MVC framework to work with WLS 5.1 sp6? Any suggestions would be helpful. Thanks, Markus

RE: Please Help: Struts issues in Weblogic5.1.0 (sp5+)

2001-01-18 Thread Matthew Heaton
I don't know the solutions of getting struts to run on WL 5.1 but it seems to work fine on WL 6.0 -Original Message- From: Anderson, Trey [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 18, 2001 10:20 AM To: '[EMAIL PROTECTED]' Subject: Please Help: Struts issues in Weblogic5.1.0 (sp5+

DreamWeaver Integration for form taglib

2001-01-18 Thread Rooms, Christoph
Hi, Any dreamweaver specialists out there that has made their own struts toolbar ? Might make things a lot easier to make a jsp page with a form using struts taglibs ... greetz, Christoph

Please Help: Struts issues in Weblogic5.1.0 (sp5+)

2001-01-18 Thread Anderson, Trey
I am new to struts and find it a very exciting and powerful solution which I would like to implement into all our solutions. After implementing a small sample application, I have encountered the dreaded ClassCastException and am trying to understand it's cause and appropriate solution. After n

struts-test errors

2001-01-18 Thread Henry J Cooper
hello, i've intalled struts-test.war on weblogic 6.0 and have found two of the test to fail. 1) under BEAN Tags the test fails with a "The page cannot be displayed" error in the browser and the following in the console: <[WebAppServletContext(3930716,struts-test)] Servlet failed with Exception

Re: "unsubscription" requests....

2001-01-18 Thread Ted Husted
The repeated "unsuscribe" requests are strange. This is what shows as the Admin commands. --- Administrative commands for the struts-user list --- I can handle administrative requests automatically. Please do not send them to the list address! Instead, send your message to the correct command

Hyperlink - Need help

2001-01-18 Thread SPandith
Hi, I need to include a parameter for a hyperlink. I have enumerate which operates just like iterate. Here is my code: Here I want t

AW: Always the same URL

2001-01-18 Thread Oliver . Lauer
Hi, I guess there might be a 'simple' workaround for all IPLANET6.0-User. Coding the following in the ActionServlet: protected String processPath(HttpServletRequest request) { String path = null; //IPLANET6.0_BEGIN path = (String)request.getParameter("iplanetpath");

Re: HASHTABLE - NEED HELP URGENT

2001-01-18 Thread Ted Husted
Using the 1.0 iterate tag (never used 0.5 or enumerate myself), you would print the elements of a Hashtable like this: <%@ page language="java" %> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>