AW: where is weblogic mailing list ?

2001-07-11 Thread Opoku-Boadu, Samuel
http://newsgroups.bea.com/cgi-bin/dnewsweb -Ursprüngliche Nachricht- Von: sufi malak [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 11. Juli 2001 17:28 An: [EMAIL PROTECTED] Betreff: where is weblogic mailing list ? Hi, could you please point me to a weblogic server mailing list. thank

Javadoc for TagLibs?

2001-07-11 Thread Mattias Jiderhamn
Bryan LaPlante just told us about his tool for making vtml descriptions for JSP custom tags/taglibs. Does anyone know of (or has made for their own use) a tool for creating documentation for the tablibs? Like a JavaDoc for taglibs. It would be nice if the tool read the JavaDoc in the tag source a

How to compress an image

2001-07-11 Thread Raghu Babu
Hi all, I have a requirement in my project to compress an image to a small image without any loss of data. Means the original image should not be clipped but it should be made small. Any ideas regards raghu === To unsubsc

Re: Problem: Servlet Mappings & RequestDispatcher

2001-07-11 Thread Hans Bergsten
Philip Weaver wrote: > > Hello - > > I'm trying to create servlet mappings for a servlet that I'd like to exist > at the TOP LEVEL of my webapp in Tomcat. You'd think that this task wouldn't > be a pain in the rear but I'm finding it to be so. If you know how to > configure web.xml and a servlet t

Re: cannot resolve symbol

2001-07-11 Thread c2yh
Actually Java does not care how you name your classes! As long as you call the java class with its EXACT name. so, if you name it "DefaultXYDataSource", you must use it as "DefaultXYDataSource". The "DefaultXYDataSource.class" must be put in your CLASSPATH folder. There are 2 main reasons for "c

User authentication/session management with JSPs/Resin

2001-07-11 Thread Abhijit Hiremagalur
Hi All, Has anyone used the Authenticator in Resin 2.0.0? If you have could you please briefly explain to a complete novice at JSP(though I am familiar with java itself), a good approach to user authentication, possibly using this Authenticator interface providen in Resin. Are there any other a

Re: Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread lancelot
Glenn Wearen, Okey, thanks a lot. Lancelot - Click here for Free Video!! http://www.gohip.com/free_video/ - Original Message - From: "Glenn Wearen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 11, 2001 8:43 PM

Re: Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread lancelot
Panayotou, Michael Okey, thanks a lot. Lancelot - Click here for Free Video!! http://www.gohip.com/free_video/ - Original Message - From: "Panayotou, Michael" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 11, 200

Re: Connection pooling problem

2001-07-11 Thread Hans Bergsten
Marino Vittorio wrote: > > Hi gurus, this is the typical layout of my page: > > <%@ page ... errorPage="error.jsp" %> > ... > <% > > SQLManager myMan = SQLManager.getInstance(); > Connection myConn = myMan.requestConnection(); > > ... > ... > ... > >

Re: OutputStream insteat of an PrintWriter

2001-07-11 Thread Hans Bergsten
Thomas Wittpahl wrote: > > I want to send a PDF - File, which is generated by a Bean, to the Client. I > have to send an byte[] back, but only an OutputStream can handle this. > > --- JSP - CODE --- > > response.setContentType("application/pdf"); > ServletOutputStream out = res.getOutputStream();

Re: archives search

2001-07-11 Thread Franck Rasolo
Go to: http://archives.java.sun.com/jsp-interest.html --- Billy Gates <[EMAIL PROTECTED]> wrote: > Does anyone know where I can find an url for archives search to this mailing > list __ Do You Yahoo!? Get personalized email addresses from Yahoo!

archives search

2001-07-11 Thread Billy Gates
Does anyone know where I can find an url for archives search to this mailing list === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTERE

Re: Browser Incompatibility

2001-07-11 Thread Jann VanOver
Did you open and close the tag correctly? IE is will show you elements even with no tag. NS will not. I think NS will even insist on a valid "action" attribute in the tag. By the way, this STILL isn't a JSP problem. This is basic HTML forms. -Original Message- From: Glenn Wearen

