Re: JSP debugging in eclipse

2004-02-25 Thread Steve Bang
r. I have been using IntelliJ 4.0 and find it easy to use, but it costs a lot more. Check out both. Steve On Wednesday 25 February 2004 15:36, Murali Krishna Devarakonda wrote: > MyEclipseIDE is not free, but fairly priced (about $30), and > also has a 30-day eval. > I found it to b

Re: Speeding up Resultsets

2002-11-07 Thread Steve Bang
CSS2 added a table-layout attribute that can be used to enable allow progressive rendering of tables before the table has fully loaded. A table doesn't necessarily finish loading faster, but the user begins to see results right away. Steve To learn more, check out the following links for

Re: Report displaying and printing in JSP's

2002-10-09 Thread Steve Bang
Big Faceless Report Generator http://big.faceless.org/index.jsp Any comments on experience with these products would be appreciated. Steve > -Original Message- > From: Haseltine, Celeste [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 09, 2002 3:14 PM > To: [EMAIL PRO

404 using a

2002-09-09 Thread Steve
Hi; I'm using Tomcat 4.03 with Red Hat 7.3. I'm having trouble setting up a for a web application and I was hoping someone could give me a clue to what I missed in reading the manual. First I set up a "test" web app like this: It worked. Then, I did the same thing, but for a different dir

Force a form submission via timer?

2002-07-28 Thread Steve Downie
which were entered by the user in the current form up to the expiration point of the timer. I've tried a few ways to accomplish this using Timer and TimerTask, but I've yet to come up with the results I need. TIA for any and all suggestions. Regards, --St

Re: help

2002-06-07 Thread Steve Darroch
Do you mean set emp_empname = '" + ename + not set emp_empname = '" + name + Steve Darroch Sreenath V wrote: > dont use statements mam use preparedstatement as it will be faster ! > - Original Message - > From: "Vaishali S. Pandya" <[EMAIL PR

Re: Dreamweaver MX (announced today) adds JSP custom tag library

2002-05-03 Thread Steve Bang
o help in trying to get them addressed. Personally, I'm about to begin working with Struts and may experience many of the problems you're experiencing. And, a heads-up on limitations you've found in using Dreamweaver with Struts would be much appreciated. Steve -Original Message---

Dreamweaver MX (announced today) adds JSP custom tag library support

2002-04-29 Thread Steve Bang
more details, go to: http://www.macromedia.com/software/dreamweaver/ A Preview version is available. Steve Disclaimer: I don't work for Macromedia, but have been a Dreamweaver user since v. 1.0. === To unsubscribe: m

Visual page layout and custom JSP tags with height and width

2002-03-11 Thread Steve Bang
a GUI component with height and width attributes. Are any of you encountering this issue? If so, how are you dealing with it? How do you think this issue should be handled by an IDE? Do you know of any that do? Thanks, Steve

Re: reading text file ?

2002-02-14 Thread Steve Downie
sure you're not "chasing the wrong dog..." Hope this helps, -- Steve Downie sufi malak wrote: > I tried trim(), but it does not work, it looks like it's a format problem, > since if I hit enter in each line then take off the line created, how to do >

Re: Book

2002-01-28 Thread Steve Bang
use of its excellence and because of all the commitment and time he spends helping answer questions on this newsgroup.  If you haven't been paying attention and noticing his contributions, do a search in the archives -- he deserves kudos!  But, given the option, I'd buy both.   Steve   -

Custom error pages and custom JSP tags -- problem?

2002-01-21 Thread Steve Bang
, generating a divide by zero error in a scriptlet on the same page results in the custom error page being returned. Only errors in the tags seem to cause this problem. Is this a flaw in the custom tag library design? I didn't design the tag library, but am using it in JSP web apps. Thanks,

Re: Unable to load driver

2002-01-08 Thread Steve Bearss
I put mine in the JRE for mySQL and it seems to work fine:   D:\SDK\jre\lib\ext - Original Message - From: Praveen Potineni To: [EMAIL PROTECTED] Sent: Tuesday, January 08, 2002 3:59 PM Subject: Unable to load driver Hi all, I have some problem loading the

