Senior Web Applications Architecture/Developer's needed for full time position.

2001-12-06 Thread Carl Boudreau

Minnesota, based company has positions opened now, for these people.
Please pass the word, and my telephone number. 612-220-8720

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: mod_webapp/Tomcat4 ready for production level stuff?

2001-11-28 Thread Carl Boudreau

Hello,
I'm involved in developing a large B2B web application.  I'd like to know
what you end up doing, Web logic's price seems to be way to high to ask a
customer to purchase it.  We are looking at open source too.

Carl


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Warp Connection

2001-11-26 Thread Carl Boudreau

Good morning I am looking for documentation on Warp.  I hear allot about it
but fail to find anything about it.

What is it ?  is Mod_Jk and warp the same thing?

Carl


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




CVS vs. Aegis

2001-11-20 Thread Carl Boudreau

Does anyone have an opinion about the Aegis software package?



winmail.dat
Description: application/ms-tnef

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]


RE: Drivers

2001-11-15 Thread Carl Boudreau

You could also go to the BEA site and down load theirs too...   

Carl

-Original Message-
From: Randy Layman [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 15, 2001 6:02 AM
To: Tomcat Users List
Subject: RE: Drivers



I would suggest you look at the list of JDBC drivers on Sun's
website - they list all the drivers from vendors who have registered with
them.

Randy


 -Original Message-
 From: Law Kim Soon [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, November 15, 2001 7:30 AM
 To: [EMAIL PROTECTED]
 Subject: Drivers
 
 
 Hi,
 How can i conect tomcat 3.2.1 to a SQL Server 7.
 Sorry for this newbie question,but i need so guide
 Thanks all
 
 Regards,
 Andy
 

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




resp.sendRedirect(./Join2?Email_Address= + EmailAddress);

2001-11-14 Thread Carl Boudreau

Good Morning Fellow Coders,

I have a very interesting question for all of you.  Below is a small
snippet of code which basically validates a database Insert operation.  The
operation writes to the database then turns around and read the email
address and compares it to what was passed to the Servlets.  For example
within the 20 params sent, [EMAIL PROTECTED] would be sent as an email
address.  It would then be written and then it would re-query the database
and compare the results.  This snippet makes the comparison between what was
passed and what was read out of the database, in turn uses the Redirect to
either move on to the next Servlets Join2 if successful, or display
joinerror.html if un-successful.  But an exception is caught and ends the
Servlets.  During debug I have reduce the error to the redirect line
[resp.sendRedirect(./Join2?Email_Address= + EmailAddress);].

Now I have been monitoring the email forum and had seen there was a problem
with the redirect.  And in the mean time I had manually started these
Servlets by using IE and entering the
[./Join2?[EMAIL PROTECTED])]  and it works fine.  I
think, I found out, that if I manually do this first, then run it normally
by hitting it from a index.html page it works.  But my results have been
very erratic and I don't trust myself.

I have tried to use out.flush( ); alone and then followed up by a
out.close( ); by this doesn't seem to change anything.

DOES ANYONE HAVE ANY SUGGESTIONS, OR A WORK AROUND?

Source Code Snippet;

if(TxtCheck1.equals(MemberMail))
   {
// User join1 data has been added to Database
resp.sendRedirect(./Join2?Email_Address= +
EmailAddress);
}
else {

resp.sendRedirect(./htmlpage/joinerror.html);
   }


System Config;

Win2000pro.
Tomcat 4.0 standalone.
MySQL 7.0


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Where can I find the .sendRedirect source code?

2001-11-14 Thread Carl Boudreau

Hi,

Can anyone point me to the area where the redirect are handled in tomcat?
I have already downloaded the source, but can't find the exact location.

And how about any flow diagrams that shows how tomcat is put together,
what classes are being called and the basic flow of the application?


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: resp.sendRedirect(./Join2?Email_Address= + EmailAddress);

2001-11-14 Thread Carl Boudreau

Well Tom,

I have changed the following code to read;
if(TxtCheck1.equals(User_Name)) {
// User join1 data has been added to Database
String Redirect_String = ./ValidUser?firstname= +
User_Name;
//resp.sendRedirect(./ValidUser?firstname= +
User_Name);
//resp.encodeRedirectURL(./ValidUser?firstname= +
User_Name);
out.println(Redirect_String + br);
//resp.sendRedirect(Redirect_String.trim());
 Error  
