Re: Replacing JSP with PHP?

2003-02-24 Thread Daniel Lynn
ve you the idea. Personally, I use both and encourage anyoen else to who has that luxury. -Daniel Lynn Todd Whitten wrote: > PHP has no advantages over JSP. Maybe this is something you could have > posted to the PHP mailing list? ; ) > > -Original Message- > From: Shi

Re: COMMUNICATION LINK FAILURE

2003-02-06 Thread Daniel
Some piece of code is breaking your sql Connection or there is some problem in your connection. So back track this. Regards, Daniel Jayapaul.E -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Laxmikanth

Re: COMMUNICATION LINK FAILURE

2003-02-06 Thread Daniel
Use auto reconnect in your connect string. Cheers Daniel Jayapaul.E -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Laxmikanth M.S. Sent: Friday, February 07, 2003 11:20 AM To: [EMAIL PROTECTED] Subject

JDBCRealm with Digest and SSL Problem!

2003-01-13 Thread Daniel
Hi all, I am trying to use JDBCRealm with Digest combination in a SSL based web page. But it doesn't seem to work! My server.xml is My web.xml is Secure Directories /subtest/* GET POST admin

JDBCRealm with Digest and SSL

2003-01-12 Thread Daniel
(Sorry Previous mail my table name was misspelled) Hi all, I am trying to use JDBCRealm with Digest combination in a SSL based web page. But it doesn't seem to work! My server.xml is My web.xml is Secure Directories /subtest/* GET POST

JDBCRealm with Digest + SSL

2003-01-12 Thread Daniel
Hi all, I am trying to use JDBCRealm with Digest combination in a SSL based web page. But it doesn't seem to work! My server.xml is My web.xml is Secure Directories /subtest/* GET POST admin

java.lang.OutOfMemoryError

2003-01-02 Thread Daniel
Hi I am getting this error in tomcat. What should I do to get rid of this? ERROR!: ** Message: java.lang.OutOfMemoryError Attributes: javax.servlet.error.servlet_name=jsp javax.servlet.error.exception=javax.servlet.ServletException javax.ser

UML Tools

2003-01-01 Thread Daniel
Can any body suggest me FREE GOOD UML TOOL for design? Regards, Daniel.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGES

Re: How to set an error page

2002-12-10 Thread Daniel
should see Your message...! Cheers Daniel Jayapaul.E Daniel Jayapaul.E(Java Team Leader) Software Park, 6th Floor, 99/29, Moo 4, Chaengwattana Road, Klong Gleua, Pakred, Nonthaburi 1120,Thailand. Email: [EMAIL PROTECTED] http://www.mustang-technologies.com Tel: +66 2 583- 6161-4 Fax: +662 583 6

Free Testing Tools

2002-11-17 Thread Daniel
Hi, Are there any free web based testing tool, that can check a jsp page and also javascript checking on the Web browser? Regards, Daniel.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For

Thread Doubt and Multi User Environment

2002-11-13 Thread Daniel
Hi, I have a JSP code like this and this is converted into a servlet. What happens when multiple user tries to access the code, I have written the jsp code down and the servlet equivalent is also given. Is it a bad to write the variables as private. What happens when multiple user try to access th

Speeding up Resultsets

2002-11-06 Thread Daniel
Hi, I have about 14,000 records and I run a simple query to display that and it took me half a second to see the results. But If I display the result on the browser it takes me about 2-2.5 mts. Is there a way to speed up displaying these records in my browser? Regards, Daniel.E =

Javascript and JSP Question?

2002-10-15 Thread Daniel
Hi All, I have a Srting array Object String[] str = a.getCity(); //returns an array of City I have a Javascript Code here var arrCity = new Array(); for(i=0; i<<%=str.length%>;i++) I want to put all the elements in the str array Object into arrCity Javascript array Object.(i.e.) arrCity[i]

Re: JAR file of org.gjt.mm.mysql.jdbc2.optional.*;

2002-10-02 Thread Daniel
Hi Check out this URL... http://sourceforge.net/projects/mmmysql/ this may help you. Cheers Daniel.E -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of Yogiswar Vanama Sent: Thursday, October 03, 2002 1:06

Re: Struts1.1