jsp with dynamo server

2001-07-11 Thread Billy Gates
Has anyone encountered any problems using jsp with dynamo server === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some

struts

2001-07-11 Thread Eric Cho
hey all, i'm just starting to use the struts framework and a simple hello world type implementation. I'm getting a Error Message: Server caught unhandled exception from servlet [JSP 1.1 Processor]: Cannot find message resources under key org.apache.struts.action.MESSAGE Error Code: 500 Target S

AW: VERY VERY URGENT

2001-07-11 Thread Michael Jager
The java.util.Random.nextInt(int n)-method came with JDK 1.2 (Java 2). Microsofts IE use a JVM 1.1.4 and so they are ignorant of this method! You can use java.util.Random.nextFloat() multiplied with your upper limit instead. And allways remember when you are programming applets: don't use method

Re: Custom Tags or Beans

2001-07-11 Thread Bryan LaPlante
One thing to Consider about custom tags that is not to do with programming as much as communications. If any one is working in a team environment and creates a component the matter of documentation is less complex if you are describing a list of parameters as apposed to describing the methods and

where is weblogic mailing list ?

2001-07-11 Thread sufi malak
Hi, could you please point me to a weblogic server mailing list. thanks _ Get your FREE download of MSN Explorer at http://explorer.msn.com === To unsubscribe: m

Re: Connection pooling problem

2001-07-11 Thread Karau, Joe
Yes, you should wrap it in a try catch finally construct. And return the connection in the finally. That way, you are GUARANTEED (as long as the server is not killed in the middle of the code) that the connection will be returned. It would be possible to allow the error page to return it, but t

VERY VERY URGENT

2001-07-11 Thread paramjit singh
hi! this is a very urgent so please reply withing 1- 2 days. I have used java.util.Random.nextInt(upperlimit) function which generates integer random numbers form 0 to upperlimit specified. This function i am using inside an applet which is emmbedded in an html page when i use that html page with

Re: Custom Tags or Beans

2001-07-11 Thread Glenn Wearen
I forgot that most people in this list are not in my time zone, so I got the low-down on Tags Vs Beans myself. I found http://java.oreilly.com/news/jsptips_1100.html 'Choosing Between Beans and Custom Actions' had a fair discussion about it, also this lists archive had some debate about the topi

setProperty of a bean