Re: designing a newsletter program with JSP

2001-12-31 Thread Steve Bang
/buzz_07_24_2001.view This should give you a good start. Steve > -Original Message- > From: yilmaz [mailto:[EMAIL PROTECTED]] > Sent: Sunday, December 30, 2001 4:07 AM > To: [EMAIL PROTECTED] > Subject: designing a newsletter program with JSP > > > Hi all, > i want to

Re: Modifying tag attribute values on page reloading

2001-12-18 Thread Steve Bang
e a Java applet is loaded, the only way you can change the parameters is programmatically or by killing the browser and re-opening it. So, as a side effect of having tags emulate the applet behavior, we make standard tag functionality not work as expected. Hmmm... Steve > -Original Messag

Modifying tag attribute values on page reloading

2001-12-18 Thread Steve Bang
developers who are using the tags. Steve === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST". Some relevant

Re: OffBeat question...Java performance.

2001-12-14 Thread Steve Curd
Title: RE: OffBeat question...Java performance. signoff JSP-INTEREST -Original Message- From: ShriKant Vashishtha [mailto:[EMAIL PROTECTED]] Sent: Friday, December 14, 2001 5:55 AM To: [EMAIL PROTECTED] Subject: Re: OffBeat question...Java performance. Hi Anthony, Thanks for you

Re: offside... war file

2001-11-17 Thread Mader, Steve
If you still want to open them, use the Java jar utility. War files are in the same format as jar files. > -Original Message- > From: Richard Yee [SMTP:[EMAIL PROTECTED]] > Sent: Saturday, November 17, 2001 1:22 AM > To: [EMAIL PROTECTED] > Subject: Re: offside... war file > > Joe

Re: question

2001-11-16 Thread Steve Curd
Title: RE: question The problem is that the way you have defined retval in userfunc.jsp means the variable only has page scope which means only the page that created the variable can see it (like a local variable).  If you define it using the declaration tag , then the variable should have re

Re: Stupid newbie question

