RE: Can you talk to a COM object with JRUN-JSP?

2001-10-01 Thread Moore, Jim

check out Bridge2Java from http://alphaworks.ibm.com

-Original Message-
From: Mark Phelps [mailto:[EMAIL PROTECTED]]
Sent: Monday, October 01, 2001 12:56 PM
To: JRun-Talk
Subject: RE: Can you talk to a COM object with JRUN-JSP?


Sun has written a piece of software called the COM bridge which makes it
easy for a Visual Basic or Visual C++ program to create and manipulate Java
objects.  I'm not sure if it provides a method for a Java process to talk to
COM objects or not.  I would start my search by looking at the COM bridge.
See www.javasoft.com .

You can always use JNI to make calls to native code.  Your Java objects
could make JNI calls to a small native code library which could then
communicate with your COM objects.

Another way would be to communicate with network sockets.  The Java object
can open a network socket to a piece of native code which would communicate
with the COM objects.  You can establish your own protocol for communication
between the two sides.

A more formal variation of the socket method is to use an established
protocol such as SOAP.  The idea behind SOAP is that one object, (of any
language), sends an HTTP message to another object, (of any language), with
an embedded request in a formal XML syntax.  The receiving object acts on
the request and then passes back a response, again in a formal XML syntax.
Sun's web site probably has information on SOAP.  I know that
www.microsoft.com has information as well.

-Original Message-
From: Bill Rogers [mailto:[EMAIL PROTECTED]]
Sent: Sunday, September 30, 2001 1:52 AM
To: JRun-Talk
Subject: Can you talk to a COM object with JRUN-JSP?


Can you talk to a COM object with JRUN-JSP?

  In ColdFusion I can talk to a COM object on a NT server by using:
  CFOBJECT.  The CFOBJECT tag allows you to call methods in COM

  Is there something similar for JSP in JRUN?  I have an application
  that is written using COM objects.  Today both MS-ASP and
ColdFusion
  access the COM objects.The COM object contains the Business
  logic.

  Bill Rogers
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

~~
Get the mailserver that powers this list at http://www.coolfusion.com
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Newbie question/Debate

2001-07-24 Thread Moore, Jim

All it means is that XP is not shipping with a java vm preinstalled, so ie
won't be able to run applets out of the box. anyone can still download and
install their vm of choice if they want.

--jim