resp.sendRedirect(resp.encodeRedirectURL(Redirect_String.trim()));
//out.close();
out.println(Found User_Name  + User_Name +  on
Row  + result.getRow() + br);

//out.println(resp.encodeRedirectUrl(./ValidUser?firstname= + User_Name) +
p);
out.flush();
}
else {
out.println(User_Name +  User_Name Not Found on
Row  + result.getRow() + p);

//resp.sendRedirect(./htmlpage/joinerror.html);
out.flush();
//out.close();
}

And this is returning  java.lang.IllegalStateException  exception, and
still crashing if the  If  is true.

Any ideas?  Carl


-Original Message-
From: Tom Drake [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 14, 2001 9:57 AM
To: Tomcat Users List; [EMAIL PROTECTED]
Subject: Re: resp.sendRedirect(./Join2?Email_Address= + EmailAddress);


You're @ is likely the problem. You must url-encoude the redirect address.

- Original Message -
From: Carl Boudreau [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Sent: Wednesday, November 14, 2001 7:32 AM
Subject: resp.sendRedirect(./Join2?Email_Address= + EmailAddress);


| Good Morning Fellow Coders,
|
| I have a very interesting question for all of you.  Below is a small
| snippet of code which basically validates a database Insert operation.
The
| operation writes to the database then turns around and read the email
| address and compares it to what was passed to the Servlets.  For example
| within the 20 params sent, [EMAIL PROTECTED] would be sent as an
email
| address.  It would then be written and then it would re-query the database
| and compare the results.  This snippet makes the comparison between what
was
| passed and what was read out of the database, in turn uses the Redirect to
| either move on to the next Servlets Join2 if successful, or display
| joinerror.html if un-successful.  But an exception is caught and ends the
| Servlets.  During debug I have reduce the error to the redirect line
| [resp.sendRedirect(./Join2?Email_Address= + EmailAddress);].
|
| Now I have been monitoring the email forum and had seen there was a
problem
| with the redirect.  And in the mean time I had manually started these
| Servlets by using IE and entering the
| [./Join2?[EMAIL PROTECTED])]  and it works fine.  I
| think, I found out, that if I manually do this first, then run it normally
| by hitting it from a index.html page it works.  But my results have been
| very erratic and I don't trust myself.
|
| I have tried to use out.flush( ); alone and then followed up by a
| out.close( ); by this doesn't seem to change anything.
|
| DOES ANYONE HAVE ANY SUGGESTIONS, OR A WORK AROUND?
|
| Source Code Snippet;
|
| if(TxtCheck1.equals(MemberMail))
|{
| // User join1 data has been added to Database
|resp.sendRedirect(./Join2?Email_Address= +
| EmailAddress);
| }
| else {
|
| resp.sendRedirect(./htmlpage/joinerror.html);
|}
|
|
| System Config;
|
| Win2000pro.
| Tomcat 4.0 standalone.
| MySQL 7.0
|
|
| --
| To unsubscribe:   mailto:[EMAIL PROTECTED]
| For additional commands: mailto:[EMAIL PROTECTED]
| Troubles with the list: mailto:[EMAIL PROTECTED]
|
|
|


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: resp.sendRedirect(./Join2?Email_Address= + EmailAddress);

2001-11-14 Thread Carl Boudreau

Hey Tom,

Another java developer has sugested another avenue of attack

I have replace that last code snippet with ;

if(TxtCheck1.equals(User_Name)) {
// User join1 data has been added to Database
String Redirect_String = ./ValidUser?firstname= +
User_Name;
WltRedirect myRedirect = new
WltRedirect(Redirect_String);
out.println(myRedirect.getRedirect());
}

And then built an object;

public class WltRedirect
{
String redirect;
String fixedA = htmlheadMETA HTTP-EQUIV=\Expires\ CONTENT=\Tue,
01 Jan 1980 1:00:00 GMT\;
String fixedB = META HTTP-EQUIV=\Pragma\ CONTENT=\no-cache\meta
http-equiv=\Refresh\ Content=\0; URL=;
String PassedIn;
String fixedD = \titleWeekly Love
Tips/title/headbody/body/html;

public WltRedirect (String PassedIn)
{
redirect = fixedA + fixedB + PassedIn + fixedD;
}

public String getRedirect()
{
return redirect;
}
}

This seems to be operating smoothly.


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]