2001-07-11 Thread Narasimha Vijaya
Status Distribution July 10, 2001 14:10:17 The message regarding "setProperty of a bean" sent on July 10, 2001 14:10:17 was sent by Status Recipient TypeTo Native Name [EMAIL PROTECTED] Foreign Native Name [EMAIL PROTECTED

Custom tag or beans?

2001-07-11 Thread Glenn Wearen
I'd like to hear the for and against arguments for which is better... "Write your won JSP custom tags or create your own JavaBean". To do things like get Data from a database, format db data in XML etc. Glenn PS: I've never seen CFML before, does it look like JSP custom tags?

Re: Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread Glenn Wearen
its important to know the charset of the DB? if its UTFx you migh > -Original Message- > From: lancelot [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 11, 2001 8:48 AM > To: [EMAIL PROTECTED] > Subject: Need your help on request.getParameter and Chinese encoding. > Importance: High >

Re: Connection pooling problem

2001-07-11 Thread Glenn Wearen
1. I have a small bean that holds one error message, 2. when an error occurs (in any other bean) I sets the error message 3. when the calling JSP gets a null response I uses > -Original Message- > From: Marino Vittorio [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 11, 2001 9:24 AM >

Help installing tomcat3.2...please help me!

2001-07-11 Thread Francesco Sammartino
hi at all, Can someone tell me how can I install Tomcat 3.2 on Windows98?I've read the How-To,but I didn't understand what TOMCAT_HOME and JAVA_HOME are and how can I set them.. Please help me.I've no money because I'm 16 years old and I want to develop a web-site on my own... Francesco.

Re: jsp - html editor -DB connectivity

2001-07-11 Thread Glenn Wearen
I I correct in my understanding that the DB connection wizard in UltraDev generates JavaScript to do the DB fetches etc? if so, aren't DB connections better done server-side with a JSP/Servlet? > -Original Message- > From: webmaster [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 11, 2

Re: Browser Incompatibility

2001-07-11 Thread Glenn Wearen
I also have a problem in Browser inconsistency, I use a JSP scriptlet to populate the options in a select list, the resultant HTML look like this... All Active Requests All closed requests for my project All closed requests for my team in IE the select list looks

Re: jsp - html editor

2001-07-11 Thread Glenn Wearen
Yes JRun is a container, but does JRun add additional functionality to UltraDev? if I use Tomcat/iPortal/WebSphere instead of JRun will my JSP-HTML development in UltraDev be the same or not? Thanks for clarification PS: Why anybody would want to strap JSP onto IIS I don't understand, especially

Re: OutputStream insteat of an PrintWriter

2001-07-11 Thread Hoorn, Michiel van
This is our code. Maybe you can use some of it. // output stream java.io.StringWriter foStringWriter = new java.io.StringWriter(); StreamResult foDoc = new StreamResult(foStringWriter); // Transform XML to FO-XML XMLTransformer transformer = new XMLTransformer();

OutputStream insteat of an PrintWriter

2001-07-11 Thread Thomas Wittpahl
I want to send a PDF - File, which is generated by a Bean, to the Client. I have to send an byte[] back, but only an OutputStream can handle this. --- JSP - CODE --- response.setContentType("application/pdf"); ServletOutputStream out = res.getOutputStream(); out.write(eng.getPageData(1));

Re: Jsp in Database

2001-07-11 Thread Hamid
Hi, we r using sql server7 and putting our jsp/html pages as string in tables. Then writing it on file and displaying file for evaluation of jsp code. if need tags check the site: jsptags.com Hamid Hassan software engineer visualsoft -Original Message- From: A mailing list about Java S

unsubscribe

2001-07-11 Thread Segador Corraliza, Jose Abel [EES/ES]
=== To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.

unsubscribe

2001-07-11 Thread Segador Corraliza, Jose Abel [EES/ES]
<<...OLE_Obj...>> EMERSON ENERGY SYSTEMS IBERIA, S.A. José Abel Segador Corraliza Sistemas de Gestión de Energía Eduardo Torroja, 23 Leganés 28914 Madrid * 91-339 4140 * [EMAIL PROTECTED] ==To unsubscribe: mailto [EMA

cannot resolve symbol error

2001-07-11 Thread S. Jyotinarayan
Hi all, When I have the following line in my jsp page, does "FileUploadBean" need to be a class file or can it be jar file. Thanx a lot in advance, S. Jyotinarayan === To unsubscribe: mailto [EMAIL PROTECTED] with body: "s

cannot resolve symbol

2001-07-11 Thread Cédric Favier
Hello I use Java 2 SDK v 1.3 When I use java file with upper case in the file name, I get this message : "cannot resolve symbol" "symbol : class DefaultXYDataSource" I need you help, Thanks a lot. -- Cédric Favier _ Groupe Duverney 282, Avenue de Cham

Re: Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread Panayotou, Michael
You have to translate the parameter from one character set to another. for example : String myparam = new String(request.getParameter("name").getBytes("iso-8859-1"),"iso-8859-7"); -Original Message- From: lancelot [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 11, 2001 10:48

Connection pooling problem

2001-07-11 Thread Marino Vittorio
Hi gurus, this is the typical layout of my page: <%@ page ... errorPage="error.jsp" %> ... <% SQLManager myMan = SQLManager.getInstance(); Connection myConn = myMan.requestConnection(); ... ... ... myMan.returnConnection(myConn); %> Now, if an e

Need your help on request.getParameter and Chinese encoding.

2001-07-11 Thread lancelot
Excuse me, I need help. One form field of my jsp contain Chinese Characters. and I post the form to my servlet, and my servlet insert the imformation into my Oracle DB. my question is how to get the request.getParameter("name") in Chinese character encoding and insert it properly into Oracle D