RE: Java/JSP/Servlet Programmer [off topic]

2003-10-17 Thread Hart, Justin
Perhaps.  I still like my solution of going to the last row and getting the current 
row number better though :-P

-Original Message-
From: Shapira, Yoav [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 5:20 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer [off topic]



Howdy,
These are all tradeoffs, as there are with almost every real-life design
decision.  With well-maintained modern databases, even complicates
queries can run very quickly.  This extra row count query, as I said
originally, is a way to get the result count without getting the actual
full result set.  It's useful in some cases and not in others.

If you have potentially large results to your queries, this is a prudent
approach that slightly sacrifices performance for
stability/availability.  I.e. it might run a little slower, but it won't
crash.

Yoav Shapira
Millennium ChemInformatics


>-Original Message-
>From: Hart, Justin [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 5:15 PM
>To: Tomcat Users List
>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>
>But what if it's a busy database, or the query is complex?
>
>-Original Message-
>From: Shapira, Yoav [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 5:13 PM
>To: Tomcat Users List
>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>
>
>
>Howdy,
>
>>Yeah, but that means you have to run the query twice.
>
>Yup, it does.  There are cases when that's extremely useful if the
query
>result set is large: you might not want to load it into memory, or
>modify the query, so that you don't run out of heap memory.
>
>Yoav Shapira
>
>>
>>-Original Message-
>>From: Shapira, Yoav [mailto:[EMAIL PROTECTED]
>>Sent: Friday, October 17, 2003 4:54 PM
>>To: Tomcat Users List
>>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>>
>>
>>
>>Howdy,
>>I too don't think ResultSetMetaData has row count.
>>
>>There's also the hackish but usually OK approach which wraps the SQL
>>query in select count(*).  This has the advantage of giving you just
>the
>>row count without the whole (potentially huge) result set.  Something
>>like:
>>
>>int getRowCount(Connection connection, String sql) {
>>  String countSql = "select count(*) from (" + sql + ")";
>>  Statement stmt = connection.createStatement();
>>  ResultSet rs = stmt.executeQuery(countSql);
>>  rs.next();
>>  return rs.getInt(1);
>>}
>>
>>Or something like that...
>>
>>Yoav Shapira
>>Millennium ChemInformatics
>>
>>
>>>-Original Message-
>>>From: Hart, Justin [mailto:[EMAIL PROTECTED]
>>>Sent: Friday, October 17, 2003 4:49 PM
>>>To: Tomcat Users List
>>>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>>>
>>>I thought that resultsetmetadata had column count, but not row count.
>>If
>>>it has row count, then I am distinctly interested.
>>>-Original Message-
>>>From: Brendle, Douglas A. [mailto:[EMAIL PROTECTED]
>>>Sent: Friday, October 17, 2003 4:45 PM
>>>To: Tomcat Users List
>>>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>>>
>>>
>>>Have you tried using ResultetMetaData to get row count BEFORE you
>>>process the Resultset?
>>>
>>>-Original Message-
>>>From: epyonne [mailto:[EMAIL PROTECTED]
>>>Sent: Friday, October 17, 2003 3:44 PM
>>>To: Tomcat Users List
>>>Subject: Re: Java/JSP/Servlet Programmer [off topic]
>>>
>>>
>>>Pardon me that it is off topics
>>>
>>>Speaking about re-usable ResultSet, I am having a little problem with
>a
>>>ResultSet and I cannot find the solution.
>>>
>>>I have a routine in my servlet to call an Oracle stored procedure,
>>using
>>>CallableStatement.  Everything works fine.  Then, I want to get the
>row
>>>count of the ResultSet.  I can do that by using the rs.last() method.
>>>However, that requires the ResultSet to be scrollable.  So I change
>the
>>>code
>>>accordingly.  After that, I keep getting the error message of:
>>>SQLException: Invalid operation of forward only resultset: last
>>>
>>>I can't figure out why.  I thought I have defined the ResultSet to be
>>>scrollable already.  The following is the snippets:
>>>//code begins--
>>>DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
>>>String url = "jdbc:oracle:thin:@.

RE: Java/JSP/Servlet Programmer

2003-10-17 Thread Hart, Justin
It's not that it's difficult, but I wouldn't ask questions about specific 
functions/parameters/methods.  I have written plenty of java, and couldn't tell you 
what methods most specific interfaces implement.  I couldn't even tell you what 
methods the interfaces that I've written implement.

Instead, I would look for conceptual knowledge.

I think that just about anybody can spit up wrote knowledge like that after an hour of 
studying and not know how to implement a thing, but most people who understand the 
actual concepts couldn't tell you what methods or how many methods, or what their 
parameters are.

Just my $.02.

-Original Message-
From: Ruben Gamez [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 5:17 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer


Does anyone else think that what I'm asking for is so difficult?


-Original Message-
From: David Rees [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 17, 2003 4:54 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer

On Fri, October 17, 2003 at 1:27 pm, Ruben Gamez sent the following
> The first is a written test which has J2SE, Servlet, and JSP
questions.
> The second is a programming test, they must write a JSP page that form
> posts to a Servlet, that retrieves ANYTHING from a Bean and outputs it
> in the Servlet.  I have a lab computer set up with everything except
the
> code.  They must also use notepad to do this.

Wow, sounds like entry level coding to me!  And you're having trouble
getting people to pass these things?

-Dave

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Java/JSP/Servlet Programmer [off topic]

2003-10-17 Thread Hart, Justin
But what if it's a busy database, or the query is complex?

-Original Message-
From: Shapira, Yoav [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 5:13 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer [off topic]



Howdy,

>Yeah, but that means you have to run the query twice.

Yup, it does.  There are cases when that's extremely useful if the query
result set is large: you might not want to load it into memory, or
modify the query, so that you don't run out of heap memory.

Yoav Shapira

>
>-Original Message-
>From: Shapira, Yoav [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 4:54 PM
>To: Tomcat Users List
>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>
>
>
>Howdy,
>I too don't think ResultSetMetaData has row count.
>
>There's also the hackish but usually OK approach which wraps the SQL
>query in select count(*).  This has the advantage of giving you just
the
>row count without the whole (potentially huge) result set.  Something
>like:
>
>int getRowCount(Connection connection, String sql) {
>  String countSql = "select count(*) from (" + sql + ")";
>  Statement stmt = connection.createStatement();
>  ResultSet rs = stmt.executeQuery(countSql);
>  rs.next();
>  return rs.getInt(1);
>}
>
>Or something like that...
>
>Yoav Shapira
>Millennium ChemInformatics
>
>
>>-Original Message-
>>From: Hart, Justin [mailto:[EMAIL PROTECTED]
>>Sent: Friday, October 17, 2003 4:49 PM
>>To: Tomcat Users List
>>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>>
>>I thought that resultsetmetadata had column count, but not row count.
>If
>>it has row count, then I am distinctly interested.
>>-Original Message-
>>From: Brendle, Douglas A. [mailto:[EMAIL PROTECTED]
>>Sent: Friday, October 17, 2003 4:45 PM
>>To: Tomcat Users List
>>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>>
>>
>>Have you tried using ResultetMetaData to get row count BEFORE you
>>process the Resultset?
>>
>>-Original Message-
>>From: epyonne [mailto:[EMAIL PROTECTED]
>>Sent: Friday, October 17, 2003 3:44 PM
>>To: Tomcat Users List
>>Subject: Re: Java/JSP/Servlet Programmer [off topic]
>>
>>
>>Pardon me that it is off topics
>>
>>Speaking about re-usable ResultSet, I am having a little problem with
a
>>ResultSet and I cannot find the solution.
>>
>>I have a routine in my servlet to call an Oracle stored procedure,
>using
>>CallableStatement.  Everything works fine.  Then, I want to get the
row
>>count of the ResultSet.  I can do that by using the rs.last() method.
>>However, that requires the ResultSet to be scrollable.  So I change
the
>>code
>>accordingly.  After that, I keep getting the error message of:
>>SQLException: Invalid operation of forward only resultset: last
>>
>>I can't figure out why.  I thought I have defined the ResultSet to be
>>scrollable already.  The following is the snippets:
>>//code begins--
>>DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
>>String url = "jdbc:oracle:thin:@..";
>>conn = DriverManager.getConnection(url,);
>>String plsql = "begin (?,?,?); end;";
>>CallableStatement cs = conn.prepareCall(plsql,
>>  ResultSet.TYPE_SCROLL_INSENSITIVE,
>ResultSet.CONCUR_UPDATABLE);
>>cs.registerOutParameter(1, OracleTypes.CURSOR);
>>cs.setString(2, InputParam1);
>>cs.registerOutParameter(3, Types.INTEGER);
>>cs.execute();
>>ResultSet rs = null;
>>rs = (ResultSet)cs.getObject(1);
>>rs.last();
>>//code ends
>>
>>Any help will be very much appreciated.
>>
>>
>>
>>- Original Message -
>>From: "Mike Curwen" <[EMAIL PROTECTED]>
>>To: "'Tomcat Users List'" <[EMAIL PROTECTED]>
>>Sent: Friday, October 17, 2003 03:12 PM
>>Subject: RE: Java/JSP/Servlet Programmer
>>
>>
>>> I would send y'all my resume, but ever since the humiliation of the
>>> re-usable ResultSet, I'm sure I'm one of those that can't walk yet.
>;)
>>>
>>>
>>>
>>> > -Original Message-
>>> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
>>> > Sent: Friday, October 17, 2003 3:08 PM
>>> > To: Tomcat Users List
>>> > Subject: RE: Java/JSP/Servlet Programmer
>>> >
>>> >
>>> > I agree. I

RE: Java/JSP/Servlet Programmer [off topic]

2003-10-17 Thread Hart, Justin
Yeah, but that means you have to run the query twice.

-Original Message-
From: Shapira, Yoav [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 4:54 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer [off topic]



Howdy,
I too don't think ResultSetMetaData has row count.

There's also the hackish but usually OK approach which wraps the SQL
query in select count(*).  This has the advantage of giving you just the
row count without the whole (potentially huge) result set.  Something
like:

int getRowCount(Connection connection, String sql) {
  String countSql = "select count(*) from (" + sql + ")";
  Statement stmt = connection.createStatement();
  ResultSet rs = stmt.executeQuery(countSql);
  rs.next();
  return rs.getInt(1);
}

Or something like that...

Yoav Shapira
Millennium ChemInformatics


>-Original Message-
>From: Hart, Justin [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 4:49 PM
>To: Tomcat Users List
>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>
>I thought that resultsetmetadata had column count, but not row count.
If
>it has row count, then I am distinctly interested.
>-Original Message-
>From: Brendle, Douglas A. [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 4:45 PM
>To: Tomcat Users List
>Subject: RE: Java/JSP/Servlet Programmer [off topic]
>
>
>Have you tried using ResultetMetaData to get row count BEFORE you
>process the Resultset?
>
>-Original Message-
>From: epyonne [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 3:44 PM
>To: Tomcat Users List
>Subject: Re: Java/JSP/Servlet Programmer [off topic]
>
>
>Pardon me that it is off topics
>
>Speaking about re-usable ResultSet, I am having a little problem with a
>ResultSet and I cannot find the solution.
>
>I have a routine in my servlet to call an Oracle stored procedure,
using
>CallableStatement.  Everything works fine.  Then, I want to get the row
>count of the ResultSet.  I can do that by using the rs.last() method.
>However, that requires the ResultSet to be scrollable.  So I change the
>code
>accordingly.  After that, I keep getting the error message of:
>SQLException: Invalid operation of forward only resultset: last
>
>I can't figure out why.  I thought I have defined the ResultSet to be
>scrollable already.  The following is the snippets:
>//code begins--
>DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
>String url = "jdbc:oracle:thin:@..";
>conn = DriverManager.getConnection(url,);
>String plsql = "begin (?,?,?); end;";
>CallableStatement cs = conn.prepareCall(plsql,
>  ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_UPDATABLE);
>cs.registerOutParameter(1, OracleTypes.CURSOR);
>cs.setString(2, InputParam1);
>cs.registerOutParameter(3, Types.INTEGER);
>cs.execute();
>ResultSet rs = null;
>rs = (ResultSet)cs.getObject(1);
>rs.last();
>//code ends
>
>Any help will be very much appreciated.
>
>
>
>- Original Message -
>From: "Mike Curwen" <[EMAIL PROTECTED]>
>To: "'Tomcat Users List'" <[EMAIL PROTECTED]>
>Sent: Friday, October 17, 2003 03:12 PM
>Subject: RE: Java/JSP/Servlet Programmer
>
>
>> I would send y'all my resume, but ever since the humiliation of the
>> re-usable ResultSet, I'm sure I'm one of those that can't walk yet.
;)
>>
>>
>>
>> > -Original Message-
>> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
>> > Sent: Friday, October 17, 2003 3:08 PM
>> > To: Tomcat Users List
>> > Subject: RE: Java/JSP/Servlet Programmer
>> >
>> >
>> > I agree. I'm getting funds to hire a new person and I dread it.
I've
>> > screened a lot of people on the last time I hired someone an
>> > still got a
>> > lemon. Lot's of people talk to talk, but can't even walk yet.
>> >
>> >
>> > Thank You,
>> >
>> > Justin A. Stanczak
>> > Web Manager
>> > Shake Learning Resource Center
>> > Vincennes University
>> > (812)888-5813
>> >
>> >
>> >
>> >
>> > "Hart, Justin" <[EMAIL PROTECTED]>
>> > 10/17/2003 03:00 PM
>> > Please respond to "Tomcat Users List"
>> >
>> >
>> > To: "Tomcat Users List"
<[EMAIL PROTECTED]>
>> > cc:
>> > Subject:RE: Java/JSP/Servlet Programmer
>> >
>> >
>> >

RE: Java/JSP/Servlet Programmer

2003-10-17 Thread Hart, Justin
Right... but you could implement the interface and get the same result with a little 
more work and a lot more flexibility is the point that they're making.

-Original Message-
From: Brendle, Douglas A. [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 4:49 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer


Hmmm Direct from the Servlet API

To implement this interface, you can write a generic servlet that extends 
javax.servlet.GenericServlet or an HTTP servlet that extends 
javax.servlet.http.HttpServlet. 

-Original Message-
From: mike jackson [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 3:46 PM
To: 'Tomcat Users List'
Subject: RE: Java/JSP/Servlet Programmer


Hmm, I could see where people would have difficulty.  Since the answers are
"there's 5 methods" and "nothing" (servlet is an interface).

--mikej
-=--
mike jackson
[EMAIL PROTECTED]

> -Original Message-
> From: Ruben Gamez [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 17, 2003 12:33 PM
> To: Tomcat Users List
> Subject: RE: Java/JSP/Servlet Programmer
> 
> Ok... here's two questions...
> 
> 1. Off the top of your head, what two methods are required in a Servlet?
> What two parameters do they take?
> 
> 2. What does a Servlet extend?
> 
> 
> -Original Message-
> From: Mike Curwen [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 17, 2003 4:30 PM
> To: 'Tomcat Users List'
> Subject: RE: Java/JSP/Servlet Programmer
> 
> As off-topic as it is, I'm sure lots of us are *real* curious by now
> what an example question would be on your 'simple test'.  :)
> 
> 
> 
> > -Original Message-
> > From: Ruben Gamez [mailto:[EMAIL PROTECTED]
> > Sent: Friday, October 17, 2003 3:23 PM
> > To: Tomcat Users List
> > Subject: RE: Java/JSP/Servlet Programmer
> >
> >
> > Yes, well, I'm only asking for 1 1/2+ years experience in JSP
> > & Servlets and I'm still having trouble.  I was asking for
> > ColdFusion as well, but I've given up on that.  I'll just
> > have to train the new developer on CF later on.
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Friday, October 17, 2003 4:15 PM
> > To: Tomcat Users List
> > Subject: Re: Java/JSP/Servlet Programmer
> >
> > I agree. I worked for a place that listed C++ in all there
> > job listings,
> >
> > but there was not one line of C in the whole company. I asked who was
> > programming C, but they didn't know what I was talking about. LOL
> >
> >
> > Thank You,
> >
> > Justin A. Stanczak
> > Web Manager
> > Shake Learning Resource Center
> > Vincennes University
> > (812)888-5813
> >
> >
> >
> >
> > "John B. Moore" <[EMAIL PROTECTED]>
> > 10/17/2003 03:10 PM
> > Please respond to "Tomcat Users List"
> >
> >
> > To: Tomcat Users List <[EMAIL PROTECTED]>
> > cc:
> > Subject:    Re: Java/JSP/Servlet Programmer
> >
> >
> > Yeah, and those of "us" that do have the credentials get lost in the
> > "forest".  (Not to mention the observation that many of these "job
> > postings" want the person to have x years of experience in
> > 6-7 different
> >
> > areas, mostly unrelated and the total "experience" years exceeds most
> > normal human's productive lifespans, even accounting for reasonable
> > "overlap"...)
> >
> > John..
> >
> > Hart, Justin wrote:
> >
> > >That's what I've found.  The market is full of tech workers, but that
> > doesn't mean that they're a programmer, or as familiar with
> > technology X
> >
> > (for position Y) as they should be.  I went to a job fair a
> > couple years
> >
> > ago for 4 job opennings, 2 for programmers.  2 for techs.
> > 1000 people
> > showed up, and I spoke with only 4-5 that I really thought
> > qualified for
> >
> > the programming jobs or had credentials that showed that they
> > qualified
> > for the job.
> > >
> > >-Original Message-
> > >From: Ruben Gamez [mailto:[EMAIL PROTECTED]
> > >Sent: Friday, October 17, 2003 3:57 PM
> > >To: Tomcat Users List
> > >Subject: RE: Java/JSP/Servlet Programmer
> > >
> > >
> > >I would think so, but it's true.  I've gotten several people that
> > >interview w

RE: Java/JSP/Servlet Programmer [off topic]

2003-10-17 Thread Hart, Justin
I thought that resultsetmetadata had column count, but not row count.  If it has row 
count, then I am distinctly interested.
-Original Message-
From: Brendle, Douglas A. [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 4:45 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer [off topic]


Have you tried using ResultetMetaData to get row count BEFORE you 
process the Resultset?

-Original Message-
From: epyonne [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 3:44 PM
To: Tomcat Users List
Subject: Re: Java/JSP/Servlet Programmer [off topic]


Pardon me that it is off topics

Speaking about re-usable ResultSet, I am having a little problem with a
ResultSet and I cannot find the solution.

I have a routine in my servlet to call an Oracle stored procedure, using
CallableStatement.  Everything works fine.  Then, I want to get the row
count of the ResultSet.  I can do that by using the rs.last() method.
However, that requires the ResultSet to be scrollable.  So I change the code
accordingly.  After that, I keep getting the error message of:
SQLException: Invalid operation of forward only resultset: last

I can't figure out why.  I thought I have defined the ResultSet to be
scrollable already.  The following is the snippets:
//code begins--
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
String url = "jdbc:oracle:thin:@..";
conn = DriverManager.getConnection(url,);
String plsql = "begin (?,?,?); end;";
CallableStatement cs = conn.prepareCall(plsql,
  ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
cs.registerOutParameter(1, OracleTypes.CURSOR);
cs.setString(2, InputParam1);
cs.registerOutParameter(3, Types.INTEGER);
cs.execute();
ResultSet rs = null;
rs = (ResultSet)cs.getObject(1);
rs.last();
//code ends

Any help will be very much appreciated.



- Original Message -
From: "Mike Curwen" <[EMAIL PROTECTED]>
To: "'Tomcat Users List'" <[EMAIL PROTECTED]>
Sent: Friday, October 17, 2003 03:12 PM
Subject: RE: Java/JSP/Servlet Programmer


> I would send y'all my resume, but ever since the humiliation of the
> re-usable ResultSet, I'm sure I'm one of those that can't walk yet.   ;)
>
>
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Friday, October 17, 2003 3:08 PM
> > To: Tomcat Users List
> > Subject: RE: Java/JSP/Servlet Programmer
> >
> >
> > I agree. I'm getting funds to hire a new person and I dread it. I've
> > screened a lot of people on the last time I hired someone an
> > still got a
> > lemon. Lot's of people talk to talk, but can't even walk yet.
> >
> >
> > Thank You,
> >
> > Justin A. Stanczak
> > Web Manager
> > Shake Learning Resource Center
> > Vincennes University
> > (812)888-5813
> >
> >
> >
> >
> > "Hart, Justin" <[EMAIL PROTECTED]>
> > 10/17/2003 03:00 PM
> > Please respond to "Tomcat Users List"
> >
> >
> > To: "Tomcat Users List" <[EMAIL PROTECTED]>
> > cc:
> > Subject:RE: Java/JSP/Servlet Programmer
> >
> >
> > That's what I've found.  The market is full of tech workers, but that
> > doesn't mean that they're a programmer, or as familiar with
> > technology X
> > (for position Y) as they should be.  I went to a job fair a
> > couple years
> > ago for 4 job opennings, 2 for programmers.  2 for techs.
> > 1000 people
> > showed up, and I spoke with only 4-5 that I really thought
> > qualified for
> > the programming jobs or had credentials that showed that they
> > qualified
> > for the job.
> >
> > -Original Message-
> > From: Ruben Gamez [mailto:[EMAIL PROTECTED]
> > Sent: Friday, October 17, 2003 3:57 PM
> > To: Tomcat Users List
> > Subject: RE: Java/JSP/Servlet Programmer
> >
> >
> > I would think so, but it's true.  I've gotten several people
> > that interview well, but none that can pass a couple of
> > simple tests (I consider them simple).
> >
> > -Original Message-
> > From: epyonne [mailto:[EMAIL PROTECTED]
> > Sent: Friday, October 17, 2003 3:55 PM
> > To: Tomcat Users List
> > Subject: Re: Java/JSP/Servlet Programmer
> >
> > Cannot find anyone?!?!?!  It is rather hard to believe based
> > on current job market.
> >
> >
> > - Original Message

RE: Java/JSP/Servlet Programmer

2003-10-17 Thread Hart, Justin
Corrected I stand.

-Original Message-
From: Ruben Gamez [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 4:36 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer


Yes, you are wrong.  ColdFusion MX was entire rewritten in Java, and it
allows you to write JSP, Servlets and Java programs that you can use
within it.  It's become quite powerful now.

-Original Message-
From: epyonne [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 17, 2003 4:31 PM
To: Tomcat Users List
Subject: Re: Java/JSP/Servlet Programmer

Correct me if I am wrong, but I think Cold Fusion is dying (if not
already
dead) technology.


- Original Message -
From: "Ruben Gamez" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Friday, October 17, 2003 03:23 PM
Subject: RE: Java/JSP/Servlet Programmer


Yes, well, I'm only asking for 1 1/2+ years experience in JSP & Servlets
and I'm still having trouble.  I was asking for ColdFusion as well, but
I've given up on that.  I'll just have to train the new developer on CF
later on.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 4:15 PM
To: Tomcat Users List
Subject: Re: Java/JSP/Servlet Programmer

I agree. I worked for a place that listed C++ in all there job listings,

but there was not one line of C in the whole company. I asked who was
programming C, but they didn't know what I was talking about. LOL


Thank You,

Justin A. Stanczak
Web Manager
Shake Learning Resource Center
Vincennes University
(812)888-5813




"John B. Moore" <[EMAIL PROTECTED]>
10/17/2003 03:10 PM
Please respond to "Tomcat Users List"


To: Tomcat Users List <[EMAIL PROTECTED]>
cc:
Subject:Re: Java/JSP/Servlet Programmer


Yeah, and those of "us" that do have the credentials get lost in the
"forest".  (Not to mention the observation that many of these "job
postings" want the person to have x years of experience in 6-7 different

areas, mostly unrelated and the total "experience" years exceeds most
normal human's productive lifespans, even accounting for reasonable
"overlap"...)

John..

Hart, Justin wrote:

>That's what I've found.  The market is full of tech workers, but that
doesn't mean that they're a programmer, or as familiar with technology X

(for position Y) as they should be.  I went to a job fair a couple years

ago for 4 job opennings, 2 for programmers.  2 for techs.  1000 people
showed up, and I spoke with only 4-5 that I really thought qualified for

the programming jobs or had credentials that showed that they qualified
for the job.
>
>-Original Message-
>From: Ruben Gamez [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 3:57 PM
>To: Tomcat Users List
>Subject: RE: Java/JSP/Servlet Programmer
>
>
>I would think so, but it's true.  I've gotten several people that
>interview well, but none that can pass a couple of simple tests (I
>consider them simple).
>
>-Original Message-
>From: epyonne [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 3:55 PM
>To: Tomcat Users List
>Subject: Re: Java/JSP/Servlet Programmer
>
>Cannot find anyone?!?!?!  It is rather hard to believe based on current
>job
>market.
>
>
>- Original Message -
>From: "Ruben Gamez" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Friday, October 17, 2003 02:33 PM
>Subject: Java/JSP/Servlet Programmer
>
>
>I'm looking for an experienced JSP/Servlet programmer located in our
>area.  We're located in West Palm Beach, FL.  We've tried posting the
>Job on Monster, and looking for candidates on there, but still cannot
>find someone that can do the job.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe

RE: Java/JSP/Servlet Programmer

2003-10-17 Thread Hart, Justin
Cold in the grave.

-Original Message-
From: epyonne [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 4:31 PM
To: Tomcat Users List
Subject: Re: Java/JSP/Servlet Programmer


Correct me if I am wrong, but I think Cold Fusion is dying (if not already
dead) technology.


- Original Message -
From: "Ruben Gamez" <[EMAIL PROTECTED]>
To: "Tomcat Users List" <[EMAIL PROTECTED]>
Sent: Friday, October 17, 2003 03:23 PM
Subject: RE: Java/JSP/Servlet Programmer


Yes, well, I'm only asking for 1 1/2+ years experience in JSP & Servlets
and I'm still having trouble.  I was asking for ColdFusion as well, but
I've given up on that.  I'll just have to train the new developer on CF
later on.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 4:15 PM
To: Tomcat Users List
Subject: Re: Java/JSP/Servlet Programmer

I agree. I worked for a place that listed C++ in all there job listings,

but there was not one line of C in the whole company. I asked who was
programming C, but they didn't know what I was talking about. LOL


Thank You,

Justin A. Stanczak
Web Manager
Shake Learning Resource Center
Vincennes University
(812)888-5813




"John B. Moore" <[EMAIL PROTECTED]>
10/17/2003 03:10 PM
Please respond to "Tomcat Users List"


To: Tomcat Users List <[EMAIL PROTECTED]>
cc:
Subject:Re: Java/JSP/Servlet Programmer


Yeah, and those of "us" that do have the credentials get lost in the
"forest".  (Not to mention the observation that many of these "job
postings" want the person to have x years of experience in 6-7 different

areas, mostly unrelated and the total "experience" years exceeds most
normal human's productive lifespans, even accounting for reasonable
"overlap"...)

John..

Hart, Justin wrote:

>That's what I've found.  The market is full of tech workers, but that
doesn't mean that they're a programmer, or as familiar with technology X

(for position Y) as they should be.  I went to a job fair a couple years

ago for 4 job opennings, 2 for programmers.  2 for techs.  1000 people
showed up, and I spoke with only 4-5 that I really thought qualified for

the programming jobs or had credentials that showed that they qualified
for the job.
>
>-Original Message-
>From: Ruben Gamez [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 3:57 PM
>To: Tomcat Users List
>Subject: RE: Java/JSP/Servlet Programmer
>
>
>I would think so, but it's true.  I've gotten several people that
>interview well, but none that can pass a couple of simple tests (I
>consider them simple).
>
>-Original Message-
>From: epyonne [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 3:55 PM
>To: Tomcat Users List
>Subject: Re: Java/JSP/Servlet Programmer
>
>Cannot find anyone?!?!?!  It is rather hard to believe based on current
>job
>market.
>
>
>- Original Message -
>From: "Ruben Gamez" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Friday, October 17, 2003 02:33 PM
>Subject: Java/JSP/Servlet Programmer
>
>
>I'm looking for an experienced JSP/Servlet programmer located in our
>area.  We're located in West Palm Beach, FL.  We've tried posting the
>Job on Monster, and looking for candidates on there, but still cannot
>find someone that can do the job.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Java/JSP/Servlet Programmer

2003-10-17 Thread Hart, Justin
Honestly, I've been a professional C++ programmer for several years now, and I don't 
mean to toot my own horn, but I'm a damn good one.  I don't expect anyone to be able 
to sit down at the terminal in vi with no man pages and hammer out code in an hour or 
2 that does much anything useful.  Perhaps a handful of programming questions would be 
a bit more applicable... but that's just my $.02

-Original Message-
From: Ruben Gamez [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 4:27 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer


The first is a written test which has J2SE, Servlet, and JSP questions.
The second is a programming test, they must write a JSP page that form
posts to a Servlet, that retrieves ANYTHING from a Bean and outputs it
in the Servlet.  I have a lab computer set up with everything except the
code.  They must also use notepad to do this.

-Original Message-
From: David Rees [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 17, 2003 4:16 PM
To: [EMAIL PROTECTED]
Subject: RE: Java/JSP/Servlet Programmer

On Fri, October 17, 2003 1at 2:56 pm, Ruben Gamez sent the following
> I would think so, but it's true.  I've gotten several people that
> interview well, but none that can pass a couple of simple tests (I
> consider them simple).

Out of curiosity, what are the tests you are giving them?

-Dave

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Java/JSP/Servlet Programmer

2003-10-17 Thread Hart, Justin
There are always the people who ask for 5+ years of experience with .NET or something 
akin to that.

I saw one posting locally that asked for 30+ years of ethernet experience.  My guess 
is that they wanted someone who worked at PARC, and that the guy had already applied 
for the job.

-Original Message-
From: John B. Moore [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 4:10 PM
To: Tomcat Users List
Subject: Re: Java/JSP/Servlet Programmer


Yeah, and those of "us" that do have the credentials get lost in the 
"forest".  (Not to mention the observation that many of these "job 
postings" want the person to have x years of experience in 6-7 different 
areas, mostly unrelated and the total "experience" years exceeds most 
normal human's productive lifespans, even accounting for reasonable 
"overlap"...)

John..

Hart, Justin wrote:

>That's what I've found.  The market is full of tech workers, but that doesn't mean 
>that they're a programmer, or as familiar with technology X (for position Y) as they 
>should be.  I went to a job fair a couple years ago for 4 job opennings, 2 for 
>programmers.  2 for techs.  1000 people showed up, and I spoke with only 4-5 that I 
>really thought qualified for the programming jobs or had credentials that showed that 
>they qualified for the job.
>
>-Original Message-
>From: Ruben Gamez [mailto:[EMAIL PROTECTED]
>Sent: Friday, October 17, 2003 3:57 PM
>To: Tomcat Users List
>Subject: RE: Java/JSP/Servlet Programmer
>
>
>I would think so, but it's true.  I've gotten several people that
>interview well, but none that can pass a couple of simple tests (I
>consider them simple).
>
>-Original Message-
>From: epyonne [mailto:[EMAIL PROTECTED] 
>Sent: Friday, October 17, 2003 3:55 PM
>To: Tomcat Users List
>Subject: Re: Java/JSP/Servlet Programmer
>
>Cannot find anyone?!?!?!  It is rather hard to believe based on current
>job
>market.
>
>
>- Original Message -
>From: "Ruben Gamez" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Friday, October 17, 2003 02:33 PM
>Subject: Java/JSP/Servlet Programmer
>
>
>I'm looking for an experienced JSP/Servlet programmer located in our
>area.  We're located in West Palm Beach, FL.  We've tried posting the
>Job on Monster, and looking for candidates on there, but still cannot
>find someone that can do the job.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>  
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Java/JSP/Servlet Programmer

2003-10-17 Thread Hart, Justin
That's what I've found.  The market is full of tech workers, but that doesn't mean 
that they're a programmer, or as familiar with technology X (for position Y) as they 
should be.  I went to a job fair a couple years ago for 4 job opennings, 2 for 
programmers.  2 for techs.  1000 people showed up, and I spoke with only 4-5 that I 
really thought qualified for the programming jobs or had credentials that showed that 
they qualified for the job.

-Original Message-
From: Ruben Gamez [mailto:[EMAIL PROTECTED]
Sent: Friday, October 17, 2003 3:57 PM
To: Tomcat Users List
Subject: RE: Java/JSP/Servlet Programmer


I would think so, but it's true.  I've gotten several people that
interview well, but none that can pass a couple of simple tests (I
consider them simple).

-Original Message-
From: epyonne [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 17, 2003 3:55 PM
To: Tomcat Users List
Subject: Re: Java/JSP/Servlet Programmer

Cannot find anyone?!?!?!  It is rather hard to believe based on current
job
market.


- Original Message -
From: "Ruben Gamez" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, October 17, 2003 02:33 PM
Subject: Java/JSP/Servlet Programmer


I'm looking for an experienced JSP/Servlet programmer located in our
area.  We're located in West Palm Beach, FL.  We've tried posting the
Job on Monster, and looking for candidates on there, but still cannot
find someone that can do the job.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tomcat + IIS 6.0

2003-10-17 Thread Hart, Justin
Hey,
What's the story on Tomcat + IIS 6.0 and AJP connectors?  Does this scenario 
work or not?  I've seen scattered throughout the net where noone can get this to work. 
 Can somebody just tell me yes or no, this does or does not work?

Justin W. Hart


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: HTTP 403 - isapi_redirector

2003-10-16 Thread Hart, Justin
Ahh, I get 404's on all pages ending in jsp on IIS 6, the ones ending in html are fine.

-Original Message-
From: Dionne, Patrice [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 4:25 PM
To: Tomcat Users List
Subject: RE: HTTP 403 - isapi_redirector


This is the environement:

IIS 5 
Tomcat 4.1.24 (listen on port 8080)
Win2k Avanced Server
Browser: IE 6 or Netscape 7.1 don't make any difference



-Original Message-----
From: Hart, Justin [mailto:[EMAIL PROTECTED]
Sent: 16 octobre, 2003 16:20
To: Tomcat Users List
Subject: RE: HTTP 403 - isapi_redirector


What version of IIS?

-Original Message-
From: Watkins, James [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 4:19 PM
To: 'Tomcat Users List'
Subject: RE: HTTP 403 - isapi_redirector


Do you get the form if you go directly to it through IIS, I mean
http://host/site/form.jsp 


-Original Message-
From: Dionne, Patrice [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 1:51 PM
To: Tomcat Users List
Subject: RE: HTTP 403 - isapi_redirector


I'm not getting the form if I go via IIS on port 80 but if I try directly
via Tomcat on port 8080 I get it. So the set up (web.xml) is fine on tomcat.



-Original Message-
From: Watkins, James [mailto:[EMAIL PROTECTED]
Sent: 16 octobre, 2003 14:04
To: 'Tomcat Users List'
Subject: RE: HTTP 403 - isapi_redirector


With form based authentication, are you getting the form?

-Original Message-
From: Dionne, Patrice [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:18 PM
To: Tomcat Users List
Subject: RE: HTTP 403 - isapi_redirector


Thanks James, I did try your solution but nothing changed



-Original Message-
From: Watkins, James [mailto:[EMAIL PROTECTED]
Sent: 16 octobre, 2003 12:06
To: 'Tomcat Users List'
Subject: RE: HTTP 403 - isapi_redirector


I ran into the same problem and switched to using a form based
authentication which seems to work fine. It seems to be some problem with
iis intercepting the login info?

-Original Message-
From: Dionne, Patrice [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:00 AM
To: [EMAIL PROTECTED]
Subject: HTTP 403 - isapi_redirector


Hi all,

Environement:
IIS 5 (isapi_redirector.dll) (listen on port 80)
Tomcat 4.1.24 (listen on port 8080)
Win2k Avanced Server
Browser: IE 6 or Netscape 7.1

Here is my problem.

I get a "HTTP Status 403 - Access to the requested resource has been denied"
when I try to access a protected ressource(in web.xml) via IIS on port 80
which redirect to a Tomcat 4.1.24 on port 8080.

Not suprising because the ressource is secured into the web.xml. I use a
BASIC authentification. But the thing is that I never get the pop-up window
asking for my credentials (username/password). So, I never get the chance to
authentificate myself (username/password).

I'm able to surf any non-restricted ressources on the webapp without any
problem. So, the isapi_redirector is well configured.

I've tried to access a protected ressource on the webapp directly on port
8080 (bypassing IIS) and I received the pop-up window asking for my
credentials (username/password). So everything is fine with Tomcat.

I've set the log level to "debug" the isapi_redirector.dll and this is what
I get when I try to access a restricted ressource:

[Thu Oct 16 10:08:16 2003]  [jk_isapi_plugin.c (696)]: HttpFilterProc
started [Thu Oct 16 10:08:16 2003]  [jk_isapi_plugin.c (759)]: In
HttpFilterProc Virtual Host redirection of
/206.162.174.213/dpi/export/viewfiles.jsp
[Thu Oct 16 10:08:16 2003]  [jk_uri_worker_map.c (460)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Thu Oct 16 10:08:16 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
URI '/206.162.174.213/dpi/export/viewfiles.jsp'
[Thu Oct 16 10:08:16 2003]  [jk_uri_worker_map.c (599)]:
jk_uri_worker_map_t::map_uri_to_worker, done without a match [Thu Oct 16
10:08:16 2003]  [jk_isapi_plugin.c (765)]: In HttpFilterProc test Default
redirection of /dpi/export/viewfiles.jsp [Thu Oct 16 10:08:16 2003]
[jk_uri_worker_map.c (460)]: Into jk_uri_worker_map_t::map_uri_to_worker
[Thu Oct 16 10:08:16 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
URI '/dpi/export/viewfiles.jsp' [Thu Oct 16 10:08:16 2003]
[jk_uri_worker_map.c (502)]: jk_uri_worker_map_t::map_uri_to_worker, Found a
context match testWorker -> /dpi/ [Thu Oct 16 10:08:16 2003]
[jk_uri_worker_map.c (558)]: jk_uri_worker_map_t::map_uri_to_worker, Found a
suffix match testWorker -> *.jsp [Thu Oct 16 10:08:16 2003]
[jk_isapi_plugin.c (775)]: HttpFilterProc [/dpi/export/viewfiles.jsp] is a
servlet url - should redirect to testWorker [Thu Oct 16 10:08:16 2003]
[jk_isapi_plugin.c (838)]: HttpFilterProc check if
[/dpi/export/viewfiles.jsp] is points to the web-inf directory [Thu Oct 16
10:08:16 2003]  [jk_isapi_plugin.c (878)]: HttpExtensionProc started [Thu
Oc

RE: HTTP 403 - isapi_redirector

2003-10-16 Thread Hart, Justin
What version of IIS?

-Original Message-
From: Watkins, James [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 16, 2003 4:19 PM
To: 'Tomcat Users List'
Subject: RE: HTTP 403 - isapi_redirector


Do you get the form if you go directly to it through IIS, I mean
http://host/site/form.jsp 


-Original Message-
From: Dionne, Patrice [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 1:51 PM
To: Tomcat Users List
Subject: RE: HTTP 403 - isapi_redirector


I'm not getting the form if I go via IIS on port 80 but if I try directly
via Tomcat on port 8080 I get it. So the set up (web.xml) is fine on tomcat.



-Original Message-
From: Watkins, James [mailto:[EMAIL PROTECTED]
Sent: 16 octobre, 2003 14:04
To: 'Tomcat Users List'
Subject: RE: HTTP 403 - isapi_redirector


With form based authentication, are you getting the form?

-Original Message-
From: Dionne, Patrice [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 12:18 PM
To: Tomcat Users List
Subject: RE: HTTP 403 - isapi_redirector


Thanks James, I did try your solution but nothing changed



-Original Message-
From: Watkins, James [mailto:[EMAIL PROTECTED]
Sent: 16 octobre, 2003 12:06
To: 'Tomcat Users List'
Subject: RE: HTTP 403 - isapi_redirector


I ran into the same problem and switched to using a form based
authentication which seems to work fine. It seems to be some problem with
iis intercepting the login info?

-Original Message-
From: Dionne, Patrice [mailto:[EMAIL PROTECTED] 
Sent: Thursday, October 16, 2003 11:00 AM
To: [EMAIL PROTECTED]
Subject: HTTP 403 - isapi_redirector


Hi all,

Environement:
IIS 5 (isapi_redirector.dll) (listen on port 80)
Tomcat 4.1.24 (listen on port 8080)
Win2k Avanced Server
Browser: IE 6 or Netscape 7.1

Here is my problem.

I get a "HTTP Status 403 - Access to the requested resource has been denied"
when I try to access a protected ressource(in web.xml) via IIS on port 80
which redirect to a Tomcat 4.1.24 on port 8080.

Not suprising because the ressource is secured into the web.xml. I use a
BASIC authentification. But the thing is that I never get the pop-up window
asking for my credentials (username/password). So, I never get the chance to
authentificate myself (username/password).

I'm able to surf any non-restricted ressources on the webapp without any
problem. So, the isapi_redirector is well configured.

I've tried to access a protected ressource on the webapp directly on port
8080 (bypassing IIS) and I received the pop-up window asking for my
credentials (username/password). So everything is fine with Tomcat.

I've set the log level to "debug" the isapi_redirector.dll and this is what
I get when I try to access a restricted ressource:

[Thu Oct 16 10:08:16 2003]  [jk_isapi_plugin.c (696)]: HttpFilterProc
started [Thu Oct 16 10:08:16 2003]  [jk_isapi_plugin.c (759)]: In
HttpFilterProc Virtual Host redirection of
/206.162.174.213/dpi/export/viewfiles.jsp
[Thu Oct 16 10:08:16 2003]  [jk_uri_worker_map.c (460)]: Into
jk_uri_worker_map_t::map_uri_to_worker
[Thu Oct 16 10:08:16 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
URI '/206.162.174.213/dpi/export/viewfiles.jsp'
[Thu Oct 16 10:08:16 2003]  [jk_uri_worker_map.c (599)]:
jk_uri_worker_map_t::map_uri_to_worker, done without a match [Thu Oct 16
10:08:16 2003]  [jk_isapi_plugin.c (765)]: In HttpFilterProc test Default
redirection of /dpi/export/viewfiles.jsp [Thu Oct 16 10:08:16 2003]
[jk_uri_worker_map.c (460)]: Into jk_uri_worker_map_t::map_uri_to_worker
[Thu Oct 16 10:08:16 2003]  [jk_uri_worker_map.c (477)]: Attempting to map
URI '/dpi/export/viewfiles.jsp' [Thu Oct 16 10:08:16 2003]
[jk_uri_worker_map.c (502)]: jk_uri_worker_map_t::map_uri_to_worker, Found a
context match testWorker -> /dpi/ [Thu Oct 16 10:08:16 2003]
[jk_uri_worker_map.c (558)]: jk_uri_worker_map_t::map_uri_to_worker, Found a
suffix match testWorker -> *.jsp [Thu Oct 16 10:08:16 2003]
[jk_isapi_plugin.c (775)]: HttpFilterProc [/dpi/export/viewfiles.jsp] is a
servlet url - should redirect to testWorker [Thu Oct 16 10:08:16 2003]
[jk_isapi_plugin.c (838)]: HttpFilterProc check if
[/dpi/export/viewfiles.jsp] is points to the web-inf directory [Thu Oct 16
10:08:16 2003]  [jk_isapi_plugin.c (878)]: HttpExtensionProc started [Thu
Oct 16 10:08:16 2003]  [jk_worker.c (132)]: Into wc_get_worker_for_name
testWorker [Thu Oct 16 10:08:16 2003]  [jk_worker.c (136)]:
wc_get_worker_for_name, done  found a worker [Thu Oct 16 10:08:16 2003]
[jk_isapi_plugin.c (913)]: HttpExtensionProc got a worker for name
testWorker [Thu Oct 16 10:08:16 2003]  [jk_ajp_common.c (1391)]: Into
jk_worker_t::get_endpoint [Thu Oct 16 10:08:16 2003]  [jk_ajp_common.c
(1435)]: In jk_endpoint_t::ajp_get_endpoint, time elapsed since last request
= 14 seconds [Thu Oct 16 10:08:16 2003]  [jk_ajp_common.c (1107)]: Into
jk_endpoint_t::service [Thu Oct 16 10:08:16 2003]  [jk_ajp_common.c (295)]:
Into ajp_marshal_into_msgb [Thu Oct 16 10:08:16 2003]  [jk_ajp_common.c

IIS 6.0 + Tomcat... does it work?

2003-10-16 Thread Hart, Justin
Hi, I've been hacking around with getting Tomcat to work with IIS 6.0 all day.  Is 
there a known configuration for this that works?

Justin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



<    1   2