Does JRun support the form input type=file that allows one to select a file name and then upload the file to a server? If so, what has to be done on the ...
Joe Latteo
joe.latteo@...
Jun 1, 2000 11:51 am
8567
Thanks everyone for the responses. After much hairpulling, the problem did turn out to be the servlet. Commenting everything out except for a simple println...
jim moore
jim@...
Jun 1, 2000 4:27 pm
8568
Check out the class com.oreilly.servlet.MultipartRequest which you can find at Jason Hunter's site: www.servlets.com There is, also, good documentation at the...
Charles Angevine
angevine@...
Jun 1, 2000 5:01 pm
8569
I finally tracked down the offending lines of code: Properties systemTable = System.getProperties(); systemTable.put( "myObject.instance", instance); I know...
jim moore
jim@...
Jun 1, 2000 6:57 pm
8570
Thanks for the response... Without doing anything special to the headers, I'm getting a header: Cache-Control: no-cache="set-cookie,set-cookie2" When I try to...
Ryan_Hope@...
Jun 1, 2000 8:32 pm
8571
Any chance your servlet is forwarding to another servlet (or itself)? If there's a typo in the url, it could lead to the error you're seeing. You might want...
Brian Williams
Brian@...
Jun 1, 2000 8:55 pm
8572
Can you post the source code for the servlet in question? Hard to comment without it. *********** REPLY SEPARATOR *********** ... Archives:...
Mike Hogarth
mahogarth@...
Jun 1, 2000 9:12 pm
8573
Question: Is there an equivalent to the Cold Fusion application.cfm, i.e. a file/servlet that is parsed with every page request in J2EE/JSP development? Intro:...
!jeff!
jeff@...
Jun 1, 2000 10:00 pm
8574
!jeff!
jeff@...
Jun 1, 2000 10:01 pm
8575
Thanks very much Charles! ... From: Charles Angevine [mailto:angevine@...] Sent: Thursday, June 01, 2000 9:52 AM To: jrun-talk@......
Joe Latteo
joe.latteo@...
Jun 1, 2000 10:31 pm
8576
Servlet not found may mean 1. The servlet name you've specified in the url is not correct...The servlet name is case sensitive. 2. If your servlet is defined...
Ronel Sumibcay
sumibcay@...
Jun 2, 2000 1:59 am
8577
Use "setProperty()" ... From the JDK1.2 Help file A property list can contain another property list as its "defaults"; this second property list is searched if...
Hauser, James
James.Hauser@...
Jun 2, 2000 2:51 am
8578
Hi ! What's the best ans simpliest solution between using JRun 3.0 serving pooled JDBC connections, or implement the pooling with the JDBC 2.0 SE API in a ...
MUSCAT Stephane
Stephane.MUSCAT@...
Jun 3, 2000 9:15 pm
8579
Hi ! What's the best ans simpliest solution between using JRun serving pooled JDBC connections, or implement the pooling with the JDBC 2.0 SE API in a servlet...
MUSCAT Stephane
Stephane.MUSCAT@...
Jun 3, 2000 9:16 pm
8580
I want to configure the JRUN Web Server to include 2 new MIME type text/vnd.wap.wml & text/vnd.wap.wmlscript Does anyone know how to do it? amy ... Archives:...
Amy Wan
awan@...
Jun 3, 2000 9:19 pm
8581
Ranjan Dasgupta
Ranjan.Dasgupta@...
Jun 3, 2000 9:19 pm
8582
I want to configure the JRUN Web Server to include 2 new MIME type text/vnd.wap.wml & text/vnd.wap.wmlscript Does anyone know how to do it? amy ... Archives:...
Amy Wan
awan@...
Jun 3, 2000 9:25 pm
8583
CFSERVLET only works with JRun because it uses JRun's connector and JCP protocol to communicate with the servlet engine. Scott Stirling Allaire Corporation ...
Scott Stirling
sstirling@...
Jun 3, 2000 11:06 pm
8584
Anyone here going to JavOne? If so, please stop by the Allaire booth and see JRun 3.0 and meet me and some of the other guys. I'd be interested in meeting...
Scott Stirling
sstirling@...
Jun 3, 2000 11:06 pm
8585
Hmm. Believe CFSERVLET was specifically designed to invoke JRun as the servlet runner. It's been sometime since looking into this but I think CF uses a cfapi...
Mike Hogarth
mahogarth@...
Jun 4, 2000 3:30 am
8586
It isn't part of the current Servlet API, but look at the "templates" section of JRun's manual. I think that is what you seek. --Mike H *********** REPLY...
Mike Hogarth
mahogarth@...
Jun 4, 2000 3:30 am
8587
I tried putting your property code into a test servlet, and it causes no problems at all. It may be the trigger, but something else is wrong. Property sets...
Rod McChesney
rodm@...
Jun 4, 2000 3:31 am
8588
Hello, Is it possible to turn on java debug info in JRUN 2.3.3 ? I can do it with the reference implementation of Java 1.2.2 by setting the environment...
Daniel Rönnqvist
daniel.ronnqvist@...
Jun 4, 2000 3:33 am
8589
I want a servlet to intercept all accesses to vet access with certificates. The documentation says that I should be able to use the forward() method to access...
James A. Rome
jar@...
Jun 4, 2000 3:52 pm
8590
Folks, I am trying to forward a request within a servlet. This was working, but I just downloaded Build 157 and changed a few other things. Now I get the ...
Steve Hayes
steve@...
Jun 4, 2000 5:17 pm
8591
You "forward" to other servlets or JSP's running in the same application server. You redirect to other URL's (html, pdf, etc). Here is some redirect code:...
John_Kline@...
Jun 4, 2000 5:22 pm
8592
We had that problem too when we upgraded to 157. Try going to your servlets/jsp directory and removing all the xml, .java and .class files that were there from...
Lynn Walton
waltonl@...
Jun 4, 2000 5:26 pm
8593
Hi ! How to implement the database pooling ? Shall I let JRun do, or programming a servlet doing this, with the JDBC 2.0 SE specifications ? thanks ... ...
MUSCAT Stephane
Stephane.MUSCAT@...
Jun 5, 2000 6:23 am
8594
I think it's better programming a component doing that. Here it is an example that i used in my program. I used an oracle driver. ...
SOTTILE Salvatore 02
Salvatore.SOTTILE-02@...
Jun 6, 2000 11:42 am
8595
... Hi Daniel, you need to disable the JIT for that. If setting the environment variable doesn't work (BTW - did you try java.compiler=NONE instead of ...