Re: General strategy for determining current server, or specific for WebLogic?

2004-09-17 Thread Karr, David
> running on. The mbean is registered from a servlet. This > application > > is running on WebLogic 8.1. I would have thought this was > simple, but > > I can't figure out any way in the mbean or the servlet to determine > > the name of the

Re: General strategy for determining current server, or specific for WebLogic?

2004-09-17 Thread Chris Pratt
Original Message- > From: A mailing list for discussion about Sun Microsystem's > Java Servlet API Technology. > [mailto:[EMAIL PROTECTED] On Behalf Of Chris Pratt > Sent: Friday, September 17, 2004 1:38 PM > To: [EMAIL PROTECTED] > Subject: Re: General strategy for det

Re: General strategy for determining current server, or specific for WebLogic?

2004-09-17 Thread Karr, David
rvlet API Technology. > [mailto:[EMAIL PROTECTED] On Behalf Of Chris Pratt > Sent: Friday, September 17, 2004 1:38 PM > To: [EMAIL PROTECTED] > Subject: Re: General strategy for determining current server, > or specific for WebLogic? > > > Is there a reason you're

Re: General strategy for determining current server, or specific for WebLogic?

2004-09-17 Thread Tom K
17, 2004 3:38 PM To: [EMAIL PROTECTED] Subject: Re: General strategy for determining current server, or specific for WebLogic? Is there a reason you're not just using request.getServerName()? (*Chris*) Original Message --- David, One way you could determine t

Re: General strategy for determining current server, or specific for WebLogic?

2004-09-17 Thread Chris Pratt
ut Sun Microsystem's Java Servlet API Technology. [mailto:[EMAIL PROTECTED] On Behalf Of Karr, David Sent: Friday, September 17, 2004 11:25 AM To: [EMAIL PROTECTED] Subject: General strategy for determining current server, or specific for WebLogic? I have a situation where an mbean needs to de

Re: General strategy for determining current server, or specific for WebLogic?

2004-09-17 Thread Tom K
ember 17, 2004 11:25 AM To: [EMAIL PROTECTED] Subject: General strategy for determining current server, or specific for WebLogic? I have a situation where an mbean needs to determine what server it is running on. The mbean is registered from a servlet. This application is running on WebLogi

General strategy for determining current server, or specific for WebLogic?

2004-09-17 Thread Karr, David
f the host the code is running in. Is anyone aware of a general way to do this, or anything specific to WebLogic? ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLE

Re: general

2002-04-09 Thread James Lewis
>>> [EMAIL PROTECTED] 04/10/02 09:27AM >>>invert all bits and add one... twoscomplement = ~ number + 1;- Original Message -From: "Shivanjali Bhutkar" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>Sent: Tuesday, April 09, 2002 6:01 PMSubject:

Re: general

2002-04-09 Thread Malladi, Hari P
esday, April 09, 2002 5:01 PM To: [EMAIL PROTECTED] Subject: general how to find 2's complement of a number say 2: 0010? ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "

Re: general

2002-04-09 Thread Flavio de Sousa
in java u just need to negate the number... twoscomplement = - number; - Original Message - From: "Shivanjali Bhutkar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 09, 2002 6:01 PM Subject: general > how to find 2's comp

Re: general

2002-04-09 Thread Matt Penner
What does this have to do with servlets? Anyway, you just switch all the 1's to 0's and the 0's to 1's and then add 1. Easiest way is to substract your number from all 1's and then add 1. Ex: - 0010 = 1101 1101 + 1 = 1110 Matt Quoting Shivanjali Bhutkar <[EMAIL PROTECTED]>: > how to

Re: general

2002-04-09 Thread Flavio de Sousa
invert all bits and add one... twoscomplement = ~ number + 1; - Original Message - From: "Shivanjali Bhutkar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 09, 2002 6:01 PM Subject: general > how to find 2's comp

Re: general

2002-04-09 Thread Galbreath, Mark
http://www.artima.com/insidejvm/applets/InnerInt.html Mark -Original Message- From: Shivanjali Bhutkar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 5:01 PM To: [EMAIL PROTECTED] Subject: general how to find 2's complement of a number say 2:

general

2002-04-09 Thread Shivanjali Bhutkar
how to find 2's complement of a number say 2: 0010? ___ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servl

SQLException: General error

2002-04-01 Thread Greg Dunn
again but when I post again I get an error from the servlet: java.sql.SQLException: General error at sun.jdbc.odbc.JdbcOdbc.throwGenericSQLException(JdbcOdbc.java:6235) at sun.jdbc.odbc.JdbcOdbc.SQLAllocStmt(JdbcOdbc.java:163) at sun.jdbc.odbc.JdbcOdbcConnection.prepar

General purpose utilities.

2000-06-27 Thread Manisha Menon
Hi all, Can someone please tell me where can I find/ download general purpose library utilities which I can use it in my project (without recoding in the classes again and again) ? For example ReflectionHelper, which gets all the methods, fileds from the class. My project has servlets, beans

Re: SQL General Error

2000-02-22 Thread zulfi
send the code first - Original Message - From: soumya Govardhana <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 22, 2000 9:14 PM Subject: SQL General Error > I'm using servlets to communicate with database and pass data to browser. My ser

SQL General Error

2000-02-22 Thread soumya Govardhana
I'm using servlets to communicate with database and pass data to browser. My servlets some time work g=fine and sometime give SqlException and General error. And fail to get data from database where as it is able to get connected. I'm working on IIS5.0 with ServletExec. How to ove

Re: servlets and MS access: sql: "General error"

2000-01-25 Thread Sridhar Reddy L
> -Original Message- > From: Ram [SMTP:[EMAIL PROTECTED]] > Sent: Tuesday, January 25, 2000 10:09 AM > To: [EMAIL PROTECTED] > Subject: servlets and MS access: sql: "General error" > > Hi, > > I am urgently in need of help. > I am trying

servlets and MS access: sql: "General error"

2000-01-25 Thread Ram
Hi, I am urgently in need of help. I am trying to insert data into the table (MS Access) and I always get the erro "General error". I've spent 2 days trying to recover the SQL exception, but it doesn't work. I dont' know where is the mistake statement.executeUpdat

Re: General Interest Maillist

1999-05-19 Thread Dinkelbach, Eric
A list of Java mailing lists can be found at http://metalab.unc.edu/javafaq/mailinglists.html <http://metalab.unc.edu/javafaq/mailinglists.html> -Original Message- From: Nelson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 19, 1999 1:39 PM To: [EMAIL PROTECTED] Subject: G

Re: General Interest Maillist

1999-05-19 Thread Milt Epstein
On Wed, 19 May 1999, Nelson wrote: > Hi, > I'm searching for a general interest maillist in Java, where I could > post questions about vectors, enumerations, etc. Do you know any? > I've been seaching in the sun site but I haven't found any! Perhaps you sh

General Interest Maillist

1999-05-19 Thread Nelson
Hi, I'm searching for a general interest maillist in Java, where I could post questions about vectors, enumerations, etc. Do you know any? I've been seaching in the sun site but I haven't found any!   Thanks Nelson

JRun problem and general Servlet question

1999-04-12 Thread Schmidt, Allen J.
500 Internal Server Error StudentRosterServlet: java.lang.ClassFormatError: crysec/SSL/q (Local variable name has bad constant type) ___ I am getting the above error whenever I restart JRun 2.3 on NT4 w/IIS3. If I go back and hit the same page again, it works fine from then on.

Slightly OT : General Java mailing list

1999-03-30 Thread Jean Georges PERRIN
Hi, Sorry for disrturbing the audience, but I am looking for a more generic mailing list regarding JDK 1.0 / 1.1 with GUI (awt & Swing). Could anybody recommend me something ? Jean Georges PERRIN Software Engineer -- Four J's Development Tools (www.4js.com) [EMAIL PROTECTED] - Tel +33 (0)3 88 1

Re: General Servlet Engine Security

1999-03-17 Thread Gabriel Wong
Gallagher wrote: > As I was searching for a Servlet Hosting company, I ran across several > companies that has security issues about the JServ servlet engine. > There general statement was that it is not as secure as JRun or other > servlet engines. Since I could not get any specifi

Re: General Servlet Engine Security

1999-03-17 Thread Ted Stockwell
Hi, -Original Message- From: Timothy Gallagher [SMTP:[EMAIL PROTECTED]] As I was searching for a Servlet Hosting company, I ran across several companies that has security issues about the JServ servlet engine. There general statement was that it is not as secure as JRun or other

General Servlet Engine Security

1999-03-17 Thread Timothy Gallagher
As I was searching for a Servlet Hosting company, I ran across several companies that has security issues about the JServ servlet engine. There general statement was that it is not as secure as JRun or other servlet engines. Since I could not get any specifics about the security issue, could