2001-11-14 Thread Steve Curd
Title: RE: Stupid newbie question just use return. if (i == 666) {     return; } -Original Message- From: Papo Napolitano [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 14, 2001 4:52 PM To: [EMAIL PROTECTED] Subject: Stupid newbie question MessageI only want to know how ca

Re: Error within JSP page

2001-11-13 Thread Mader, Steve
It sounds to me like it can't create an instance your test.YyDB class. Surly someone with the title "Technical Architect" should be able to debug this and determine the root cause. > -Original Message- > From: Paul Idusogie [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, November 13, 2001 6:06

Re: Help in session...

2001-11-13 Thread Mader, Steve
Your hidden input variables on the first page don't contain any values. -Original Message-From: Joey A [mailto:[EMAIL PROTECTED]]Sent: Tuesday, November 13, 2001 11:14 AMTo: [EMAIL PROTECTED]Subject: Help in session... Hi all,I'm having some problems using 'session' in my

Re: spaces in variable values

2001-11-12 Thread Mader, Steve
Good. :) -Original Message- From: Tiffany C. [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 4:51 PM To: [EMAIL PROTECTED] Subject: Re: spaces in variable values Got it: error=URLEncoder.encode(errorTemp); --- "Tiffany C." <[EMAIL PROTECTED]> wrot

Re: spaces in variable values

2001-11-12 Thread Mader, Steve
You probably need to encode the string first. Check out java.net.URLEncoder to do this. -Original Message- From: Tiffany C. [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 2:26 PM To: [EMAIL PROTECTED] Subject: spaces in variable values Hello!! I'm passing a variable and va

Re: taglib directive URIs -- short names?

2001-10-31 Thread Steve Bang
Based on Josh's comment, I thought a bit more about this issue, and looked at the finalized JSP 1.2 specification. Although Sun still has one example, which uses a shortname ("myPRlibrary"), I noticed something that others may find interesting. Since in JSP 1.2, the emphasis seems to be to recom

taglib directive URIs -- short names?

2001-10-30 Thread Steve Bang
n a short name (and less flexible) in that a company might get acquired, and the acquiring company could end up insisting that the URI be changed. So, I'm interested in hearing some opinions about why the URL approach won in your designs -- was it just that it seemed what everyone else

anything to flag before starting out in JSP?

2001-10-24 Thread Steve Bearss
I am starting out with JSP (and this email list) and I am hoping that if someone had hardships with the following:   1. Win98 2. MS Access2000 database 3. 200MHZ MMX pentium pro processor 4. keeping everything java on its own HD partition   they could let me know before I get ahead of myself.

Re: Offtopic:ODBC

2001-10-24 Thread Steve Bang
MDAC is relevant to ODBC! See below. -- steve >From Microsoft's description of MDAC: What are the Microsoft Data Access Components? The Microsoft Data Access Components are the key technologies that enable Universal Data Access. They include ActiveX Data Objects (ADO), Remote Data Serv

offtopic

2001-09-27 Thread Steve Dixon
Hi Guys I am currently using WebLogic Server running under Windows NT. What i need to do is run a JSP page on the Server that runs a Bin script on a Unix box passing the output back to the JSP page. If anyone can tell me how i can achieve this i'll buy you a Beer. Steve.

JSP pages acting as Controller

2001-09-26 Thread Steve Bang
ealize the advantage of using a JSP page in the Controller role." So, can anyone elaborate on when this makes sense? What guidelines would you offer to decide where to handle the business logic? Where do you draw the line?

Re: how to access servlet from the jsp page

2001-09-21 Thread Steve Bang
, and will hopefully be completed towards the end of the year. Interestingly, Qbizm Technologies (http://www.qbizm.com/) has a product, HyperQbs, which is supposed to be based on this yet non-public specification. So, if you want to get an idea of what will be possible, check them out. Steve >

Re: OFF TOPIC: Terrorist attacks

2001-09-14 Thread Steve Bang
>From a colleague at work: "Just so you know: It is well written and certainly is applicable. But this was actually written in 1973 about the Vietnam war. But having said this, I am sure the author would support applying this exact wording to this weeks tragedy." Steve > -

Re: Form processing, request parameters, and beans

2001-09-07 Thread Steve Bang
e it does the job, and the difference in end result (seen by the end user) is probably imperceptible. Essentially, giving novices baby steps towards the best approach. That is, they can learn about and use beans after they learned to walk. So, for this audience would the answer change? Steve

Form processing, request parameters, and beans

2001-09-06 Thread Steve Bang
solutions are harder than necessary. Thanks, Steve = Here's some of what I've read: Advanced JavaServer Pages (in Chapter 3, HTML Forms) -- David M. Geary: "Using beans to capture state is the preferred method for handling forms..." Java Servlet Programming (in

JSP Beans vs. Java Beans

2001-08-29 Thread Steve Bang
s a useful term to distinguish from Java Beans, or just Beans? Steve === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTERE

Custom tag design for indexed properties?

2001-08-14 Thread Steve Bang
Help! A co-worker of mine is wrestling with how to handle indexed properties using custom tags. Below is a summary of the problem, and possible solutions we've considered. Anyone have any elegant solution, or suggestions from experience? Thanks, Steve = I am looking for an elegan

JSP custom tags - performance issues?

2001-07-20 Thread Steve Bang
experienced on the initial compilation of the pages, or are there other issues? Thanks, Steve === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMAIL PROTECTED] with

Re: Servlet needs to run till the lifetime of Webserver

2001-03-28 Thread Steve Weiss
rvlet 1 -Steve Ganesh MohanRao wrote: > Hi, > > Please tell me how to make a Servlet Run till the lifetime of Webserver. > > Whenever the webserver starts, Servlet needs to start and should run till > the Webserver shuts down. > > Please h

Re: JSP vs. Applet

2001-02-16 Thread Steve
OTECTED] with body: "set > > JSP-INTEREST DIGEST". > > Some relevant FAQs on JSP/Servlets can be found at: > > > > http://java.sun.com/products/jsp/faq.html > > http://www.esperanto.org.nz/jsp/jspfaq.html > > http://www.jguru.com/jguru/faq/faqp

Re: GUI Capabilities

2001-02-12 Thread Steve
You could use javascript/dhtml There is an impressive example of what you want to do at: http://www.webmonkey.com run a search on "dhtml" Steve --- "Thompson, Willard (GTICCC)" <[EMAIL PROTECTED]> wrote: > Hello, > > Does anyone know if you can develop menub

Loading page while processing in background

2001-02-07 Thread Steve Bang
he browser window so that users know something is happening. Since I'm new to JSP, the solution isn't obvious, so I'd appreciate any ideas. Would I load a "wait while loading" page, then redirect to the page that d

Re: Can anyone tell me how to unsubscribe?

2001-02-07 Thread Steve
ends about this. I think it looks bad for Sun Sun makes servers. Personally, I think they should donate one or two more to their forums if it speeds things up. Steve = Steve http://www.geocities.com/beforewisdom/ __ Do You Yahoo!? Yahoo!

Re: Problem while file downloading

2001-01-23 Thread Probst, Steve
I think it may have to do with the Content-Disposition header. If you set the content-disposition header to attachment, IE should show you the save-as dialog. res.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\";" ); -Original Message- From: James Wilson [mai

Re: How to create Dynamic PDF's from java

2001-01-18 Thread Steve
aq.html > http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets = Steve http://www.geocities.com/beforewisdom/ __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://pe

Re: How to disable Back on Browser?

2000-12-29 Thread Steve
I don't remember. I am not an ASP programmer. I do remember that I found it in under 5min worth of searching the msdn.microsoft.com site. Steve --- Sandarbh Sharma <[EMAIL PROTECTED]> wrote: > how can it be done in asp tell please > > sandarbh > > >From: Steve &l

Re: How to disable Back on Browser?

2000-12-29 Thread Steve
I researched this when I first started with JSP. ASP does have support for doing it. JSP does not. Steve --- "Puneet Kathuria, Gurgaon" <[EMAIL PROTECTED]> wrote: > I think these tricks won't help... i have never seen such interface > in any > application. &

That declaration tag

2000-12-28 Thread Steve
persistant? Anyway, if anyone is noticing old data when a page is reloaded or strings with redundant, leftover data try declaring your variables inside of ordinary <% %> tags. Steve = Steve http://www.geocities.com/beforewisdom/ __ Do

Configuring Apache/Tomcat 1.3.2 on Redhat Linux

2000-12-28 Thread Steve Holmes
Hi everyone! I'm trying to configure Apache and Tomcat and so far most of the documentation is on the older version of Tomcat. Has anyone used the new version successfully and if so how did you configure it? Thanks a bunch!

Fixed! (Re: High powered help?

2000-12-20 Thread Steve
hings back piecemeal. I'm glad I was forced to think about the table tag issue again. Thanks to everyone for the help. I learned some good stuff Steve > > === > > Hi; > > > > I have a JSP that looks like it isn'

Re: sorry :Out of Topic

2000-12-20 Thread Steve
You can set a photo as wallpager by bringing it up in a browser, right clicking your mouse and choosing "save as wall paper Steve --- Deepak C S <[EMAIL PROTECTED]> wrote: > Hi, > > How can I set an HTML page as WallPaper in > > WinNT 4.0 ServicePack 6

No Subject

2000-12-19 Thread Steve
a web site. I belong to several technical forums. Every now and then I remind myself that I am under no obligation to take my time to write a post and of my bosses to-do list. Given that, I can't see posting to a forum unless I have help to offer or I need help myself. Steve > ---

Re: a little jsp help please

2000-12-19 Thread Steve
a web site. I belong to several technical forums. Every now and then I remind myself that I am under no obligation to take my time to write a post and of my bosses to-do list. Given that, I can't see posting to a forum unless I have help to offer or I need help myself. Steve --- Sh

High powered help?

2000-12-19 Thread Steve
p engines. If its not a bug in the api it might be something that might want to be mentioned in the docs. Any ideas would be appreciated Steve === Hi; I have a JSP that looks like it isn't sending any data to the browser until all of the

Re: a little jsp help please

2000-12-19 Thread Steve
alues selected? > > -Original Message- > From: A mailing list about Java Server Pages specification and > reference > [mailto:[EMAIL PROTECTED]]On Behalf Of Steve > Sent: Tuesday, December 19, 2000 11:37 PM > To: [EMAIL PROTECTED] > Subject: Re: a little jsp help please > > &

Re: form elements in an array

2000-12-19 Thread Steve
TECTED] with body: "set JSP-INTEREST > DIGEST". > Some relevant FAQs on JSP/Servlets can be found at: > > http://java.sun.com/products/jsp/faq.html > http://www.esperanto.org.nz/jsp/jspfaq.html > http://www.jguru.com/jguru/faq/faqp

Re: a little jsp help please

2000-12-19 Thread Steve
OT or used javascript to select the appropiate value Steve --- Matthew Hafner <[EMAIL PROTECTED]> wrote: > im reading values out of a database and populating a form. > everything works > fine, but, i cant get the values from the database to highlight its > corresponding value

Re: Good JSP Engines

2000-12-19 Thread Steve Holmes
We are currently trying enhydra and Apache/Jakarta/Tomcat. You can find them at: www.enhydra.org and www.apache.org Both are free and the new version of Tomcat is supposed to be much better performance than previous versions. Both should be quick and work well with Apache. If you are going to

Re: Bean Vs Classes ???

2000-12-19 Thread Steve
ed to meet individual needs. Anywhere you can make a class, you can make a bean. Just put those set/get functions in and I reccomend you put the suffix "*Bean" on the end of your class name. Steve Angel Belda wrote: > > Can anybody tell me (in a nutshell), the beneficts o

I Can't flush() My Jsp Buffer

2000-12-18 Thread Steve
each of these 3-5 calls comes back they are wrapped up in html strings and "sent to to the browser" via out.println(). I tried tucking this loop in a thread, but I couldn't get it to work. Any ideas on what is going on? Any suggestions? Thanks in adv

No Subject

2000-11-14 Thread Steve Raisor
that are being passed as parameters to the servlet. Thanks for your help in advance! Steve Raisor === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets

Re: JSP and Reports

2000-10-26 Thread Steve Bang
ve been at AlphaBlox two years and this is a very exciting new product. Steve Steven K. Bang Sr. Staff Information Developer AlphaBlox (650) 526-1782 P.S. Here is a brief description of SpreadsheetBlox: "SpreadsheetBlox provides full-featured spreadsheets and a ready-to-use spreadsheet manag

Re: Servlets vs JSP

2000-09-15 Thread steve . michael
My experience is that on a Windows machine it runs just like a servlet. -Original Message- From: Venu Gopal [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 13, 2000 6:54 PM To: [EMAIL PROTECTED] Subject: Servlets vs JSP Hi all, I'm a new bie to JSP. I just wanted to know whether

Re: out.println ou System.out.println

2000-08-22 Thread Steve Bayouk
vous pouvez ecrire ca try { ( Le chose qui fait l'erreur) }catch(Exception e) { } ou vous pouvez ecrire ca private void (Le nombre de la method) throws java.io.IOException { } Steve Bayouk [EMAIL PROTECTED] Mad Scientist in the lab at www.com Log On. Tune In. -Original Me

Re: Replace a character (or group of characters)?

2000-07-11 Thread Scholnick Steve
you can use a regular expression to do this quickly and easily. i use regexp from GNU (http://www.gnu.org). i think sun and IBM also may have regular expression packages. -steve -Original Message- From: Phil Campbell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 11, 2000 3:10 PM To

Java Advanced Imaging?

2000-07-11 Thread Steve Jacobi
To whom it may concern, Does anyone know of an interest group for Java AI? I have looked around the Sun site for information on this topic. Also, is the Java AI supported by JSP?? Thanks, Steve __ Do You Yahoo!? Get Yahoo! Mail – Free email you

using java.util.ResourceBundle for i18n

2000-06-29 Thread Steve Kennedy-Williams
ountry2 + "_" + variant2 baseclass + "_" + language2 + "_" + country2 + "_" + variant2 + ".properties" baseclass + "_" + language2 + "_" + country2 baseclass + "_" + language2 + "_" + country2 + ".properties&quo

Re: Error with IPlanet 4.1

2000-06-09 Thread Steve Croft
The only thing I can think of are things you've probably already looked at: Configure JVM Attributes -> Classpath: jar and zip files listed explicitly; packages listed by directory But the error does not look like a ClassNotFound; how are you defining the mapping of the .do file

Re: Model 2 - POST from HTML form to Servlet

2000-06-05 Thread Steve Croft
How do you do map "*.do" in iWS? I tried using "Configure Servlet Virtual Path Translation" and it didn't seem to work... is it done through entries in obj.conf? Thanks for any help, Steve - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL

Re: Session management beans

2000-05-25 Thread Newton Steve
OpenSite Auction software. Steve Robert Nicholson cc: (bcc: Steve Newton/HPC) Sent by: A Subject: Re: Session management beans mailing list about

Session management beans

2000-05-25 Thread Newton Steve
c. Thanks. ... Steve Newton Senior Web Developer [EMAIL PROTECTED] (864) 678-1543 ... HomePoint Corporation 531 S. Main Street Greenville

Sorting Nodes

2000-05-23 Thread Steve Bayouk
right direction. Thank You. Example: Steve Bayouk === To unsubscribe: mailto [EMAIL PROTECTED] with body: "si

Re: ASP vs. JSP

2000-05-21 Thread Steve Bang
competition is strong http://www.zdnet.com/eweek/stories/general/0,11011,410709,00.html Steve -Original Message- From: Som Subhra Chakraborty [mailto:[EMAIL PROTECTED]] Sent: Saturday, May 20, 2000 5:09 AM To: [EMAIL PROTECTED] Subject: ASP vs. JSP Hi All, What all r the differences

Developing sites with JSP and HTML

2000-05-18 Thread Steve Bang
pages JSP files? Thanks, Steve === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/products/jsp

Re: HTML editor

2000-05-16 Thread Steve Croft
Check out Oracle jDeveloper, based on jbuilder. It's downloadable from technet.oracle.com (you have to go through their free registration process if you aren't registered already). It will allow you to view JSPs (it has a builtin web server and browser). Steve - Origin

Render HTML with images to PDF using JSP?

2000-05-15 Thread Steve Bang
I'm searching for a way to take an HTML page with embedded GIFs and render it to a PDF file. Is this possible using JSP? Has anyone tackled this issue? I'm new to JSP, but have been told it should be possible (I have my doubts). Tha

Neophyte question...

2000-05-15 Thread Wagner, Steve
When creating a Bean named: com.swags.AdminBean for use in a JSP, does the directory structure where the bean resides need to match the package/class name? i.e. - - com -swags - AdminBean Thanks! ==

jsp:expression tag

2000-04-28 Thread Steve Croft
an clarify this, I'd appreciate it. Thanks, Steve Croft === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". Some relevant FAQs on JSP/Servlets can be found at: http://java.sun.com/pr

Re: Resin from Caucho

2000-04-21 Thread Steve Nguyen
I was meaning the web server, not servlet runner :-) so your argument was of f topis. Steve -Original Message- From: A mailing list about Java Server Pages specification and reference [ma ilto:[EMAIL PROTECTED]]On Behalf Of Geert Van Damme Sent: Thursday, April 20, 2000 4:42 PM To

Re: Resin from Caucho

2000-04-19 Thread Steve Nguyen
I am not so sure that using a Java-based web server on a production environment (I meant heavy load) is a good idea. Steve -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Hani Elabed Sent: Thursday, April

Re: Resin from Caucho

2000-04-18 Thread Steve Nguyen
:-( Regards, Steve Nguyen -- Web Hosting Support Team KBMail Software & Java Hosting Service Provider E-mail: [EMAIL PROTECTED] Web site: http://kbmail.com - http://ebpcs.net "Plan - Do - Review --> Success" -Original Message- From: A mailing list about Java Server Pages

Re: OAS + JSP?

2000-04-10 Thread Steve Croft
le at: are available from the Oracle ftp site and/or technet. http://technet.oracle.com/tech/java/servlets/ and the latest jservlet patch (I've only verified for Solaris): ftp://oracle-ftp.oracle.com/server/patchsets/internet/ Steve Croft Project Arena - Original Message - From: &quo

Re: JSP on Linux

2000-03-20 Thread steve . michael
Be warned that the IBM product does NOT support JAVA 1.2. It only supports JDK 1.6(alphaworks) and Blackdown JDK 1.7. I also believe that they use an older version of the Servlet Runner. i.e. no "Request.dispatcher" calls. Also be warned that the the current version of W.S. requires around ~25

Includes

2000-03-07 Thread Steve
x27;t work. Do they need to be included in some special way? Thanks in advance Steve = Steve http://www.geocities.com/beforewisdom/ _ Do You Yahoo!? Get your free @yahoo.com a

Expiring Pages

2000-03-07 Thread Steve
Is there a way with JSP to have jsp pages expire as soon as the user gets off the page.both in IE & NS? Thanks in advance Steve ===== Steve http://www.geocities.com/beforewisdom/ _ Do You Yahoo!? Get your free @yahoo.com add

Re: Jsp and Webserver

2000-02-20 Thread Steve Nguyen
Resin 1.1 looks also very promosing. We are evaluating ti and may put it into our multi-JVMs production environment. Steve Nguyen -- KBMail Software & Java Hosting Service Provider http://www.kbmail.com http://www.ebpcs.net "Plan - Do - Review --> Success"

Re: best platform

2000-02-06 Thread Steve Nguyen
ounterpart. Regards, -- Steve Nguyen [EMAIL PROTECTED] C.E.O. KBMail Software & Java Hosting Service Provider http://www.kbmail.com http://www.ebpcs.net "Plan - Do - Review --> Success" Original message Date: Sun, 6 Feb 2000 20:31:32 -0500 From: Sanjay Mistry <[E

Re: Mail Client (help!!).

2000-01-31 Thread Steve Nguyen
Grab javamail 1.2 and read the spec. It's great and supports POP3/IMAP4/SMTP/SMTPS   Steve Nguyen[EMAIL PROTECTED]   --KBMail Software & Java Hosting Service Providerhttp://www.ebpcs.net    | http://www.kbmail.com - Original Message - From: Muder T

Re: JSP vs. PHP

2000-01-11 Thread WHITEHOUSE, Steve
ecute than similar code in JSP (this was on Apache under LINUX 6.0). Bizarre. Cheers - Steve -Original Message- From: Barry Scott [mailto:[EMAIL PROTECTED]] Sent: 11 January 2000 09:53 To: [EMAIL PROTECTED] Subject: Re: JSP vs. PHP Thanks Cory, this is what I suspected. I have forwarded

Re: mail form

2000-01-07 Thread Steve Nguyen
You should be able to do this fairly simply by using socket to port 25 and take SMTP RFC to talk to SMTP server. Some sample codes shown below (for servlet but should be used OK with JSP) should help you a bit. Steve -- KBMail Software & Java Hosting Services Provider Web site:

Re: A liitle off topic-regarding javamail

2000-01-07 Thread Steve Nguyen
re = UserSession.getStore(ServerProtocol); UserStore.connect(MailServer, UserName, Password); Steve -- KBMail Software & Java Hosting Services Provider Web site: http://kbmail.com | http://www.ebpcs.net - Original Message - From: meera nayak <[EMAIL PROTECTED]> To: <[EMAIL PROTEC

Re: Windows 2000 & IIS 5.0 & servlet ( Jrun support )

2000-01-06 Thread Steve Nguyen
Yaeh...that combination would work extremely well. Steve - Original Message - From: ahmad abediny <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 06, 2000 10:38 PM Subject: Windows 2000 & IIS 5.0 & servlet ( Jrun support ) >Hi, >

Re: How can you have JSPs work with Microsoft Internet Information Se rvice 4.0?

2000-01-05 Thread Steve Nguyen
Title: How can you have JSPs work with Microsoft Internet Information Service 4.0? Take JRun (www.jrun.com) or ServletExec (www.newatlanta.com)   Steve --KBMail Software & Java Hosting Services ProviderWeb site: http://kbmail.com  |  http://www.ebpcs.net - Original Mes

Re: [MS IIS] which Java eng.?

2000-01-04 Thread Steve Nguyen
Take SUN JDK1.x or JDK2SE (java.sun.com/jdk) and JRun should be doing fine. If you willing to test the services, take Apache JServ (java.apache.org) as it rocks even on Win32. Steve -- KBMail Software & Java Hosting Services Provider Web site: http://kbmail.com | http://www.ebpcs

Re: Web Host or ISPs who support JSP + database technology

1999-12-22 Thread Steve Nguyen
Go for http://www.ebpcs.net for extensive Java servlet & JSP hosting services + database. -- KBMail Software & Java Hosting Service Provider http://www.kbmail.com http://www.ebpcs.net "Plan - Do - Review --> Success" Original message Date: Wed, 22 Dec 1999 19:54:11 Z From: "P

Some Quick Newbie Questions

1999-12-20 Thread Steve
ed to worry about the bean being thread safe? How so? Do you need to use beans for jsp. I have a java class that worked as an accessory to a servlet I had. Do I need to convert it into a bean to use it with jsp. Thanks in advance

EJB?

1999-12-20 Thread Steve
Hi; I'm new to JSP and EJBs. I take it that EJBs are not visualthat they are all server side. How would you use EJB's, JSP, and JRun together. I would like to use a JSP to query a database. Do ready made, database EJBs exist? Where can I get them? Steve Home

Re: Servlet 2.0API ,JServ and Apache(was Re: Redirect w/ JSP)

1999-12-20 Thread Steve Nguyen
JRun isn't bad but it's really costly. Steve http://www.ebpcs.net - Original Message - From: Jari Worsley <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, December 20, 1999 5:15 PM Subject: Servlet 2.0API ,JServ and Apache(was Re: Redirect w/ JSP) >

Re: JRunProblem

1999-12-15 Thread Steve Nguyen
I 2nd that. GNUJSP really rocks since it has supports for 1.0 spec. -- KBMail Software & Java Hosting Service Provider http://www.kbmail.com http://www.ebpcs.net "Plan - Do - Review --> Success" Original message Date: Wed, 15 Dec 1999 05:03:43 -0800 From: Carlos Orrego <[EMAIL

Re: Re : Re : Questions about JSP and EJB

1999-12-14 Thread Steve Nguyen
any problem. Non of free EJB server are scalable from what we tested (and from our partners as well). You may consider Orion as it can scale pretty well (one of its site running 400,000-500,000 hits a day with ease with load-balancing).   --Steve NguyenC.E.OE-mail: [EMAIL PROTECTED]KBMail Software

Re: JSP, Java 2, and App Servers

1999-12-14 Thread Steve Nguyen
We running our single Linux servers with Apache/GNUJSP/XML/JSSI/Load-Balancing/JDK18/JDk122 for 44 clients (48 separate Java VMs) and it works perfectly well. -- Steve Nguyen C.E.O E-mail: [EMAIL PROTECTED] KBMail Software & Java Hosting Services Provider Web site: http://kbmail.com |

  1   2   >