Search the web
Sign In
New User? Sign Up
jrun-interest · Java Servlet engine
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 13803 - 13832 of 16245   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13803
This should help ! :) JRun Tag Library Reference <file:///C:/Program%20Files/Allaire/JRun%20Studio%203.0/Help/JRun_Tag_Librar y_Reference/customactions4.htm>...
Stacy Young
Stacy.Young@...
Send Email
Sep 2, 2001
4:29 am
13804
How do I format a result set in JSP? dolarformat, numberformat, dateformat, etc.? Thanks, Rich ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Structure...
Rich Tretola
ibtoad@...
Send Email
Sep 3, 2001
1:31 pm
13805
Use the formatting classes in java.text, for example java.text.NumberFormat. Here is an example: <% java.text.NumberFormat nf = ...
Christophe Coenraets
ccoenraets@...
Send Email
Sep 3, 2001
3:42 pm
13806
Jay: I think you want the other form of include: <%@ include file="myIncludedFile.jsp" %> The <jsp:include> tag doesn't pass your data structures, etc. (that's...
Laurence Middleton
lars@...
Send Email
Sep 3, 2001
5:01 pm
13807
Hi, I try to convert an XML document to HTML with the Xalan XSLT processor and Xerces parser. The problem: It still seems that old JRUN JAXP/DOM/SAX classes...
Clemens Marschner
cmarschn@...
Send Email
Sep 3, 2001
5:21 pm
13808
Undo everything you've done to JRun's configuration, including -D args. Put the Xalan and Xerces jars in the WEB-INF/lib of your Web application. Everything...
Scott Stirling
sstirling@...
Send Email
Sep 3, 2001
7:43 pm
13809
I tried but it still does not work. Is it possible to have a query in an included page and that query referenced and output in the calling page, thereby...
Jay
Run_Jay@...
Send Email
Sep 4, 2001
12:32 am
13810
How about 'saving' the query to the request scope as below: ... <% request.setAttribute("ClipsQuery", get_Clips); %> You should then be able to reference it in...
Nathan Wheat
nathan.wheat@...
Send Email
Sep 4, 2001
12:51 am
13811
What does JRun studio offer that makes it easier to use than using CF Studio with the jsp toolbar? Thanks, Rich ...
Rich Tretola
ibtoad@...
Send Email
Sep 4, 2001
12:45 pm
13812
OK here is my code. How do I format the UnitPrice into a dollarformat? <html> <head> <title>Database QRY</title> </head> <%@ page import="java.sql.*" %> ...
Rich Tretola
ibtoad@...
Send Email
Sep 4, 2001
12:57 pm
13813
I made the changes in your code below. ... From: Rich Tretola [mailto:ibtoad@...] Sent: Tuesday, September 04, 2001 8:56 AM To: JRun-Talk Subject:...
Christophe Coenraets
ccoenraets@...
Send Email
Sep 4, 2001
1:07 pm
13814
Thank You very much, Rich ... From: Christophe Coenraets [mailto:ccoenraets@...] Sent: Tuesday, September 04, 2001 9:04 AM To: JRun-Talk Subject:...
Rich Tretola
ibtoad@...
Send Email
Sep 4, 2001
1:17 pm
13815
Is there a global page that executes when any page in the jsp app is called? Similar to the application.cfm page in cf? Thanks, Rich ...
Rich Tretola
ibtoad@...
Send Email
Sep 4, 2001
1:45 pm
13816
... called? ... global.jsa - but it's not quite the same as application.cfm because it only gets called at the start of a session, not before every single...
DeVoil, Nick
Nick.DeVoil@...
Send Email
Sep 4, 2001
2:06 pm
13817
Well, for one thing, it's got a built in interface to the Java compiler to facilitate compiling servlets and beans. Though indeed there may be still better...
Charles Arehart
carehart@...
Send Email
Sep 4, 2001
2:32 pm
13818
Clemens, For step by step instructions on how to do this, you can refer to the JRun DevCenter article "JRun and XML" at ...
Matthew Horn
mhorn@...
Send Email
Sep 4, 2001
2:34 pm
13819
Thanks for your reply. I was on vacation and now I'm temporarily working on some COM stuff (yuck), but I'll try out your ideas as soon as I get back on it. ...
Mark A. Sandee
msandee@...
Send Email
Sep 4, 2001
3:20 pm
13820
To do this in an EJB you need to add a container-transaction element in your ejb deployment descriptor, and mark your methods which write blobs as "Required"....
pdw
pdw@...
Send Email
Sep 4, 2001
6:35 pm
13821
Hi, Thank you very much for the link. I could use this information very well (see a remark below). However, there ist still one problem: The stylesheet uses a...
Clemens Marschner
cmarschn@...
Send Email
Sep 4, 2001
7:23 pm
13822
I believe its also Jrun specific...if ur concerned about portability. :\ ... From: DeVoil, Nick [mailto:Nick.DeVoil@...] Sent: Tuesday, September 04,...
Stacy Young
Stacy.Young@...
Send Email
Sep 4, 2001
7:29 pm
13823
... <crumb> Under servers/default/WEB-INF/classes you can _unpack_ jars so that they can be loaded by the classloader as WEB-INF/classes/com/apache/xalan/* ;...
Mullee John - ZGI
john.mullee@...
Send Email
Sep 5, 2001
7:40 am
13824
I have made a little progress in debugging JRun apps from Forte for Java. I have been able to set breakpoints and have Forte break on them in the beans I use....
McDowell, Mark
McDoMa@...
Send Email
Sep 6, 2001
7:38 am
13825
Folks, this is a long-ish note with a few questions about trials and tribulations of getting CFServlet to work on a new machine and Jrun install--first getting...
Charles Arehart
carehart@...
Send Email
Sep 6, 2001
9:59 am
13826
Hi Mark, Unfortunately you can't do this. You can't set breakpoints with JSP code and break at them when using Forte and JRun 3.1 (this is also the case with ...
John Schladenhauffen
jschlade@...
Send Email
Sep 6, 2001
5:55 pm
13827
hi! ... ..if it already works with other debuggers; what about trying (just once with) (more) other debuggers as well?; -->> just to narrow down the problems;...
kkonaka@...
Send Email
Sep 6, 2001
6:35 pm
13828
Hi Mark, Unfortunately you can't do this. You can't set breakpoints with JSP code and break at them when using Forte and JRun 3.1 (this is also the case with ...
John Schladenhauffen
jschlade@...
Send Email
Sep 6, 2001
8:43 pm
13829
Help, I run JRun developer edition on my desktop (NT 4.0 SP6a) for testing stuff before deploying to a "live" JRun server. The live server runs on Solaris 2.7...
Johansen, Roar
roar.johansen@...
Send Email
Sep 7, 2001
8:31 am
13830
Hello, I was wondering if anyone knows if there are any known security issues with Jrun 3.1. If there are where could I find out about the patches for these ...
Makani Lum
Makani.Lum@...
Send Email
Sep 7, 2001
8:31 am
13831
Think I saw threads on this problem before, but never ran into it until now. What's the best way to manage JRun's memory usage from within the app server...
Jackie Comeau
JComeau@...
Send Email
Sep 7, 2001
8:31 am
13832
Stop All JRun Servers that might be running Reinstall the 3.0 again. Reboot Stop All JRun Servers that might be running Uninstall 3.0 Reboot Stop All JRun...
Gene Webb
gene.webb@...
Send Email
Sep 7, 2001
8:31 am
Messages 13803 - 13832 of 16245   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help