-Original Message-
From: Robert Jacobs [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 24, 2001 10:50 AM
To: JRun-Talk
Subject: RE: Newbie question/Debate


With the next version of Windows, Windows XP, I believe that Microsoft will
not be supporting Java.  Can anyone confirm if this is true, and if so, what
effect this will have as a whole on Java.  Their concept of platform
independance is pretty much shot and they would be completly useless to a
very large Microsoft audience.

-Original Message-
From: James Alexander [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 24, 2001 10:38 AM
To: JRun-Talk
Subject: RE: Newbie question/Debate


Ummthats not quite correct. With .NET I can use any language I want,
as long as it has a MSIL compiler. If I want to use Java, I can use
Java. If I want to write an entire asp.net web app in C++ I can. Am I
locked in if I choose to use C++? I can use any language I want. On top
of that there are efforts underway for porting the .NET CLR (common
language runtime) to other platforms for true platform independence.
Pretty groovy huh? :)

james

-Original Message-
From: Jackie Comeau [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 24, 2001 10:28 AM
To: JRun-Talk
Subject: RE: Newbie question/Debate

Good question.

With Microsoft, your locked into Microsoft technologies. With Java, you
can 
select any platform you want. Also, if you move your platform, there is 
little to no rewriting of code (I'm talking J2EE platform). You can go
to 
any server that is J2EE certified and just move your platform over.

Another advantage is that it's evolving and merging with all the new 
technologies out there. This may be more of a long-term benefit.

As far as running as a platform/server language, it has a head-start
over 
Microsoft. Microsoft has not released it's .Net yet, has it? But J2EE
has 
been out since December, 1999.

There are disadvantages with Java. It basically uses only the java 
language. It works with other languages, but it is language-neutral.

As a Java developer, your skills are more transferable. If your a
Microsoft 
developer, your locked into their skills.

Jackie

On Monday, July 23, 2001 10:09 PM, Bert [SMTP:[EMAIL PROTECTED]] 
wrote:
> I know a lot of companies are using Java , Ejb , Oracle
> and Jsp but what are real the main benefits besides being cross
platform
> than using Asp and Com,Com+ or Asp.net and C# . I know these are 
Microsoft
> only platform but what is the real advantage as to using Java in the
real
> world?
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Servlet request object and multipart/form-data

2001-07-16 Thread Moore, Jim

check out oreilly's servlet package. it contains a good multipart request
handler class:

http://www.servlets.com/cos/index.html

--jim

-Original Message-
From: Nathan Wheat [mailto:[EMAIL PROTECTED]]
Sent: Sunday, July 15, 2001 10:43 PM
To: JRun-Talk
Subject: Servlet request object and multipart/form-data


Hi all,

I'm reading values in from a form submission, and if the form is encoded
with "multipart/form-data", I can't seem to use the getParameter method to
retrieve any values.  Am I being stupid, or is this in fact true?  What's
the way to work with multipart forms??

TIA,

Nathan Wheat
Technical Sales Consultant
Firmware Design
Phone:  0401 148 989
Email:  [EMAIL PROTECTED]
http://www.firmware.com.au

Are you a Web Developer or Designer?
Looking for an edge? If so, check out Web Design 2001
Go to the link Below to find out more & register

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: custom authentication

2001-05-01 Thread Moore, Jim

so i found the problem. It appears that is IIS 5, you can't post directly to
a folder with a default document and since the action of the form post is
"j_security_check", IIS interprets that as a folder. To work around it, I
had to post to a jsp that forwards the request to j_security_check through a
RequestDispatcher.

For more info:

http://support.microsoft.com/view/viewtn.asp?kb=247536&prd=iis&sbp=&pver=5.0
&pid=&ID=405&cat=web&os=&over=&hrd=&Opt1=&Opt2=&Opt3=

--jim

-Original Message-
From: Moore, Jim [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 01, 2001 11:16 AM
To: JRun-Talk
Subject: custom authentication


I'm trying to implement a CustomAuthentication class for a web-app. I've
implemented allaire.jrun.security.AuthenticationInterface and set:

authentication.service=burlapAuth
authentication.burlapAuth.class=com.iguanastudios.burlap.security.JRunAuthen
tication

in the local.properties for the server.

It doesn't seem like the authenticate(HttpServletRequest request, String
username, String password) or isPrincipalInRole(Principal p, String role)
methods are ever being called though. In init() I have a System.out.println
which is working, however the System.out.println statements in authenticate
and isPrincipalInRole are never called. When I try to access a protected
resource, I am never granted access or redirected to the error page I set in
web.xml, I simply get a 405 error from IIS (I am running IIS 5 on Windows
2000 and JRun 3.1rc1), though NT has the folder set to grant access to
everyone. Only the web.xml file sets the security. It looks like this:


   
  FORM
  
 /login.jsp
 /loginerror.jsp
  
   
   
  
 default-app
 /admin/*
 Administrative Section
  
  
 user
  
   


Any ideas?

--jim
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



custom authentication

2001-05-01 Thread Moore, Jim

I'm trying to implement a CustomAuthentication class for a web-app. I've
implemented allaire.jrun.security.AuthenticationInterface and set:

authentication.service=burlapAuth
authentication.burlapAuth.class=com.iguanastudios.burlap.security.JRunAuthen
tication

in the local.properties for the server.

It doesn't seem like the authenticate(HttpServletRequest request, String
username, String password) or isPrincipalInRole(Principal p, String role)
methods are ever being called though. In init() I have a System.out.println
which is working, however the System.out.println statements in authenticate
and isPrincipalInRole are never called. When I try to access a protected
resource, I am never granted access or redirected to the error page I set in
web.xml, I simply get a 405 error from IIS (I am running IIS 5 on Windows
2000 and JRun 3.1rc1), though NT has the folder set to grant access to
everyone. Only the web.xml file sets the security. It looks like this:


   
  FORM
  
 /login.jsp
 /loginerror.jsp
  
   
   
  
 default-app
 /admin/*
 Administrative Section
  
  
 user
  
   


Any ideas?

--jim

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



userPrinciple

2001-04-30 Thread Moore, Jim

Is there any way to set the user principle (i.e. a reciprocal method for
request.getUserPrinciple())? JRun's built in authentication does this, but I
was wondering if it is possible to do it manually.

--jim

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Beginner Book

2001-04-26 Thread Moore, Jim

I would recommend the second edition of Jason Hunter's book Java Servlet
Programming which just came out.

--jim

-Original Message-
From: Aaron Starner [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 26, 2001 11:54 AM
To: JRun-Talk
Subject: Beginner Book


Need to recommend a beginner JRun /JSP book.
Anyone have a favorite?

Aaron Starner  |  Systems Analyst
MCP | A+ Certified | Certified ColdFusion Developer 
Full Service Networking  |  www.FullService.Net 
[EMAIL PROTECTED]  |  513.782.4200 x217
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Where is documentation for allaire.jrun.security.Authenticati onIn terface?

2001-04-24 Thread Moore, Jim

{JRun root dir}/docs/api

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 24, 2001 1:57 PM
To: JRun-Talk
Subject: Where is documentation for
allaire.jrun.security.AuthenticationIn terface?


In JRun Developers Guide, it says the documentation for
allaire.jrun.security.AuthenticationInterface is in {JRun root dir}/docs.

I want to implement this interface to provide custom LDAP authentication,
but the documentation does not seem to be in the JRUN 3.0 SP1 installation
anywhere. Does anyone know where it is or where else I can find it?



--
For more information about Barclays Capital, please
visit our web site at http://www.barcap.com.


Internet communications are not secure and therefore the Barclays Group
does not accept legal responsibility for the contents of this message.
Any views or opinions presented are solely those of the author and do 
not necessarily represent those of the Barclays Group unless otherwise 
specifically stated.


--
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: JRun 3.0 and FORM based login

2001-04-09 Thread Moore, Jim

There's a brief section in the Developing Appiclications with JRun guide
called "Using a Custom Authentication Mechanism with JRun" that should get
you started. I was able to use it build my own form based authentication
using a database lookup instead of using the property file. You should be
able to figure out how to use LDAP. Basically you just write your own class
that implements allaire.jrun.security.AuthenticationInterface. You need to
implement a couple of methods, namely:


//if the username/password is valid, return the user as a Principal object,
otherwise return null
public Principal authenticate(HttpServletRequest request, String username,
String password); 

public boolean isPrincipalInRole(Principal principal, String role);


then set:

authentication.service=myauth
authentication.myauth.class=

in the local.properties file for the web application in question.

--jim


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Sent: Monday, April 09, 2001 9:20 AM
To: JRun-Talk
Subject: RE: JRun 3.0 and FORM based login


The reason is, I want to avoid writing any custom security code if possible.
Mostly to avoid introducing any possible security bugs. I'm sure there must
be a standard way to do this.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 09, 2001 9:10 AM
To: JRun-Talk
Subject: Re: JRun 3.0 and FORM based login


Why not implement a session bean that will authenticate your users through
LDAP Java API's. I've worked with LDAP's C API's but haven't tried the Java
API's yet will have to try it one of this days. Hope this helps.

Noel
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: JRun/Oracle/Firewall

2001-04-04 Thread Moore, Jim

how about running a super simple query like "SELECT 1"

if you get back 1 in the resultset, everything is a-ok, otherwise dump the
connection.

-Original Message-
From: Boemio, Neil (CAP, FGI) [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 11:11 AM
To: JRun-Talk
Subject: RE: JRun/Oracle/Firewall


Well, I found out why this was happening, but I can't find a solution.

There *is* a check in the connection pool code to test if a connection is
valid before returning it for use.  The problem is that when the firewall
kills a connection, any test on
that connection to check if it's valid will just hang and eventually time
out.

I have found that if I kill connections on the Oracle end, the connection
validity test works just fine (it throws an exception immediately).  When
this happens, I catch the
exception and create a new connection.  But when the connection is timed out
in the firewall's connection table, there seems to be no way to test the
connection without hanging.

I have tried using conn.commit(), conn.createStatement(), and others, as the
method for testing to see if the connection is valid.  The obvious choice
would be to use
conn.isClosed().  But this seems to return False when the connection is bad!

Any ideas on how to test a connection without hanging?

> -Original Message-
> From: Boemio, Neil (CAP, FGI) 
> Sent: Saturday, March 31, 2001 10:36 AM
> To:   '[EMAIL PROTECTED]'
> Subject:  RE: JRun/Oracle/Firewall
> 
> I found out some information from a firewall guy.  It looks like it's a
firewall issue:
> 
> Yes, that's probably what's happening.  The firewall maintains a
connection table for all established connections (this applies to tcp only).
The session time-out is currently
> set for 3600 seconds (1 hour).  This is the default setting.  We can
increase up to 7200 seconds (2 hours) fairly easily.  I believe that in
order to go beyond the 2 hour limit,
> we need to tweak firewall parameters you normally don't want to play with,
which may also require a firewall reload.  At any rate, even if we can do
this, I'm not sure that it's
> a good idea.  If we fill the connection table with dormant connections, we
could wreak havoc on all users, perhaps even require a system reboot.  Of
course, we could extend the
> size of the connection table, but this means playing with more parameters
you normally don't want to touch.
> 
>   -Original Message-
>   From:   Boemio, Neil (CAP, FGI) 
>   Sent:   Friday, March 30, 2001 3:52 PM
>   To: '[EMAIL PROTECTED]'
>   Subject:JRun/Oracle/Firewall
> 
>   I have a very puzzling problem.  I'm using JRun 2.3.3 Build 157 to
connect to an Oracle 8.1.6 database.
>   I'm using connection pooling and it seems that when my site is idle
for sometime (maybe an hour or so), I cannot load any JSP pages that connect
to Oracle.  Static HTML
> pages and JSP pages that do NOT connect to Oracle are just fine.
> 
>   Restarting JRun always fixes the problem.  But I've also noticed
that if I kill the Oracle connections and then refresh the browser, I can
connect again.
>   At first I was using my own custom database connection pool and I
thought it might be something I coded wrong.  So I switched to a connection
pool I downloaded from
> http://www.webdevelopersjournal.com/columns/connection_pool.html, but the
problem still occurs.
> 
>   It almost seems like the connections or something else in JRun is
timing out after some time of inactivity.
>   Another confusing part is that this same setup on my current web
hosting provider works fine.  We are moving to a different provider now and
that is where the problem is
> happening with the same exact code.
>   Could a difference in the environment be any cause?  Any ideas as to
where to look?
> 
>   Thanks,
>   Neil
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: JRun/Oracle/Firewall

2001-03-30 Thread Moore, Jim

my guess is that some of your connections are not being closed/returned to
the pool. after a while oracle hits its max connections and refuses to give
out anymore. restarting jrun causes everything to get garbage collected and
all the connections get closed, so eveything works for a while until max
connections is reached again.

go through your code and make sure connections are ALWAYS being
closed/returned. if you are throwing any SQLExceptions, make sure you
close/return the connection in the finally block.

i'm not sure how or why a change in providers would have triggered this, but
it really sounds like the connections are being closed/returned.

--jim


-Original Message-
From: Boemio, Neil (CAP, FGI) [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 3:52 PM
To: JRun-Talk
Subject: JRun/Oracle/Firewall


I have a very puzzling problem.  I'm using JRun 2.3.3 Build 157 to connect
to an Oracle 8.1.6 database.
I'm using connection pooling and it seems that when my site is idle for
sometime (maybe an hour or so), I cannot load any JSP pages that connect to
Oracle.  Static HTML pages and
JSP pages that do NOT connect to Oracle are just fine.

Restarting JRun always fixes the problem.  But I've also noticed that if I
kill the Oracle connections and then refresh the browser, I can connect
again.
At first I was using my own custom database connection pool and I thought it
might be something I coded wrong.  So I switched to a connection pool I
downloaded from
http://www.webdevelopersjournal.com/columns/connection_pool.html, but the
problem still occurs.

It almost seems like the connections or something else in JRun is timing out
after some time of inactivity.
Another confusing part is that this same setup on my current web hosting
provider works fine.  We are moving to a different provider now and that is
where the problem is happening
with the same exact code.
Could a difference in the environment be any cause?  Any ideas as to where
to look?

Thanks,
Neil
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Re[2]: getRowCount()

2001-03-30 Thread Moore, Jim

String sql = "SELECT * FROM foo";
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery(sql);
int rowcount = rs.getRow();
rs.beforeFirst();
while (rs.next()) {
//process resultset
}

or

String sql = "SELECT * FROM foo";
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery(sql);
int rowcount = 0;
while (rs.next()) {
//process resultset
rowcount++;
}

--jim

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 3:13 PM
To: JRun-Talk
Subject: Re[2]: getRowCount()





Additional Header Information:
Received: from www.houseoffusion.com ([207.31.122.140]) by inside.pgi.com
(Lotus
SMTP MTA v4.6.6  (890.1 7-16-1999)) with SMTP id 85256A1F.006958EB; Fri, 30
Mar
2001 14:10:40 -0500
Received: from houseoffusion.com ([207.31.122.140])
  by www.houseoffusion.com (Post.Office MTA v3.5.3
release 223
  ID# 0-54969U100L100S0V35) with ESMTP id com
  for <[EMAIL PROTECTED]>;
  Fri, 30 Mar 2001 13:56:17 -0500
Content-type: text/plain
Content-type: text/plain
Date: Fri, 30 Mar 2001 13:42:43 -0500
From: [EMAIL PROTECTED]
Message-id:
<3312CFEA8474D411BAB600508B9587B21CE785@S0001EXC0007>
Subject: RE: getRowCount()
Reply-To: [EMAIL PROTECTED]
To: JRun-Talk <[EMAIL PROTECTED]>


-




if I don't use allaire tag, how can I get the recordcount after I ran a
query?




thank you

YC


  <%@ page import='allaire.taglib.*' %>
  
  
  

  <%
  QueryTable t = (QueryTable)pageContext.getAttribute("result");
  out.print(t.getRowCount());
  %>

  In JRun 3.1 (currently in beta), you should be able to treat the query
object
  like javax.sql.RowSet.

  -C

  --
  Clement Wong
  JRun Engineer, Macromedia
  http://www.macromedia.com
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: JRun slows down, then dies

2001-03-22 Thread Moore, Jim

are you storing lots of large objects in sessions or do you have lots of
sessions? how much ram is the java process taking? my guess is that some
objects are not getting garbage collected for whatever reason and as the
memory usage grows, the machine slows down (in my experience these objects
often turn out to be unclosed db connections, although you mentioned that
you are pretty sure you are closing your connections correctly). i am
guessing that the objects are in the session because the problem is often
still apparent after reboot--serialized session objects would be loaded back
into memory when the jrun server restarts.

--jim

-Original Message-
From: Mark Gregor [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 22, 2001 11:59 AM
To: JRun-Talk
Subject: RE: JRun slows down, then dies



Yep.  It also occurs when we're only using parts of the site that don't have
any dbase connections.

Mark

> -Original Message-
> From: Sanjay Acharya [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, March 22, 2001 11:26 AM
> To: JRun-Talk
> Subject: RE: JRun slows down, then dies
> 
> 
> Are u properly closing all the database connections (if any)?
> 
> sanjay
> 
> 
> 
> -Original Message-
> From: Mark Gregor [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, March 22, 2001 7:48 AM
> To: JRun-Talk
> Subject: JRun slows down, then dies
> 
> 
> 
> Hi all,
> 
> Lately, using JRUN 3.0 SP2 on NT4.0, IIS4, dual processor, we've noticed a
> slow-down of services and eventually a refusal to access some 
> resources, for
> apparently no reason. Reboots help, but eventually, the problem 
> grows to be
> so severe that reboots do nothing at all.
> 
> There seems to be no logic as to which JSP pages/servlets stop responding,
> but the problem does quickly grow to encompass more and more. We're using
> IIS4 and the latest upgrade of JRUN Professional.
> 
> Searches in the JRun knowledge base and discussion forums haven't 
> yet turned
> anything up.
> 
> Has anyone experienced similar problems? Any thoughts would be greatly
> appreciated!
> 
> Mark
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Passing beans between JSPs..??

2001-03-08 Thread Moore, Jim

use request.setAttribute([some name],[the bean])
then forward the request
the next servlet or jsp can use request.getAttribute([some name]) to
retrieve it

-Original Message-
From: Matthew L. Wright [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 08, 2001 2:02 PM
To: JRun-Talk
Subject: Re: Passing beans between JSPs..??


Can you give more details as to exactly what you have in mind?

Matt

Matthew L. Wright
Java Internet Programmer
Jupiter One
Web World Studios West Coast
www.jupiterone.com
(818) 763-2927
- Original Message -
From: "Ricardo Forde" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 08, 2001 10:33 AM
Subject: Passing beans between JSPs..??


> Hi. Can I pass beans, set by a servlet to a JSP (eg MyJsp1) which then
> passes it to say My Jsp2? I guess that kinda like chaining...
>
> Thanks
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: xalan and jrun

2001-03-06 Thread Moore, Jim

keeping them separate would be ideal (it does kind of freak me out to remove
jrun installed application jars). when i tried it however, i got the same
results as putting them all in the same folder together (i.e. nothing
worked). for some reason it seems that xerces.jar can't be in the same
classpath as parser.jar and jaxp.jar.

--jim

-Original Message-
From: Scott Stirling [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 06, 2001 5:53 PM
To: JRun-Talk
Subject: RE: xalan and jrun


It's a good idea to keep application-level libraries independent of your app
server's system-level libraries.  If you put xalan and/or xerces in
$JRUN_HOME/servers/lib, or, even better, $JRUN_HOME/servers/server-name/lib,
there will be no conflict.

Scott Stirling

> -Original Message-----
> From: Moore, Jim [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, March 06, 2001 2:28 PM
> To: JRun-Talk
> Subject: RE: xalan and jrun
>
>
> actually i just solved this myself. i had to replace parser.jar
> and jaxp.jar
> in the jrun/lib/ext directory with xerces.jar from apache.
>
> --jim
>
> -Original Message-
> From: Moore, Jim [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, March 06, 2001 1:50 PM
> To: JRun-Talk
> Subject: xalan and jrun
>
>
> Has anyone had any luck getting xalan to work as an xsl processor in jrun?
> anything i try throws the huge errors below. i want to use xalan
> because we
> are not sure that jrun will be used in the live environment, currently we
> are using it only as a dev server, so i don't want to rely on any built-in
> jrun specific functionality.
>
> --jim
>
>
> 500 Internal Server Error
> /foo2.jsp:
>
> javax.servlet.ServletException: Exception thrown on line '10' from page
> 'C:\\Inetpub\\wwwroot\\foo2.jsp'.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: xalan and jrun

2001-03-06 Thread Moore, Jim

actually i just solved this myself. i had to replace parser.jar and jaxp.jar
in the jrun/lib/ext directory with xerces.jar from apache.

--jim

-Original Message-
From: Moore, Jim [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 06, 2001 1:50 PM
To: JRun-Talk
Subject: xalan and jrun


Has anyone had any luck getting xalan to work as an xsl processor in jrun?
anything i try throws the huge errors below. i want to use xalan because we
are not sure that jrun will be used in the live environment, currently we
are using it only as a dev server, so i don't want to rely on any built-in
jrun specific functionality.

--jim


500 Internal Server Error
/foo2.jsp:

javax.servlet.ServletException: Exception thrown on line '10' from page
'C:\\Inetpub\\wwwroot\\foo2.jsp'.
javax.xml.transform.TransformerConfigurationException: Namespace not
supported by SAXParser
at
org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(Transformer
FactoryImpl.java:650)
at jrun__foo22ejsp9._jspService(jrun__foo22ejsp9.java:44)
at
allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:40)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunNamedDispatcher.forward(../servlet/JRunNamedDispatc
her.java:34)
at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:175)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDis
patcher.java:88)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1131)
at
allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:330)
at
allaire.jrun.jrpp.ProxyEndpoint.run(../jrpp/ProxyEndpoint.java:382)
at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
-
javax.xml.transform.TransformerConfigurationException: Namespace not
supported by SAXParser
at
org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFa
ctoryImpl.java:815)
at
org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(Transformer
FactoryImpl.java:635)
at jrun__foo22ejsp9._jspService(jrun__foo22ejsp9.java:44)
at
allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:40)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunNamedDispatcher.forward(../servlet/JRunNamedDispatc
her.java:34)
at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:175)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDis
patcher.java:88)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1131)
at
allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:330)
at
allaire.jrun.jrpp.ProxyEndpoint.run(../jrpp/ProxyEndpoint.java:382)
at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
-
javax.xml.transform.TransformerException: Namespace not supported by
SAXParser
at
org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFa
ctoryImpl.java:813)
at
org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(Transformer
FactoryImpl.java:635)
at jrun__foo22ejsp9._jspService(jrun__foo22ejsp9.java:44)
at
allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:40)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunNamedDispatcher.forward(../servlet/JRunNamedDispatc
her.java:34)
at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:175)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDis
patcher.java:88)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1131)
at
allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:330)
at
allaire.jrun.jrpp.ProxyEndpoint.run(../jrpp/ProxyEndpoint.java:382)
at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
-
org.xml.sax.SAXException: Namespace n

xalan and jrun

2001-03-06 Thread Moore, Jim

Has anyone had any luck getting xalan to work as an xsl processor in jrun?
anything i try throws the huge errors below. i want to use xalan because we
are not sure that jrun will be used in the live environment, currently we
are using it only as a dev server, so i don't want to rely on any built-in
jrun specific functionality.

--jim


500 Internal Server Error
/foo2.jsp:

javax.servlet.ServletException: Exception thrown on line '10' from page
'C:\\Inetpub\\wwwroot\\foo2.jsp'.
javax.xml.transform.TransformerConfigurationException: Namespace not
supported by SAXParser
at
org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(Transformer
FactoryImpl.java:650)
at jrun__foo22ejsp9._jspService(jrun__foo22ejsp9.java:44)
at
allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:40)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunNamedDispatcher.forward(../servlet/JRunNamedDispatc
her.java:34)
at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:175)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDis
patcher.java:88)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1131)
at
allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:330)
at
allaire.jrun.jrpp.ProxyEndpoint.run(../jrpp/ProxyEndpoint.java:382)
at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
-
javax.xml.transform.TransformerConfigurationException: Namespace not
supported by SAXParser
at
org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFa
ctoryImpl.java:815)
at
org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(Transformer
FactoryImpl.java:635)
at jrun__foo22ejsp9._jspService(jrun__foo22ejsp9.java:44)
at
allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:40)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunNamedDispatcher.forward(../servlet/JRunNamedDispatc
her.java:34)
at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:175)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDis
patcher.java:88)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1131)
at
allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:330)
at
allaire.jrun.jrpp.ProxyEndpoint.run(../jrpp/ProxyEndpoint.java:382)
at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
-
javax.xml.transform.TransformerException: Namespace not supported by
SAXParser
at
org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFa
ctoryImpl.java:813)
at
org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(Transformer
FactoryImpl.java:635)
at jrun__foo22ejsp9._jspService(jrun__foo22ejsp9.java:44)
at
allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:40)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunNamedDispatcher.forward(../servlet/JRunNamedDispatc
her.java:34)
at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:175)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1013)
at
allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:925)
at
allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDis
patcher.java:88)
at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1131)
at
allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:330)
at
allaire.jrun.jrpp.ProxyEndpoint.run(../jrpp/ProxyEndpoint.java:382)
at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
-
org.xml.sax.SAXException: Namespace not supported by SAXParser
at
org.apache.xalan.processor.TransformerFactoryImpl.newTemplates(TransformerFa
ctoryImpl.java:767)
at
org.apache.xalan.processor.TransformerFactoryImpl.newTransformer(Transformer
FactoryImpl.java:635)
at jrun__foo22ejsp9._jspService(jrun__foo22ejsp9.java:44)
at
alla

RE: Strip HTML

2001-02-05 Thread Moore, Jim

shouldn't be too difficult to strip out everything between "<" and ">" tags,
then convert & back to &,   back to a space, etc. The danger is
that you may remove things you dont want to--for instance, in the preceding
sentence it would have removed '<" and ">' leaving 'between "" tags'

-Original Message-
From: Ralph Fiol [mailto:[EMAIL PROTECTED]]
Sent: Monday, February 05, 2001 4:43 PM
To: JRun-Talk
Subject: Strip HTML


Does anyone know how I can strip all HTML from a string?  That is, I want to
hit a URL using HttpURLConnection (etc.), then remove any HTML return by
getInputStream().  Any ideas?

Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Multiple JRUN Servers-- HELP!!

2000-11-30 Thread Moore, Jim

we had a problem with this for a while here, but finally managed to solve
it. all you really have to do is be sure to not check "install as global
filter" when configuring the external web server. to fix things once we had
screwed them up, i had to remove all the jrun.dll that were lying around in
scripts directories, go into each web server as well as the global
properties for iis and remove all jrun isapi filters and mappigns. once that
was all done, i re-configured each jrun server, being sure not to check
install as global filter. alos be sure to set different listening ports, etc
for each jrun server in the properties file.

--jim

-Original Message-
From: Ajoy Singh [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 29, 2000 7:24 PM
To: JRun-Talk
Subject: Multiple JRUN Servers-- HELP!!


Hi,
I am trying to add multiple JRUN Servers on one box for development and
staging purposes. 
The problem I am facing is as follows:
Scenario 1: One web Server IIS4.0 NT 4.0 SP6a, JRUN 3.0 SP1
JRUN Servers: Default and Staging
If I configure JRUN server to respond to external web server then
application
in one JRUN Server (Default) responds but other reports 404 Error.

Scenario2: Two web servers bound to two ip addresses IIS4.0 NT 4.0 SP6a,
JRUN
3.0 SP1
Each web server has its own scripts directory.
If I configure first Default then Staging, Staging works fine. If I
configure
first Staging then Default, Default works fine. 

Allaire in there documentation mentions the need and eplains how to install
multiple JRUN  Servers but is silent on how to configure these multiple JRUN
Servers to external web servers.

Any help will be appreciated.





Thanks,
Bob


Get free email and a permanent address at http://www.amexmail.com/?A=1

Your ad could be here. Monies from ads go to support these lists and provide
more resources for the community. http://www.fusionauthority.com/ads.cfm

Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



dynamically loading servlets

2000-11-29 Thread Moore, Jim

is there any way to get included servlets to dynamically reload?

i have all the class files in my web-inf/classes directory and if i go to
the servlets directly they will dynamically reload to reflect changes, but
if they are included in a jsp they will not.

i.e. going to http://myserver/servlet/someservlet will dynamically reload,
but if i go to http://myserver/foo.jsp where foo.jsp contains only
, changes to
someservlet will only be reflected on restarting jrun.

i'm using jrun 3.0 sp1 on nt with iis.

--jim

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Response.End

2000-11-13 Thread Moore, Jim

you might try something like:

<%
 if (stopprocessing) {
   response.flushBuffer();
   return;
 }
%>

--jim

-Original Message-
From: John Minadeo [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 13, 2000 5:02 PM
To: JRun-Talk
Subject: Response.End


Hey all,
I apologive that this is a little off topic as it deals more with jsp then
Jrun but it should be quick and painless... :-)

Does JSP support something to the effect of MS's ASP Response.End method?
Basically, I need a page to dump any buffered output and stop executing
right there if a certain condition exists... I can re-write the using
if/else flow control but it would be easier to just do a response.end if I
need it to stop...

Thanks for your help!

--
John Minadeo
[EMAIL PROTECTED]

--
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe:
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.
--
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the 
body.



RE: JRun crashed casually

2000-11-10 Thread Moore, Jim

are you using the sun jdbc-odbc bridge? if so that is causing the error--it
is not thread safe. switch to a commercial driver.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 10, 2000 3:11 AM
To: JRun-Talk
Subject: JRun crashed casually


This is a multi-part message in MIME format.

--=_NextPart_000_020F_01C04B30.DFD00800
Content-Type: multipart/alternative;
boundary="=_NextPart_001_0210_01C04B30.DFD00800"


--=_NextPart_001_0210_01C04B30.DFD00800
Content-Type: text/plain;
charset="big5"
Content-Transfer-Encoding: quoted-printable

I found that there would be an error message "javaw.exe Access =
violation(0xc005), Address:0x1003ed4f"   shown by the Dr.Watson, =
(see the attachment jpg file). Then I should restart my JRun again.  I =
never saw this message before when I ran my jrun in my testing machine. =
This was happend in my production machine and after the production ran =
after 3 months.  This error would show casually, maybe 8 times a day, or =
2 times a day, event 0 time a day after I port my jrun to my production =
machine. Anybody knows this kind of problem?

My production environment:
OS: NT server 4.0 + SP5
Web Server: IIS 4.0
JRun: JRun 2.3.3 pro
Machine: Compaqe Server
CPU: Xeon 600 * 2 CPUs
RAM: 512 MB


Best Regards,
Blues.


--=_NextPart_001_0210_01C04B30.DFD00800
Content-Type: text/html;
charset="big5"
Content-Transfer-Encoding: quoted-printable








    I found that there would be an =
error=20
message "javaw.exe Access=20
violation(0xc005), Address:0x1003ed4f"   shown by the =

Dr.Watson, (see the attachment jpg file). Then I should restart my JRun =
again. =20
I never saw this message before when I ran my jrun in my testing =
machine.=20
This was happend in my production machine and after the production ran =
after 3=20
months.  This error would show casually, =
maybe 8 times=20
a day, or 2 times a day, event 0 time a day after I port my jrun to =
my=20
production machine. Anybody knows this kind of problem?
 
My production environment:
OS: NT server 4.0 + SP5
Web Server: IIS 4.0
JRun: JRun 2.3.3 pro
Machine: Compaqe Server
CPU: Xeon 600 * 2 CPUs
RAM: 512 MB
 
 
Best Regards,
Blues.
 

--=_NextPart_001_0210_01C04B30.DFD00800--

--=_NextPart_000_020F_01C04B30.DFD00800
Content-Type: image/jpeg;
name="JRun_error.jpg"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
filename="JRun_error.jpg"

/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAsICAoIBwsKCQoNDAsNERwSEQ8PESIZGhQcKSQrKigk
JyctMkA3LTA9MCcnOEw5PUNFSElIKzZPVU5GVEBHSEX/2wBDAQwNDREPESESEiFFLicuRUVFRUVF
RUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUX/wAARCAJYAyADASIA
AhEBAxEB/8QAHwAAAQUBAQEBAQEAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA
AAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3
ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm
p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA
AwEBAQEBAQEBAQECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx
BhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK
U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3
uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwC/4m8U
ahpGuxafZR2flGzjmzLb72LE4x1FUB4r8StEsotdPVGYIC1kwyxxhcgkZ56ZzVTxxKkXjW1LsFzp
8ONxwCQ2cZ7dOtWtF8Wx6Ug+0RB5LdSgijdgkmcEu55AHJ7f3e33dql0o8q6GaklJqT9O33lOXx/
ryrF5Ftp88srqiRpZklt2cYw3J4xio77x/4q0zZ/aGj21p5mdnn2LJuxjOMnnqPzrO8UmPUwZbGA
maa6EXlqmWb75THuQwBHXgZyam1eyurPXPEn22wlaO+uz9jgmjcC6l+0qRsAwW+TzBuXoHxkFxn0
KEKcoJyiiIOWt3cP+Fp63/z66b/4Df8A16tp4/8AFUtuLiPR7Z4GjeUSLYsVKIcO2c4wCRk9q5bx
Lpx0/Wb21hsWt4LGX7PvIfL8sUdyxI3MozxgEDIFaegahZWmgia9hlkjtbto3CdStwIwwHI6xQzq
fQuuOeV6JUaXKpRiVdmne/ETxNp0wiv9Ks7WVl3BJ7JkYjpnBPTg/lVf/haet/8APrpv/gN/9en2
+l2GoeIr221JGdbNbexlePJMWyMRSTYBXCKY8+YxIUFcod3yvOli60nSkudEw0NjJGXLyR7WWeUP
uy3yEYzvIKIzgONrLsjkoK14j1If+Fp63/z66b/4Df8A16P+Fp63/wA+um/+A3/16ePDdrPqsNmN
MaOF9QS1tpUMm68tmDhpwSSGKhUfcgCDdyCCBWJqemPBJot3FpLINRiEq2gWQxyN5jKETJ3kMoQ/
eJ+fIIBFVGnh27cors25Pidr0LBZbHT0YqGAa1IOCAQevQggj2NM/wCFp63/AM+um/8AgN/9er2q
aYl/4kvBdac0sZ1OaC5dmlxp9tuVhMPmwgbzJXy+UJBIAGQeW1mxFjo+kSHTfIa+g88zsJASQzJt
XJ24KhHPGcvwQpAohToSt7o7s6hfHPi51Vl0OAqyxspFg+CHOEI56MeB6npUVz8RPE1m0q3WlWcD
RMqyCWyZShYEqDk8EgEj1Aqrpb215oumWjRsZr9X0pGPChg8kgzg/d8ya1bI5/duMY4aXT9Kg8V3
19qEWl3k0d3rSoZsNiOCXzCxwvAZMoxJJAO3IxndLp0lfmirILsda/EnxFe3C29pp1jcTvnbHFaF
mbAycAHPQGov+Fp63/z66b/4Df8A16t6No8NpdaPrTaV5Rmkt5zE3miK3j82TfMuW3YVUhYlmKjz
cnhlxjwaJEmlDz9OYKLad7q9feGtbhDIEhPOxSSkY2sCx8zg8rhqFC790Lsu/wDC09b/AOfXTf8A
wG/+vT4vidr08yRQ2OnySyMFREtSWYngAAHk1RvNM0mHSW1SOL91J5kkUW5/+WqqsUec/wDLN0uT
uI+byecB1qlrulrDNYRWdg0Mlwu2ONXLvL0AOOdxJziRPkcEbQpDAUqVB6cors6NvH/ipLee4fR7
ZYLeQxTSGxYLE4IBVjnAOSOD6inXvjnxdp0Ilv8AQ4LWJm2h57B0UnrjJPXg/lTfHP7201m4k+W5
/tWOCZH4c7BceW+3shiaIA99jH3PP+If7QXSdDe7+0hLq0aVml3Ylfz5mDHP3jtkBz6PnvUQpUpW
fKtf8h3Zq/8AC09b/wCfXTf/AAG/+vR/

RE: JDBC Drivers and Database Support

2000-10-26 Thread Moore, Jim

we've been using the inet drivers here for a while for sql server 7 and are
quite happy with them.

-Original Message-
From: Ken Young [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 26, 2000 9:34 AM
To: JRun-Talk
Subject: Re: JDBC Drivers and Database Support


While I haven't used the drivers for SQL Server personally (Oracle
-based development), I hear that the drivers from   Inetsoftware
(http://www.inetsoftware.de/) are quite good.  This is a type 4 jdbc
driver that works with SQL server 7, 2000, and 6.5.  I think that the
licensing fee is $1000 for the Inetsoftware drivers.  For oracle, we are
using the Oracle 8.1.7 drivers from Oracle (otn.oracle.com) with our
Oracle 8.1.6 and 8.1.7 databases (in both the thin and oci modes)  They
are free from Oracle if you register at the otn site.  Alternatively, it
should be in a jdbc folder on your oracle server.

Ken


--
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe:
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.
--
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the 
body.



RE: help!-PropertyFileAuthentication

2000-10-13 Thread Moore, Jim

you could always decompile and then javadoc it.

-Original Message-
From: Rhodes, Phillip C. [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 13, 2000 3:54 PM
To: JRun-Talk
Subject: help!-PropertyFileAuthentication


I want to programmatically use PropertyFileAuthentication, but there is no
api published for it yet, or any examples.

Thanks.


Phillip Rhodes
[EMAIL PROTECTED]
Alcoa eCommerce
https://www.ALCOADIRECT.COM
826B Two Allegheny Center Pittsburgh, PA  15212
(412) 553-4900  (phone)  (412) 553-2484 (fax)


--
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe:
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.
--
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the 
body.



RE: Can't verify simple install.

2000-09-22 Thread Moore, Jim

ahh--understandable. unfortunatly the free developer version of jrun 3 is
limited to 3 concurrent connections.

in my experience, it is much, much, much better that jrun 2.3. in fact
though i love jrun 3, i would personally run tomcat and apache over jrun 2.3
and iis if jrun 3 is not an option.

-Original Message-
From: /dev/null [mailto:[EMAIL PROTECTED]]
Sent: Friday, September 22, 2000 10:42 AM
To: JRun-Talk
Subject: Re: Can't verify simple install.


It came free with a book I purchased.  Is there a "free" version of 3.0 that
will run production (_not_ just testing)?

/dev/null
[EMAIL PROTECTED]

- Original Message -----
From: "Moore, Jim" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Friday, September 22, 2000 9:27 AM
Subject: RE: Can't verify simple install.


> why are you installing performing a new install of jrun 2.3 instead of
> moving to jrun 3?
>
> -Original Message-
> From: /dev/null [mailto:[EMAIL PROTECTED]]
> Sent: Friday, September 22, 2000 10:22 AM
> To: JRun-Talk
> Subject: Re: Can't verify simple install.
>
>
> Here's the directories off of my JRun root:
>
> bin
> classes
> connectors
> contrib
> docs
> examples
> instantdb
> jdk1.2
> jsm-default
> lib
> properties
> servlets
> uninst
>
> I can't find any "servers" directory, even searching through the sub-dirs.
>
> Isn't there a log file somewhere that will tell me at least when JRun is
> getting a servlet request?  Maybe JRun's not getting anything from IIS.
>
> /dev/null
> [EMAIL PROTECTED]
>
> - Original Message -
> From: "Regina Moore" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, September 22, 2000 8:15 AM
> Subject: RE: Can't verify simple install.
>
>
> > Place your servlet class files in the  root>\web-inf\classes
> > directory.  For example, if you are using the default web application,
> just
> > put your servlets in the  > dir>\servers\default\default-app\web-inf\classes directory.
> > Also, to make sure everything is set up correctly you might want to make
> > sure you can view HTML files that are in your web application root
> > directory.  You should be able to type in http://localhost/
> to
> > get a list of all (if any) files there.
> >
> > -Original Message-
> > From: /dev/null [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, September 22, 2000 7:34 AM
> > To: JRun-Talk
> > Subject: Re: Can't verify simple install.
> >
> >
> > It gave me the same results.
> >
> > How can I verify that JSE is getting the servlet request?
> >
> > - Original Message -
> > From: "Mattias Reichel" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Friday, September 22, 2000 3:16 AM
> > Subject: Re: Can't verify simple install.
> >
> >
> > Use
> > www.myserver.com/servlet/SimpleServlet
> > and not
> > www.myserver.com/servlets/SimpleServlet
> >
> > Mattias Reichel
> >
> > - Original Message -
> > From: "/dev/null" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Friday, September 22, 2000 9:36 AM
> > Subject: Can't verify simple install.
> >
> >
> > > This is a multi-part message in MIME format.
> > >
> > > --=_NextPart_000_002B_01C0243D.DFD7A2F0
> > > Content-Type: text/plain;
> > > charset="iso-8859-1"
> > > Content-Transfer-Encoding: quoted-printable
> > >
> > > NT 4.0 EE SP6a, IIS 4.0
> > > JRun 2.3
> > > I let the install run as normal.  I had to go to the IIS web setup and
=
> > > associate .jrun with the jrun.dll in the IIS_ROOT\scripts directory
(the
> =
> > > jrun.dll was already there).
> > >
> > > Now I'm a little confused as to which exact directory my servlets
should
> =
> > > be in for me to run them and why they aren't coming up.  There are =
> > > several "samples" already set up in JRun\servlets, but none of them
come
> =
> > > up.  I try www.myserver.com/servlets/SimpleServlet, =
> > > www.myserver.com/servlets/SimpleServlet.JRun, =
> > > www.myserver.com/SimpleServlet etc... but I can't get anything to come
=
> > > up.  I've even compiled a simple "HelloWorld" and stuck it in just
about
> =
> > > every "servlets" directory I've found under JRun, but no co

RE: Can't verify simple install.

2000-09-22 Thread Moore, Jim

why are you installing performing a new install of jrun 2.3 instead of
moving to jrun 3?

-Original Message-
From: /dev/null [mailto:[EMAIL PROTECTED]]
Sent: Friday, September 22, 2000 10:22 AM
To: JRun-Talk
Subject: Re: Can't verify simple install.


Here's the directories off of my JRun root:

bin
classes
connectors
contrib
docs
examples
instantdb
jdk1.2
jsm-default
lib
properties
servlets
uninst

I can't find any "servers" directory, even searching through the sub-dirs.

Isn't there a log file somewhere that will tell me at least when JRun is
getting a servlet request?  Maybe JRun's not getting anything from IIS.

/dev/null
[EMAIL PROTECTED]

- Original Message -
From: "Regina Moore" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Friday, September 22, 2000 8:15 AM
Subject: RE: Can't verify simple install.


> Place your servlet class files in the \web-inf\classes
> directory.  For example, if you are using the default web application,
just
> put your servlets in the  dir>\servers\default\default-app\web-inf\classes directory.
> Also, to make sure everything is set up correctly you might want to make
> sure you can view HTML files that are in your web application root
> directory.  You should be able to type in http://localhost/
to
> get a list of all (if any) files there.
>
> -Original Message-
> From: /dev/null [mailto:[EMAIL PROTECTED]]
> Sent: Friday, September 22, 2000 7:34 AM
> To: JRun-Talk
> Subject: Re: Can't verify simple install.
>
>
> It gave me the same results.
>
> How can I verify that JSE is getting the servlet request?
>
> - Original Message -
> From: "Mattias Reichel" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, September 22, 2000 3:16 AM
> Subject: Re: Can't verify simple install.
>
>
> Use
> www.myserver.com/servlet/SimpleServlet
> and not
> www.myserver.com/servlets/SimpleServlet
>
> Mattias Reichel
>
> - Original Message -
> From: "/dev/null" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Friday, September 22, 2000 9:36 AM
> Subject: Can't verify simple install.
>
>
> > This is a multi-part message in MIME format.
> >
> > --=_NextPart_000_002B_01C0243D.DFD7A2F0
> > Content-Type: text/plain;
> > charset="iso-8859-1"
> > Content-Transfer-Encoding: quoted-printable
> >
> > NT 4.0 EE SP6a, IIS 4.0
> > JRun 2.3
> > I let the install run as normal.  I had to go to the IIS web setup and =
> > associate .jrun with the jrun.dll in the IIS_ROOT\scripts directory (the
=
> > jrun.dll was already there).
> >
> > Now I'm a little confused as to which exact directory my servlets should
=
> > be in for me to run them and why they aren't coming up.  There are =
> > several "samples" already set up in JRun\servlets, but none of them come
=
> > up.  I try www.myserver.com/servlets/SimpleServlet, =
> > www.myserver.com/servlets/SimpleServlet.JRun, =
> > www.myserver.com/SimpleServlet etc... but I can't get anything to come =
> > up.  I've even compiled a simple "HelloWorld" and stuck it in just about
=
> > every "servlets" directory I've found under JRun, but no combination of
=
> > URL brings it up.  I'm always getting HTTP 404 - File not found
> >
> > What's wrong?  What directory should I be putting the compiled servlets
=
> > in?  If I have a servlet there, what would prevent it from coming up =
> > correctly?
> >
> > Thanks!
> >
> > --=_NextPart_000_002B_01C0243D.DFD7A2F0
> > Content-Type: text/html;
> > charset="iso-8859-1"
> > Content-Transfer-Encoding: quoted-printable
> >
> > 
> > 
> >  > http-equiv=3DContent-Type>
> > 
> > 
> > 
> > 
> > NT 4.0 EE SP6a, IIS =
> > 4.0
> > JRun 2.3
> > I let the install run as =
> > normal.  I had to=20
> > go to the IIS web setup and associate .jrun with the jrun.dll in the=20
> > IIS_ROOT\scripts directory (the jrun.dll was already =
> > there).
> >  
> > Now I'm a little confused as to which
=
> > exact=20
> > directory my servlets should be in for me to run them and why they =
> > aren't coming=20
> > up.  There are several "samples" already set up in JRun\servlets, =
> > but none=20
> > of them come up.  I try www.myserver.com/servlets/SimpleServlet,=20
> > www.myserver.com/servlets/SimpleServlet.JRun, =
> > www.myserver.com/SimpleServlet=20
> > etc... but I can't get anything to come up.  I've even compiled a =
> > simple=20
> > "HelloWorld" and stuck it in just about every "servlets" directory I've
=
> > found=20
> > under JRun, but no combination of URL brings it up.  I'm always =
> > getting=20
> > HTTP 404 - File not found
> >  
> > What's wrong?  What directory =
> > should I be=20
> > putting the compiled servlets in?  If I have a servlet there, what
=
> > would=20
> > prevent it from coming up correctly?
> >  
> > Thanks!
> >
> > --=_NextPart_000_002B_01C0243D.DFD7A2F0--
> >
>
> --
> 
> > Archives: http://www.egroups.com/group/jrun-interest/
> > Unsubscribe:
>

RE: SQL Server?

2000-09-06 Thread Moore, Jim

i've been pretty happy with the inet drivers.

http://www.inetsoftware.de/English/Produkte/JDBC_Overview/default.htm

-Original Message-
From: Shawn A. Hall [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, September 06, 2000 1:19 PM
To: [EMAIL PROTECTED]
Subject: SQL Server?


Hello,

Has anyone had any trouble with pulling ntext, text, varchar or chars from a
MS SQL db?  I am able to pull out DateTime types and various others, but all
I get from the text and char types is "null".  I can put data in, but I
can't get it to come out.  I am using the JDBC:ODBC Bridge...  I suspect
that is the biggest issue.  I tried grabbing a demo driver but was
unsuccessful in getting it to work..  Does anyone have a suggestions on a
specific driver for MS SQL Server?  Something with some decent documentation
at least?

Thanks,

Shawn A. Hall ([EMAIL PROTECTED])
Web System Engineer
(805) 596-2407

Web Associates
The e-business company.
http://www.webassociates.com
(800) 914-4615   Toll-free
(805) 781-0547   Fax


--
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe:
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.
--
Archives: http://www.egroups.com/group/jrun-interest/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/jrun_talk
or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the 
body.



RE: Again, Serious ... Too Many Concurrent Requests ...

2000-08-01 Thread Moore, Jim

i was getting a very similar error message a while back with jrun 3 on nt
with iis. Turned out i was trying to forward the request to two jsp pages
(both of which obviously were trying to write to the output stream).

Basically it looked something like:

if (foo) {
RequestDispatcher rd = request.getRequestDispatcher("1.jsp");
rd.forward();
}

RequestDispatcher rd = request.getRequestDispatcher("2.jsp");
rd.forward();



I think the problem was that 2.jsp was trying to write to an output stream
that 1.jsp had already returned. And it took me forever to find it with the
rather uniformative error in the event log:

07/17 16:11:18 error (jcp) jcp-0 caught Throwable while swapping, exiting
[java.lang.OutOfMemoryError]
java.lang.OutOfMemoryError
<>

and in the browser:

Browser error (event log error above):
Too many concurrent requests
jcp.endpoint.main.max.threads exceeded


Hope this helps...

--jim

-Original Message-
From: Lynn Walton [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 01, 2000 2:12 AM
To: Jrun Mailing LIst
Subject: Again, Serious ... Too Many Concurrent Requests ...


Well, I definitely have a major problem.

I adjusted my jrun3 default server which is using Stronghold, Solaris
2.8, and Sun's Solaris_JDK_1.2.2_05a  to have
user.javaargs=-Xms64m -Xmx384m -verbosegc

I am the only one testing one app (one that has run just fine for 8
months on Jrun2.3.3 with Sun's Solaris_JDK1.2.2_04 ) and after only
making a few requests since starting the jrun server I get:

Too many concurrent requests
jcp.endpoint.main.max.threads exceeded

The endpoint is the default of 1000.
The log files show:
Operating System: SunOS Version 5.8
Java Virtual Machine: build Solaris_JDK_1.2.2_05a, native threads,
sunwjit from Sun Microsystems Inc.
JRun 3.0 3.00.3694 Starting default...
Current Locale: en
GC[0] in 9 ms: (64Mb, 95% free) -> (64Mb, 97% free)
Loading scheduler
Loading logging
GC[0] in 17 ms: (64Mb, 95% free) -> (64Mb, 97% free)
GC[0] in 5 ms: (64Mb, 94% free) -> (64Mb, 97% free)
GC[0] in 6 ms: (64Mb, 94% free) -> (64Mb, 96% free)
GC[0] in 14 ms: (64Mb, 94% free) -> (64Mb, 96% free)
GC[0] in 18 ms: (64Mb, 94% free) -> (64Mb, 96% free)
javax.servlet.ServletException: JSP Page threw a non-Exception
Throwable.
at java.lang.Throwable.fillInStackTrace(Native Method)
at java.lang.Throwable.fillInStackTrace(Compiled Code)
at java.lang.Throwable.(Compiled Code)
at java.lang.Exception.(Compiled Code)
at
javax.servlet.ServletException.(ServletException.java:132)
at
jrun__ssl__login__securelylogged2ejsp1d._jspService(jrun__ssl__login__secure
lylogged2ejsp1d.java:110)

at
allaire.jrun.jsp.HttpJSPServlet.service(HttpJSPServlet.java:40)
at allaire.jrun.servlet.JRunSE.service(JRunSE.java:1013)
at allaire.jrun.servlet.JRunSE.runServlet(Compiled Code)
at
allaire.jrun.servlet.JRunNamedDispatcher.forward(JRunNamedDispatcher.java:34
)

at allaire.jrun.jsp.JSPServlet.service(JSPServlet.java:174)
at allaire.jrun.servlet.JRunSE.service(JRunSE.java:1013)
at allaire.jrun.servlet.JRunSE.runServlet(Compiled Code)
at
allaire.jrun.servlet.JRunRequestDispatcher.forward(JRunRequestDispatcher.jav
a:88)

at allaire.jrun.servlet.JRunSE.service(JRunSE.java:1131)
at allaire.jrun.servlet.JvmContext.dispatch(JvmContext.java:330)

at allaire.jrun.jrpp.ProxyEndpoint.run(ProxyEndpoint.java:354)
at allaire.jrun.ThreadPool.run(Compiled Code)
at allaire.jrun.WorkerThread.run(Compiled Code)
GC[0] in 20 ms: (64Mb, 93% free) -> (64Mb, 95% free)
GC[1] in 79 ms: (64Mb, 95% free) -> (64Mb, 96% free)
GC[1] in 26 ms: (64Mb, 96% free) -> (64Mb, 96% free)
GC[1] in 24 ms: (64Mb, 96% free) -> (64Mb, 96% free)
GC[1] in 32 ms: (64Mb, 96% free) -> (64Mb, 96% free)

AND The event log shows:

08/01 01:47:12 info (JRun) Loading monitor
08/01 01:47:12 info (JRun) Loading license

08/01 01:47:12 info (license) Enabling unlimited concurrency for
Professional
08/01 01:47:12 info (JRun) Loading control
08/01 01:47:12 info (control) control listening on 127.0.0.1:50001
08/01 01:47:12 info (JRun) Loading ejb
08/01 01:47:12 info (JRun) Loading jms
08/01 01:47:12 info (JRun) Loading jndi
08/01 01:47:12 info (JRun) Loading jdbc
08/01 01:47:12 info (JRun) Loading web
08/01 01:47:12 info (web) web listening on *:8100
08/01 01:47:12 info (JRun) Loading mail
08/01 01:47:12 info (JRun) Loading url
08/01 01:47:12 info (JRun) Loading default-app
08/01 01:47:12 info (default-app) Starting default-app: Default User
Application - Default application for getting started
08/01 01:47:12 info (default-app) Loading scheduler
08/01 01:47:12 info (default-app) Loading logging
08/01 01:47:12 info (JRun) Loading session
08/01 01:47:12 info (session) Loading persistence storage provider
'file'
08/01 01:47:12 info (JRun) Loading authentication
08/01 01:47:12 info (JRun) Loading propfile
08/01 01:47:12 info (JRun) Loading