2002-09-30 Thread Daniel
Hi Check this URL http://jakarta.apache.org/struts/userGuide/index.html It may help you, Happy strutting,,, Daniel.E -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]] On Behalf Of LakshmiNarasimha Sent: Tuesday, Octob

Re: displaying JAPANESE characters

2002-09-27 Thread Daniel Jayapaul
Hi >but, when i deploy it to Solaris 8.0 (Japanese Version OS) my > Japanese characters turn into garbage like >it displays only like this "". > Where do you see this ? , This is because your character Encoding problem, Do you see this problem in windows client or Solaris client?

Re: parsing an html document

2002-09-26 Thread Daniel Ramirez
you could begin with the DocumentParser class javax.swing.text.html.parser.DocumentParser - Original Message - From: "jyoti chereddy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 26, 2002 9:50 AM Subject: parsing an html document > Hello, > > Can someone sugge

Re: Sorry !

2002-09-25 Thread Daniel Jayapaul
Cheeers! Sorry was the confusion, I figured that yesterday, Thanks for your reply Daniel.E - Original Message - From: "Richard Yee" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 25, 2002 11:33 PM Subject: Re: JavaMail Bcc Not Working For

Re: JavaMail Bcc Not Working For Me

2002-09-25 Thread Daniel Jayapaul
st"); // Send message Transport.send(message); /**/ - Original Message - From: "Richard Yee" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 25, 2002 2:57 PM Subject: Re: JavaMail

JavaMail Bcc Not Working For Me

2002-09-24 Thread Daniel Jayapaul
hat the problem is not here. > > Regards, > Ritesh > - Original Message - > From: Daniel Jayapaul <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, September 25, 2002 8:23 AM > Subject: JavaMail Bcc Not Working For Me > > > Hi > &

JavaMail Bcc Not Working For Me

2002-09-24 Thread Daniel Jayapaul
Hi //Set the BCC address of the Recipients if (bcc != null) { strTokbcc = new StringTokenizer(bcc,";,"); while(strTokbcc.hasMoreTokens()) { String strbcc = (strTokbcc.nextToken()); Address[] bccaddress = InternetAddress.parse(strbcc); msg.

Converting CGI form to JSP

2002-09-24 Thread Daniel Jayapaul
Hi How can I read data from a CGI form and tranfer the data to my JSP page? Thank you Daniel.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body

Error while Using Prepared Statments?

2002-09-09 Thread Daniel Jayapaul
Hi, I am facing problem with preparedstatment while using multiple DML statements, I am using one connection and multiple prepared statements and I am getting this Error Connection.close() has already been called. Invalid operation in this state. PreparedStatement pstmt1; PreparedStatement pst

JavaMail subject encoding?

2002-08-28 Thread Daniel
Hi All, In JavaMail we can change the contents encoding of the message like this mbp1 = new MimeBodyPart(); message = request.getParameter("message"); mbp1.setText(message, "ISO-8859-1"); But this changes only the message part but how do I change the subject encoding? Thanks in advance

Changing sesssion values.

