signoff JSP-INTEREST

2003-03-06 Thread Cengiz KAYAY
signoff JSP-INTEREST GIZLILIK NOTU Bu e-posta mesaji gizli, hassas bilgi ve/ya da ekler icerebilir. Bu mesaj, mesajin alici kisminda belirtilen kullanici/kullanicilara gonderilmistir. Eger mesaji yanlislikla almis

Re: Context Parameter value in Bean.

2003-03-06 Thread Manjunath Bhat
You were able to do that in Bean because of JNDI lookup. If u want init param to available to whole context then u have to edit server.xml , add following in OR following in web.xml Webmaster [EMAIL PROTECTED] access this servlet , using getServletConfig().getServletContext().ge

Fusebox for J2EE

2003-03-06 Thread Sigit Irianto
dear all, is somebody here having experience in setting fusebox for j2ee (jsp)? could somebody tell me how to do it or maybe you have a link to the document i could refered to? TIA, -sigit i.- -- In which American state is Cape Canaveral, a launching site for space travel? Find out at postmaster

Re: problem creating a PDF using https

2003-03-06 Thread Thai Thanh Ha
I guess that you're using JRun (or some web server) behind IIS to support servlets. 1. Check if SSL enabled or not: Assume that your web application name is "mywebapp". Create a normal HTML page *in you web application* (don't put it in other directories) and try to open it from IE (e.g. http

Re: Tomcat 4.1.18 and Forte 4 for java

2003-03-06 Thread Grant Sayer
You need to setup an external instance of Tomcat within the SunOne env. This should be covered in the help pages. You can also post this to the EAP list for Sun One grant > -Original Message- > From: Oysgelt, Moisey G [GMG] > [mailto:[EMAIL PROTECTED] > Sent: Friday, 7 March 2003 7:24 AM

Re: JSTL c:import - passing xml fragment as a parameter

2003-03-06 Thread Erik Beijnoff
> Use the escapeXml attribute: > > Hans Thank you very much! I found the solution and wrote a reply to my own question with reflections about it just minutes before I got your answer, but thanks for taking your time. /Erik Beijnoff [EMAIL PROTECTED] [EMAIL PROTECTED] ===

JSTL c:import - passing xml fragment as a parameter - problem solved! - push template technique with example included!

2003-03-06 Thread Erik Beijnoff
>When you are using the jsp document (xml) syntax, is it possible to >pass in an xml fragment as a parameter to and then >reference the parameter as xml and not escaped text? ... Whohoo! It worked. It took a lot of spec reading until i realised where the character conversion occured, but once I f

Re: LOC counter

2003-03-06 Thread Kenny G. Dubuisson, Jr.
If you are on UNIX, use the "wc -l *.jsp" for example for your JSP's. Same thing for servlets ("wc -l *.java"). Kenny - Original Message - From: "Karau, Joe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 06, 2003 3:13 PM Subject: LOC counter > One of my managers was r

LOC counter

2003-03-06 Thread Karau, Joe
One of my managers was recently asking about the size of our project. So, I started looking around on the web and I could not find a good LOC counter. Does anyone know of a tool (freeware preferable) that will count the lines of code for java source and JSP's, or even one for each. Thanks. Josep

Re: JSTL c:import - passing xml fragment as a parameter

2003-03-06 Thread Hans Bergsten
Erik Beijnoff wrote: When you are using the jsp document (xml) syntax, is it possible to pass in an xml fragment as a parameter to and then reference the parameter as xml and not escaped text? Import statement: ... A text ... Referenced file: http://java.sun.com/JSP/Page"; xmlns:c="http://jav

Tomcat 4.1.18 and Forte 4 for java

2003-03-06 Thread Oysgelt, Moisey G [GMG]
I'm trying to integrate my JSP development on Tomcat wit Forte 4 for java. I have a context directory /phoenix I could execute from Tomcat directly without any problems but when I try to execute a JSP PAGE from Forte 4 I got a a page http://localhost:8081/index.jsp

Re: Too many users

2003-03-06 Thread Karr, David
First of all, this has nothing to do with JSP. Nevertheless, it's obvious you need to add more memory. That's a cheap and effective solution for a simple situation like this. > -Original Message- > From: Deepak [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 06, 2003 5:28 AM > To: [EMA

Re: problem creating a PDF using https

2003-03-06 Thread Brian P Bohnet
You didn't mention if you are using frames in your site. I have seen this when a user clicks on one window in the frame which calls another window within the frameset. Just something to think about. I believe you must have all parts of your frameset defined in the server under ssl/https. Do a googl

Re: problem creating a PDF using https

2003-03-06 Thread Murphy, Todd
Thanks for your suggestions. We are successfully using SSL in all other aspects of the site, we only run into the problem when trying to access the pdf. The web server used is IIS. Todd -Original Message- From: Thai Thanh Ha [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 9:42

Too many users

2003-03-06 Thread Deepak
Hi I am in a tight spot. Hope someone can help me on this. My Webapp uses: 1. Cobalt Linux server 2. Jdk1.4 3. Tomcat 3.3.1 4. MySql 3.51 200+ users access my webapp. After some time my server hangs and I am not able to telnet , ftp or access the webapp. The server guy says that too many java p

JSTL c:import - passing xml fragment as a parameter

2003-03-06 Thread Erik Beijnoff
When you are using the jsp document (xml) syntax, is it possible to pass in an xml fragment as a parameter to and then reference the parameter as xml and not escaped text? Import statement: ... A text ... Referenced file: http://java.sun.com/JSP/Page"; xmlns:c="http://java.sun.com/jstl/core

Context Parameter value in Bean.

2003-03-06 Thread Lakshmeenarayana G G
Hi, I want to access the Context parameter set by the web.xml from a java bean or simple java class. For example, If I have database connection details in my web.xml and I want to get these in a Java Bean of a class which will pick up the values and create a Connection object and return to the guy

Re: form action in jsp

2003-03-06 Thread laurent marot
when "method" attribut is omited in tag, default is GET - Original Message - From: "Shivani" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 05, 2003 9:53 PM Subject: form action in jsp > when i say this- > > in my jsp what does it imply? is it POST or GET action to g