Re: Possible Problem with JSWDK HTTP Server

1999-08-26 Thread Anil Vijendran
I'll try and see if it is possible to get some kind of patch release out with this fix. No promises though. Craig wrote: > My understanding is that JavaSoft has done some further debugging on the POST > issue, and have apparently identified the cause of this one. It's not as critical > to me ye

Re: Bean Database connection

1999-08-26 Thread Shicoff Brian
...not sure if your question was answered, so here goes: You don't need a servlet; a bean will do fine. The database connection can be created in the constructor of the bean (or in any method you create). In your bean, you'll want to import java.sql.*; // Connection, Statement, ResultSet, Exc

Re: JSP and Initializations

1999-08-26 Thread Oliver Pereira
Hi All, >From where can i download the Beta copy of Netscape Enterprise Server 4.0 ? could you please prove me a the Site (link) from where i can download it. Thanks in Advance Regards Oliver === To unsubscribe: mailto [

Java COM Objects for IIS

1999-08-26 Thread Michael Fuhrman
Is anyone developing Java COM Objects for IIS? By this I mean, that NT IIS server can access standard Java Classes through ASP. If you're interested in doing this .. Microsoft has provided a KBT on how to accomplish this. http://support.microsoft.com/support/kb/articles/q167/9/41.asp The prog

Re: Bean Database Connection

1999-08-26 Thread Ben Dudley
Thanks for your replies Chandrasekhar and Brian.   My bean is not being loaded into the JSP page. Any ideas?   Is there an easy way to debug to find out whats going wrong.   I know the SQL works and the Bean must being instantiated within the servlet otherwise I would get an exception be

No Subject

1999-08-26 Thread Jashua Ni
Hi, all: I could not find the definition for the following: inside a servlet service() function, request.setAttribute("key", Object), when this servlet call a jsp, inside jsp, <%Object o1=(Object)reqest.getAttribute("key"), then every function and variable from o1 is available to be used

Re: Java COM Objects for IIS

1999-08-26 Thread Michael Fuhrman
Ted, Thanks, OK. I'm using the MS's com.ms.wfc.data. I believe this is ADO, since I'm constantly loading the MDAC updates (2.5 was the latest right?) on both my workstation and IIS. And, just downloaded the JVM 3.2 build 3186 from Microsoft. (Have yet to test it.) Concerning the closing of a

Re: Java COM Objects for IIS

1999-08-26 Thread Michael Fuhrman
Jason, Actually this may work well, if not solve my issues .. if it's working for you. One request, could you send a small sample piece of code that connects to your database through the method you've chosen to use? It would be most helpful in speeding the massages I would need to make in adjus

Re: JSP and Initializations

1999-08-26 Thread Craig R. McClanahan
Oliver Pereira wrote: > Hi All, > > >From where can i download the Beta copy of Netscape Enterprise Server > 4.0 ? > > could you please prove me a the Site (link) from where i can download > it. > Gee, do suppose a Netscape product might be available -- if it's downloadable at all -- on Netscape

beans, beans, they're good for your heart (tms)

1999-08-26 Thread Frank Starsinic
i noticed that when using beans, they automatically get populated from a webpage Form when the form field names are the same as the bean properties, and hence, good for your heart. this works for both Integer and String types in my test example. for some reason, a Date type is not working. does

No Subject

1999-08-26 Thread Craig R. McClanahan
Jashua Ni wrote: > Hi, all: > > I could not find the definition for the following: > inside a servlet service() function, request.setAttribute("key", > Object), when this servlet call a jsp, inside jsp, <%Object > o1=(Object)reqest.getAttribute("key"), then every function and variable fro

Re: JSP and Initializations

1999-08-26 Thread James Todd
i believe www.iplanet.com is a good resource for info such as this as well. it appears to be a part of netcenter but if you follow the product links or do a search (ie NES 4.0) you'll find product specific information from iplanet.com. hope this helps, - james "Craig R. McClanahan" wrote: > > O

Redirect and Hiding URLs

1999-08-26 Thread Hai-Bang Pham
Hello, I know this question doesn't really belong in this group but ... I was wondering if there is a way to hide the URL when trying to do a HTTP redirect. I've experimented with the response.sendRedirect() method but the redirected URL is always shown. This occurs if the redirect was to an H

Re: remarks and questions

1999-08-26 Thread James Todd
hi philippe, et al - included are some quick responses. i'm going to cross-post my response to: [EMAIL PROTECTED] [EMAIL PROTECTED] as i feel others may have similiar questions/concerns. hope this helps, - james Philippe Mathieu

Re: Redirect and Hiding URLs

1999-08-26 Thread James Todd
hi hai - you might want to check out the tag or the underlying RequestDispatcher.forward() method. if your using jswdk for development, another consideration is to specify an http url as a docBase. with such a configuration the initial server will effecti

Newbie Question

1999-08-26 Thread Michael Fuhrman
I have a Java Class and would like to use it in a JSP file. How do I get the two linked? Please provide simple hello world example Michael J. Fuhrman Reliable Business Computers http://www.creliable.com === To unsubscribe:

Re: Newbie Question

1999-08-26 Thread Luc Saint-Elie
Michael, Here is the way I use a class called DBconnection (a JDBC connection poll): <%@ page language="java" import="java.sql.*,DBConnectionManager" %> <%! DBConnectionManager connMgr = DBConnectionManager.getInstance(); %> [...] <% Connection con = connMgr.getConnection("idb"); if

Re: passing parameters from one jsp to another (tms)

1999-08-26 Thread Gabriel Lawrence
Does this work on Jrun (v2.3.3 windows nt?) I get the following message when I try and use the <%@include file=""%> tag... 500 Internal Server Error JSP Parse Error JSP Directive fileis not recognized. any ideas? Darin Wilson wrote: > Using the include directive (as you are doing) rather than

Re: Database Connections Cleanup????

1999-08-26 Thread Kirkdorffer, Daniel
You can tie the connection cleanup to the loss of the session. So, when you user logs in, you establish a session object and store the connection object with it. When the user logs out or the session times out, you can listen for that through the HttpSessionBindingListener and make sure the open

Database Connections Cleanup????

1999-08-26 Thread Imam, Asim, CFCTR
Hi All, I have developed a simple query tool using JSP and JavaBeans. The user logs in and a queryBean is instantiated and the connection is made to the database. I have an end session button which closes the DB connection but if I dont use that my connection remains open as well as the bean is s

Re: passing parameters from one jsp to another (tms)

1999-08-26 Thread Gabriel Lawrence
Yes in the real version I actually have a file inbetween the quotes and it still doenst work (yes the file even exists...) Anyone successfully using the stuff with Jrun, or is it broken? I've also tried the jsp:include version with no luck. I can include the page with the RequestDispatcher, but I

Is JWSDK Redistributable?

1999-08-26 Thread 박제권
Is JWSDK 2.1 redistributable? === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP can be found at: http://java.sun.com/products/jsp/faq.html http://www.esperanto.org.nz/jsp/jspfaq.htm

JRUN 2.3 configuration on IIS 4.0 - mapping problems

1999-08-26 Thread Anup
Hello can anyone point me to the online/other resources on properly configuring IIS 4.0 with JRUN 2.3. The mappings are not working. I configured it using Connector wizard available with JRun and did execute metaset on Jrun.dll. how to give mapping to a directory which has servlets. Also is th