2002-08-28 Thread Daniel
Hi, Is there any way to change the session value configured in the web.xml from User Interface and restart the Server? Is there any command for that? Regards Daniel Jayapaul.E === To unsubscribe: mailto [EMAIL PROTECTED

mysql Driver?

2002-08-28 Thread Daniel
Hi All, Is there any good, stable and free jdbc driver for mysql. I tried this mysql-connector-java-2.0.14-bin and the old versions of this driver. I am having problem when I tried submitting this simple String into database. String name = "\\"; I cannot. while I can submit this value into m

Off Topic(database tool)

2002-08-27 Thread Daniel
Hi, Is there any tool to give the structure of the existing database with data inside and with the relationships? Something like a visio diagrams or the data dictionary . Tkx Daniel.E === To unsubscribe: mailto [EMAIL PROTE

Re: File upload

2002-08-21 Thread Daniel
Very Good question zip your files and upload. Daniel Jayapaul.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-

Re: PARSE error ..Workaround?

2002-08-15 Thread Daniel
Hi I tried and it did not work, I downloaded this from sun and why this is non-complaint, what exactly should the order of elements in the web.xml file? Where to check this? Any url will be helpful, Regards Daniel Jayapaul.E -Original Message- From: A mailing list about Java Server

PARSE error ..Workaround?

2002-08-15 Thread Daniel
I downloaded the WebEmail app from Sun site and tried to put it inside my Tomcat and start,, But I think the web.xml file is non-complaint ? How to solve this? Starting service Tomcat-Standalone Apache Tomcat/4.0.4 PARSE error at line 54 column 12 org.xml.sax.SAXParseException: The content of ele

Exporting Data to Excel

2002-07-30 Thread Daniel
Hi All, How do we export data from our web page to excel using JSP? Thanks in Advance Daniel.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body:

File Attachment O/S Dependent?

2002-07-29 Thread Daniel
explain this in my knowledge! Is there any work around for this? Thanks in advance. Regards Daniel Jayapaul.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mai

Re: Any Tools For Webbased Reports?

2002-07-29 Thread Daniel
explain this in my knowledge! Is there any work around for this? Thanks in admvance. Regards Daniel Jayapaul.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL

Any Tools For Webbased Reports?

2002-07-24 Thread Daniel
Hi Is there any tools or plugins available for creating flexible reports for IE. Like where you can adjust the header or footer or adjust the page layouts. Any third party tools available? Thanks Daniel.E === To unsubscribe

Re: jdbc url for sqlServer

2002-07-23 Thread Daniel
owing: jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=mydb;SelectMethod =cursor Daniel Jayapaul.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED]

Re: JSP problem

2002-07-08 Thread Daniel Tomé
You could use remote scripting. There are varoius ways of doing this. one is with an applet, and another can be with a hidden frame. OnClick of the dropdown it will bring the latest information. -Mensaje original- De: A mailing list about Java Server Pages specification and reference [m

Relaying Denied (Java Mail)

2002-07-08 Thread Daniel
ould I do ? Or Is it tomcat configuration prolem ? Thanks in advance Daniel Jayapaul.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: &

JavaMail Attachment Issue on Liunx

2002-07-05 Thread Daniel
in Linux? Thanks in advance! Daniel Jayapaul.E === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". S

Understanding File System

2002-07-02 Thread Daniel Jayapaul
I am using JavaMail to send mails .. In that I am trying to attach files. All my development version application is in tomcat server in windows 98 . When I tried attaching file from the same machine client, it works fine but if I try accessing it from a different client It cannot find the file.

File System on Linux

2002-07-01 Thread Daniel Jayapaul
I think you have misunderstood my question .. My question is I am using JavaMail to send mails .. In that I am trying to attach the file. All my application is in tomcat server in Linux. When I tried attaching file from the Windows based client Ex c:/example.txt the Linuc cannot convert the pat

File System on Linux

2002-07-01 Thread Daniel Jayapaul
Hi , I am trying to attach files from my windows client and the tomcat server on the Linux server. The windows file format is not accepted by the Linux. File format windows = c:/temp/tem.txt (Works perfectly with windows client and tomcat in windows server); Same is not accepted in Linux ..and

Re: JSP Tomcat for developers

2002-06-21 Thread Daniel Tomé
I've already tried these. The problem is that Tomcat isn't compiling the Jsp again. In ASP I edit the .asp file and when I reload my webbrowser I see the changes inmediatly. With JSPs running on tomcat I can't do this. I have to delete the contents of the work folder every time and it's very anoy

JSP Tomcat for developers

2002-06-21 Thread Daniel Tomé
Hi, I am using tomcat 4.0.1 and having some problems working with JSPs. Every time I edit a JSP it shows me the first version. (It's getting cached) After a while it compiles again and shows me the new version. I've been reading a bit and seen that a lot of people are having the same problem. I kn

Check This

2002-06-07 Thread Daniel Jayapaul
Hi Vaishali Check This if (mode.equals("1")){ String name=request.getParameter("ename"); if( !name.length() ==0 || !name == null) { String updqry="update hrm_employee_mas set emp_empname = '" + name + "' where emp_employee_no = " + emp; }else { out.println(na

Re: JSP Help Please

2002-06-04 Thread Daniel Jayapaul
Hi This NullPointer is exception occurs whenever you try to initialize an object which is not there. Jus check all the objects you are trying to access are iniatlized properly Regards Daniel.E ==To unsubscribe: mailto [E

Message Missing

2002-06-03 Thread Daniel Jayapaul
Hi Vikramjit The multiple attachment works but I cannot send the message now.., How do I set the message ? Everything is fine except the message ... // create and fill the first message part messageBodyPart = new MimeBodyPart(); messageBodyPart.setText(message); Multipart mu

Multiple Attacments(JavaMail)

2002-06-03 Thread Daniel Jayapaul
Hi I am trying to send multiple attachments at a single time I tried this ..did not work what should I do ? for(int i=0;i<2;i++) { String filename = "c:/example.txt"; // attach the file to the message FileDataSource fds = new FileDataSource(filename); mbp2.setDataHandle

Re: JSPinsider JavaMail tag Problem

2002-06-03 Thread Daniel Jayapaul
The attribute is not static /*public class MimeBodyPartTag extends BodyTagSupport { private String type; private String uri; private String name; private Object o; public MimeBodyPartTag() { type = "text/plain"; uri = null; name = null;

JSPinsider JavaMail tag Problem

2002-05-30 Thread Daniel Jayapaul
Hi Guys I have downloaded this JSP mail from jspinsider.com and I have used this and I supplied values using varaibles everything works fine but If I supply the value for the attachment it is not accepting I can pass values to all tags except this <% String urlAtt ="c:/example.txt" ; %>

Re: IBM HTTP SERVER and JSP

2002-05-27 Thread Daniel Bergenhus
Sorry ! looks like a word was missing.(to). Yes, you have to use an external servlet engine. - Original Message - From: "Daniel Bergenhus" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 27, 2002 9:41 AM Subject: Re: IBM HTTP SERVER and JSP

Re: IBM HTTP SERVER and JSP

2002-05-27 Thread Daniel Bergenhus
Yes, you have use an external servlet engine. - Original Message - From: "M Sankar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 27, 2002 7:33 AM Subject: IBM HTTP SERVER and JSP > Hi, > > How can I deploy JSP on IBM HTTP Server installed on an AIX box? There > is no

sorry!

2002-05-25 Thread Daniel Liu
Sorry. my previus message go wrong place. ==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/Ser

Let me know how much traffic this gets you

2002-05-25 Thread Daniel Liu
ze.com/cgi-bin/intro.cgi?141458 Let's compare numbers after the first week and then we can help each other get more. Take Care, Daniel Daniel Liu === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signof

Re: Edit ans Save on browser/JSP

2002-05-20 Thread Daniel Liu
Thanks please take a look my page http://members.rogers.com/liu8189/ Daniel - Original Message - From: "Chan Mal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 20, 2002 9:02 AM Subject: Edit ans Save on browser/JSP > In my web application

Re: comparing JSP/PHP

2002-05-13 Thread Daniel Jaffa
You are also not looking hard enough for shared java support. You can get it for free at several sites. And you can find many hosting companies offering support. Daniel Jaffa Java Developer -Original Message- From: A mailing list about Java Server Pages specification and reference

comparing JSP/PHP

2002-05-12 Thread Daniel Lynn
sually force me into PHP, I would like to be able to make an educated decision on wether it's worth pushing a client towards JSP. Thanks much, Daniel Lynn Mystic Productions === To unsubscribe: mailto [EMAIL PROTECTED] wit

Re: JSPs/DBs and HTML Forms

2002-04-16 Thread Daniel Jaffa
Look into struts, it works great on forms Daniel Jaffa Stuff i say i know: Java, JSP, JavaBeans, TagLibs, J2EE, EJB Before asking someone, do a search on google: Google will set you free "If you are not happy, I am not

Re: upload

2002-04-02 Thread Daniel Jaffa
Look into using Struts. It does all the hard part for u - Original Message - From: "Wilson Edgar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 02, 2002 8:54 AM Subject: Re: upload hi paulo, i had the same dilema a couple of weeks ago... this is a transcript of the an

Off topic !

2002-03-13 Thread Daniel Bergenhus
I need to know how to invoke a stored procedure from a trigger in IBM DB2 v7.1 Like to se a syntax example ! Daniel ==To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mai

Re: Setting bean properties on a link with onclick

2002-03-09 Thread daniel
STRUTS - Original Message - From: "Rick Snide" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 09, 2002 12:14 PM Subject: Setting bean properties on a link with onclick > I have a page "vendors.jsp" where (using a bean) I display a list of vendors to choose from. This

Re: SQL statement.

2002-02-26 Thread daniel
Well you are going to have to use group by and a decode statement. You want the actual sql statement why do u not go ask someone in a sql group. but something like SELECT MAX(OrderNum),requstID FROM TRequest group by requestID,OrderNum might work. dont know if this works but hey did it in 10

Re: JSP and Servlets Apps in WebLogic Server6.1

2002-02-19 Thread Daniel Jaffa
It is automatic. For servlets all you need to do is to register them in the web.xml file. Jsp files you need to place under the application Daniel Jaffa Stuff i say i know: Java, JSP, JavaBeans, TagLibs, J2EE, EJB Before asking someone, do a search on google: Google will set you free "I

Not visible session & context

2002-02-12 Thread Daniel Gorroño
Hi, all. I'm working with WebLogic 5.1 sp10 (installed on c:\weblogic) and the root directory is: C:\application\dga The JSP pages are in the directory C:\application\jsp. These pages call to the servlet C:\application\dgaclasses\ControlServlet.class. In weblogic.properties I have these lines:

Not visible Context

2002-02-12 Thread Daniel Gorroño
Hi, all. I'm working with WebLogic 5.1 sp10 (installed on c:\weblogic) and the root directory is: C:\application\dga The JSP pages are in the directory C:\application\jsp. These pages call to the servlet C:\application\dgaclasses\ControlServlet.class. In weblogic.properties I have these lines:

Re: Sort of OT: Getting data from database to JavaBeans

2002-02-08 Thread Daniel Jaffa
Look at struts. It does every thing that u are looking for _ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx ===

Re: OOT:Database connection in weblogic

2002-01-31 Thread Daniel Jaffa
Ok, first RTFM on bea's site about using connection pool and datasources. BEA's site will walk you through setting this up http://e-docs.bea.com/wls/docs60/adminguide/jdbc.html First you create a connection pool then u create a datasource to point to the connection pool. In your code you call th

Re: Where to put methods for a jsp page?

2002-01-23 Thread Daniel Jaffa
One good thought to think is that: If it requires transactions use EJB's otherwise javabeans and classes are just fine _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. ===

Re: Where to put methods for a jsp page?

2002-01-23 Thread Daniel Jaffa
why do u not make your own class then import it _ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx ===

Re: Struts, Vignette and Weblogic

2002-01-08 Thread Daniel Jaffa
Well the current tool is not drag and drop at all. I am actually writting a pure MVC application. So people like me to _ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx ==

Struts, Vignette and Weblogic

2002-01-07 Thread Daniel Jaffa
Ok, has anyone else done this. I just got this to work and was wondering if anyone has found any problems with this type of implementation. I know this is pretty open ended but if there are problems out there i would like to know now not latter. Right now it seems to be working just fine.

Re: SQL insert with preparedStatement

2002-01-07 Thread Daniel Jaffa
This is more a database question and not much of a jsp question but here is the answer addSQL="INSERT INTO location (put all the database column names, minus the field that is auto_increment. Comma Delimented) VALUES (?, ?, ?, ?, ?, ?,?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; You should always n

Re: Did the server knows JSP

2002-01-02 Thread Daniel Jaffa
Well, it should not matter if the server is nt, linux or unix or any other OS. You should choose the server that you like the best. Original Message Follows From: Charles Williams <[EMAIL PROTECTED]> Unix or Linux is best. See http://jakarta.apache.org/ for the web server and read the

Re: Where should I store image files?

2001-12-17 Thread Daniel Jaffa
You should store all images in the web servers doc root if you can. _ Send and receive Hotmail on your mobile device: http://mobile.msn.com === To unsubscribe:

Re: How to adjust the weblogic pool parameter to improve system performance?

2001-12-12 Thread Daniel Jaffa
Robin, First, It is not nice to wish Death All: Second, What version of Weblogic do you use. And what type of jdbc driver do you use Original Message Follows From: Robin <[EMAIL PROTECTED]> Death all : How to adjust the weblogic pool parameter to improve system performance?I u

Re: executing perl script in jsp

2001-11-30 Thread Daniel Jaffa
I have used this method to pull env var out of a sun box. It worked quite well. Daniel Jaffa Stuff i say i know: Java, JSP, JavaBeans, TagLibs, J2EE, EJB Before asking someone, do a search on google: Google will set you free "If you are not happy, I am not

Re: display image from table WOO their Sports fans, here is an answer

2001-11-30 Thread Daniel Jaffa
{ bos.write(n); } out.println(bos.toString()); rs.close(); stmt.close(); con.close(); } catch (SQLException e){} %> Daniel Jaffa Stuff i say i know: Java, JSP, JavaBeans, TagLibs, J2EE, EJB Before asking someone, do a search on google: Google

Happy TurkeyDay

2001-11-21 Thread Daniel Jaffa
I know this is off topic. And it might get me kicked out of here. But I hope everyone has a great turkeyDay. Lets not think about work for one whole day. Daniel Jaffa Stuff i say i know: Java, JSP, JavaBeans, TagLibs, J2EE, EJB Before asking someone, do a search on google: Google will set you

Re: JSP to PDF, JSP to Word

2001-11-19 Thread Daniel Jaffa
Your subject said one thing and your body another. What are you trying to do. Open a word document from a jsp page. Or scrape data from a word and pdf file and show them as text on a jsp page? Daniel Jaffa Stuff i say i know: Java, JSP, JavaBeans, TagLibs, J2EE, EJB Before asking someone, do

[no subject]

2001-11-19 Thread Daniel Gorroño
How can I do to obtain an text deployment descriptor from a EJB JAR file? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGES

Re: Login Authentication against database...

2001-11-18 Thread Daniel Jaffa
device to stop evil code being submitted in my form. P.S. Please read this with a grain of salt, as this has been one of the better treads but it has gone on long enough Daniel Jaffa Stuff i say i know: Java, JSP, JavaBeans, TagLibs, J2EE, EJB Before asking someone, do a search on google: Google

Re: Limiting number of records returned to be displayed

2001-11-15 Thread Daniel Jaffa
This tag has been there for a long time.  I used it about one year ago in a project. Daniel Jaffa Stuff i say i know: Java, JSP, JavaBeans, TagLibs, J2EE, EJB Before asking someone, do a search on google: Google will set you free "If you are not happy, I am not happy" Origin

Re: JSP compiling

2001-11-14 Thread Daniel Jaffa
jspc will do it. do'h. Before asking, do a search on google: it is a wonderful thing Daniel Jaffa Computer GOD who Created the Stars and Moon "If you are not happy, I am not happy" _ Get your FREE download of MSN E

Help with BLOB

2001-11-13 Thread Daniel Jaffa
Could some one post an example of: running a query like select blobcolum from x then reading the resultset and printing out the blob The blob would be a text file thank you very much Daniel Jaffa _ Get your FREE download

Re: Anyone ever tried running a web app (JSP) using Citrix 6.0?

2001-11-13 Thread Daniel Jaffa
You ever here of a vpn?? If not do some research. It is what you are looking for Daniel Jaffa Computer GOD who Created the Stars and Moon "If you are not happy, I am not happy" _ Get your FREE download of MSN Explor

Re: Server crashes...

2001-11-09 Thread Daniel Jaffa
you want to return from a database. When i returned 1000, i was able to get my boss to see the light that this was to slow. Daniel Jaffa Original Message Follows From: Praveen Potineni <[EMAIL PROTECTED]> Reply-To: A mailing list about Java Server Pages specification and Com

Re: javax.servlet.http.* not found

2001-11-02 Thread Jonathan Daniel
try just: C:\jakarta-tomcat-4.0\common\lib\servlet.jar   and see if you can compile basic servlets   of course the obvious... make sure this is the path to servlet.jar -Original Message-From: Praveen Potineni [mailto:[EMAIL PROTECTED]]Sent: Friday, November 02, 2001 11:46 AMTo: [E

Re: Can I run JSPs on IIS

2001-11-01 Thread Daniel Jaffa
I know that you can configure jrun also to server jsp pages off of iis. Well when iis sees a jsp page it redirects it to jrun. It is a very easy integration Daniel Jaffa Computer GOD who Created the Stars and Moon "If you are not happy, I am not

Re: help me

2001-11-01 Thread Daniel Jaffa
Do a search on streaming jsp Daniel Jaffa Computer GOD who Created the Stars and Moon "If you are not happy, I am not happy" _ Get your FREE download of MSN Explorer at http://explorer.msn.co

Re: exceuting oracle stored procedure in jsp

2001-10-30 Thread Daniel Jaffa
Sure, you just need to configure you SP to return something. Daniel Jaffa Computer GOD who Created the Stars and Moon "If you are not happy, I am not happy" _ Get your FREE download of MSN Explorer at http://explor

Need Some Help with xml and jsp!

2001-10-29 Thread Daniel Jaffa
I would like to start with links and read each link one by one. Thank you very much for any answer Daniel Jaffa _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp

Re: Strings

2001-10-26 Thread Daniel Jaffa
what does the string look like Daniel Jaffa Computer GOD who Created the Stars and Moon "If you are not happy, I am not happy" _ Get your FREE download of MSN Explorer at http://explorer.msn.co

Re: getRemoteAddr() vs getRemoteHost()

2001-10-25 Thread Daniel Jaffa
request.getRemoteHost() with, to see if it thinks it has a host name. I bet it has a different one than it dns name. Daniel Jaffa Computer GOD who Created the Stars and Moon "If you are not happy, I am not happy" Original Message Follows it show up the host name with nslooku

Re: Platform choice advice for deploying a website

2001-10-24 Thread Daniel Jaffa
Look up jrun. It works pretty well with iis. Daniel Jaffa Computer GOD who Created the Stars and Moon "If you are not happy, I am not happy" _ Get your FREE download of MSN Explorer at http://explorer.msn.co

Re: Offtopic:ODBC

2001-10-24 Thread Daniel Jaffa
http://www.microsoft.com/data download the latest mdac Daniel Jaffa Computer GOD who Created the Stars and Moon "If you are not happy, I am not happy" _ Get your FREE download of MSN Explorer at http://explorer.msn.co

Re: Platform choice advice for deploying a website

2001-10-23 Thread Daniel Jaffa
Getting a little off topic here: Can tomcat handle load of up to 70k - 120k hits an hour. Or would i have to go to a product like WebLogic. The reason i ask is that i have been building with weblogic and when it comes time for the client to pay the bill they always gag at the price. And if TomC

Re: SV: How do I access the static HTML generated by a JSP?

2001-10-22 Thread Daniel Jaffa
I think this code would work for you. If you put this code into a bean and store all the lines to the database. You then could make it a session variable and print it out. I got this code from two different sites, and it works great. If you have any problems email me directly. Daniel Jaffa

Re: SQL apostrophie INSERT problem

2001-10-19 Thread Daniel Jaffa
Well, if you dont want to make a storedproceedure, you can always use prepareStatement. Daniel Jaffa Original Message Follows The best way is to use StoredProceedures. When you call StoredProceedure.setString() it automatically takes care of all the encoding that's required.

Re: Pronounciation?

2001-08-01 Thread Daniel Bergenhus
Are u for real ?   LOL   :) - Original Message - From: DuocChua To: [EMAIL PROTECTED] Sent: Thursday, August 02, 2001 6:01 AM Subject: Pronounciation? Hi All ! I'm a new "Asia-located" member of this forum and of JSP, as well. So I wonder how these follow

Re: OFF TOPIC: JAVA.SUN.COM

2001-08-01 Thread Daniel Bergenhus
Yes, they seam to be down ! And i don´t know whats going on. //Daniel - Original Message - From: "Marc J. Boerma" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 01, 2001 10:33 AM Subject: OFF TOPIC: JAVA.SUN.COM > Does anyone exp

Re: Integration of JSP with an existing application...

2001-07-04 Thread Daniel Herrera
Have you tried editing your classpath in the WTE?? Its one of the options in the servlet engine. - Original Message - From: "Vania V. Frederico" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 04, 2001 2:19 PM Subject: Re: Integration of JSP with an existing application

  1   2   3   4   5   6   >