RE: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-12 Thread John Zhao

Scotty,

I think you mixed JRun 3.x stuff with JRun 4.0.  For JRun 4.0, you don't need any 
ejipt stuff any more. I don't quite understand why it would kick you to the 
maintenance page when you start the JRun in the debug mode.  It must be your 
application setting.

If you are really debug JRun 3.x server, you need to start the JRun admin server first 
and then start the server in the debug mode.

Regards,
John

-Original Message-
From: Scotty Michael [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 12, 2002 12:45 PM
To: JRun-Talk
Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0


John,

I'm still getting the "connection refused" response when clicking on Run and
Debug.

I actually started this process before upgrading from 6 to 7; and it doesn't
appear that there's anything too much different.

I followed the directions to attach that are on the Macromedia site; but at
the end of the page it says -- if something's not right you'll get the
"connection refused"; that's what I continue to get.

I've updated the local.properties to include the additional switches.  I
have JRun admin and the application with the -debug switch running.

I can access the application via my browser (of course it kicks it over to
the maintenance screen since it's in debug mode); but when I click on
Run|Debug in Jbuilder I get the connection refused error.

An initiating servlet request in our application would be...

http://192.168.245.128/servlet/Pacer?action=allPacer&ADID=1172759&RPWD=Micha
el

how does this information get integrated into the JBuilder debug ATTACH
process?

I would think that the hostname field in JBuilder would be the IP Address of
the remote server (192.168.245.128), right?  The name of the remote server
is: End-n10s4cttgs9; but I can't imagine that that is what we want to use
when we're connecting over an IP?

I'm using the default of 53006 as the address settings in Jbuilder.

Here's what I have in the VMParameters

-Dejipt.classServer.host=127.0.0.1 -Dejipt.classServer.port=2323 -Dejipt.hom
ePort=2333 -Djava.security.policy=C:\JRUN\JRUN302\lib\jrun.policy -Dejipt.ho
me=C:\JRUN\JRUN302 -Dejipt.ejbDirectory=c:\JRUN\JRUN302\servers\default -Dpo
intbase.ini=C:\JRUN\JRUN302\pointbase\pointbase.ini

and here's what I have in the application parameters

-start c:\JRUN\JRUN302\servers\default jrun.rootDir=C:\JRUN\JRUN302

The c:\websites\endall\v3.3 folder is on both the client
and remote machines and contains all the files necessary to run our website;
but I don't see anywhere to put that.

The classes are in a folder on the remote server:
c:/websites/endall/v3.3/approot/WEB-INF/classes

I think that those are all of the variables that are involved.

I really appreciate you taking the time to see where I'm missing it.  I have
spent several days trying to do it on my own; and want you to know that I
will not become a nuissance -- it's just that there is something that I'm
missing here.

Thanks,

Scott Michael


- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, July 10, 2002 9:53 AM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> We have successfully debugged JRun 3 in the distributed environment with
JBuilder 6.  You have to use VM attach approach.  Since JBuilder 7
Enterprise is quite now, I don't have chance to try it out yet.  But I did
use NetBeans to attach to JRun 4 for debug.  It works great.
>
> Thanks,
> John
>
> -----Original Message-
> From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 10, 2002 1:53 AM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> have you been able to successfully set up Jbuilder to debug servlets on a
> JRun server over an IP?
>
> I'm currently running XP Pro; Jbuilder 7 Enterprise and JRun 3.02.  If
JRun
> 4 would make the process smoother; I would gladly upgrade.
>
> Thanks,
>
> Scott
> - Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 5:42 PM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > Are you able to start the default server from the command line? Such as
> from jrun4_home
> >
> > jrun -start default
> >
> > If you can't do that, it means there is something wrong with your
> servers.xml file.  Please open that file and see if the default server
> section is correct as below.
> >
> > 
> > default
> > {jrun.home}/servers/default
> > 
> >
> > Make sure the xml file is in the correct format.
> >
> > 

RE: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-12 Thread John Zhao

To start JRun 4.0 in the debug mode, you need to use JDK 1.4 and to add the following 
java args.

java.args=-Xdebug -Xnoagent 
-Xrunjdwp:transport=dt_socket,suspend=n,server=y,address=53006 
-Xbootclasspath/a:${java.home}/lib/tools.jar

Regards,
John

-Original Message-
From: Dan Tran [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 11, 2002 4:46 PM
To: JRun-Talk
Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0


How do I start JRun 4.0 in debug mode?

-Dan

- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, July 11, 2002 8:29 AM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> I have been able to remote debugging JRun 4.0 with JBuilder 6.0.  Here is
the brief steps.
>
> 1) start the remote JRun server in the debug mode
> 2) go into JB6 project properties setting to enable remote debugging and
select attach
> 3) copy the servlet or EJB bean class you want to debug into JRun server
proper directory
> 4) set the break point and start the debug process
> 5) start a browser and request the servlet/EJB bean
> 6) from JBuilder you can debug as you need.
>
> Thanks,
> John
>
> -Original Message-
> From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 10, 2002 1:38 PM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> John,
>
> I believe I have everything set up right now for debuggin.  I clicked on
> "Debug Project" and it displayed "Build succeeded with 0 files built.
Build
> took 8 seconds" and it didn't give me the connection refused error
> afterward.
>
> I'm confused, though, because since JRun is in debug mode, it displays the
> maintenance page.  How do I get into the servlets?
>
> I was thinking that I would simply punch
>
http://192.168.245.128/servlet/Pacer?action=allPacer&ADID=1172759&RPWD=Micha
> el into my browser which would activate the servlets and I would be able
to
> observe the activity.
>
> What am I missing here?
>
> Thanks,
>
> Scotty
> ----- Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Wednesday, July 10, 2002 9:53 AM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > We have successfully debugged JRun 3 in the distributed environment with
> JBuilder 6.  You have to use VM attach approach.  Since JBuilder 7
> Enterprise is quite now, I don't have chance to try it out yet.  But I did
> use NetBeans to attach to JRun 4 for debug.  It works great.
> >
> > Thanks,
> > John
> >
> > -Original Message-
> > From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, July 10, 2002 1:53 AM
> > To: JRun-Talk
> > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > have you been able to successfully set up Jbuilder to debug servlets on
a
> > JRun server over an IP?
> >
> > I'm currently running XP Pro; Jbuilder 7 Enterprise and JRun 3.02.  If
> JRun
> > 4 would make the process smoother; I would gladly upgrade.
> >
> > Thanks,
> >
> > Scott
> > - Original Message -
> > From: "John Zhao" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 5:42 PM
> > Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > > Are you able to start the default server from the command line? Such
as
> > from jrun4_home
> > >
> > > jrun -start default
> > >
> > > If you can't do that, it means there is something wrong with your
> > servers.xml file.  Please open that file and see if the default server
> > section is correct as below.
> > >
> > > 
> > > default
> > > {jrun.home}/servers/default
> > > 
> > >
> > > Make sure the xml file is in the correct format.
> > >
> > > -Original Message-
> > > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, July 09, 2002 5:39 PM
> > > To: JRun-Talk
> > > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> > >
> > >
> > > Dear John,
> > >  Thanks for the link!
> > >  I still have some problems to start the JRun server within
> > > JBuilder6.
> > >  I got the message like
> > >
> > >   "JRun server "c:/JRun4/servers/

Re: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-12 Thread Scotty Michael

John,

I'm still getting the "connection refused" response when clicking on Run and
Debug.

I actually started this process before upgrading from 6 to 7; and it doesn't
appear that there's anything too much different.

I followed the directions to attach that are on the Macromedia site; but at
the end of the page it says -- if something's not right you'll get the
"connection refused"; that's what I continue to get.

I've updated the local.properties to include the additional switches.  I
have JRun admin and the application with the -debug switch running.

I can access the application via my browser (of course it kicks it over to
the maintenance screen since it's in debug mode); but when I click on
Run|Debug in Jbuilder I get the connection refused error.

An initiating servlet request in our application would be...

http://192.168.245.128/servlet/Pacer?action=allPacer&ADID=1172759&RPWD=Micha
el

how does this information get integrated into the JBuilder debug ATTACH
process?

I would think that the hostname field in JBuilder would be the IP Address of
the remote server (192.168.245.128), right?  The name of the remote server
is: End-n10s4cttgs9; but I can't imagine that that is what we want to use
when we're connecting over an IP?

I'm using the default of 53006 as the address settings in Jbuilder.

Here's what I have in the VMParameters

-Dejipt.classServer.host=127.0.0.1 -Dejipt.classServer.port=2323 -Dejipt.hom
ePort=2333 -Djava.security.policy=C:\JRUN\JRUN302\lib\jrun.policy -Dejipt.ho
me=C:\JRUN\JRUN302 -Dejipt.ejbDirectory=c:\JRUN\JRUN302\servers\default -Dpo
intbase.ini=C:\JRUN\JRUN302\pointbase\pointbase.ini

and here's what I have in the application parameters

-start c:\JRUN\JRUN302\servers\default jrun.rootDir=C:\JRUN\JRUN302

The c:\websites\endall\v3.3 folder is on both the client
and remote machines and contains all the files necessary to run our website;
but I don't see anywhere to put that.

The classes are in a folder on the remote server:
c:/websites/endall/v3.3/approot/WEB-INF/classes

I think that those are all of the variables that are involved.

I really appreciate you taking the time to see where I'm missing it.  I have
spent several days trying to do it on my own; and want you to know that I
will not become a nuissance -- it's just that there is something that I'm
missing here.

Thanks,

Scott Michael


- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, July 10, 2002 9:53 AM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> We have successfully debugged JRun 3 in the distributed environment with
JBuilder 6.  You have to use VM attach approach.  Since JBuilder 7
Enterprise is quite now, I don't have chance to try it out yet.  But I did
use NetBeans to attach to JRun 4 for debug.  It works great.
>
> Thanks,
> John
>
> -Original Message-
> From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 10, 2002 1:53 AM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> have you been able to successfully set up Jbuilder to debug servlets on a
> JRun server over an IP?
>
> I'm currently running XP Pro; Jbuilder 7 Enterprise and JRun 3.02.  If
JRun
> 4 would make the process smoother; I would gladly upgrade.
>
> Thanks,
>
> Scott
> - Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 5:42 PM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > Are you able to start the default server from the command line? Such as
> from jrun4_home
> >
> > jrun -start default
> >
> > If you can't do that, it means there is something wrong with your
> servers.xml file.  Please open that file and see if the default server
> section is correct as below.
> >
> > 
> > default
> > {jrun.home}/servers/default
> > 
> >
> > Make sure the xml file is in the correct format.
> >
> > -Original Message-
> > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 09, 2002 5:39 PM
> > To: JRun-Talk
> > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > Dear John,
> >  Thanks for the link!
> >  I still have some problems to start the JRun server within
> > JBuilder6.
> >  I got the message like
> >
> >   "JRun server "c:/JRun4/servers/default" does not exist, the server
> > root null was not found. Please verify that the C:\JRun4\lib\servers

Re: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-12 Thread Scotty Michael

but since the Jrun server is in Debug mode; it kicks me to the maintenance
page before accessing the servlet.
- Original Message -
From: "Dan Tran" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, July 11, 2002 4:46 PM
Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0


> How do I start JRun 4.0 in debug mode?
>
> -Dan
>
> - Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, July 11, 2002 8:29 AM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > I have been able to remote debugging JRun 4.0 with JBuilder 6.0.  Here
is
> the brief steps.
> >
> > 1) start the remote JRun server in the debug mode
> > 2) go into JB6 project properties setting to enable remote debugging and
> select attach
> > 3) copy the servlet or EJB bean class you want to debug into JRun server
> proper directory
> > 4) set the break point and start the debug process
> > 5) start a browser and request the servlet/EJB bean
> > 6) from JBuilder you can debug as you need.
> >
> > Thanks,
> > John
> >
> > -----Original Message-
> > From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, July 10, 2002 1:38 PM
> > To: JRun-Talk
> > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > John,
> >
> > I believe I have everything set up right now for debuggin.  I clicked on
> > "Debug Project" and it displayed "Build succeeded with 0 files built.
> Build
> > took 8 seconds" and it didn't give me the connection refused error
> > afterward.
> >
> > I'm confused, though, because since JRun is in debug mode, it displays
the
> > maintenance page.  How do I get into the servlets?
> >
> > I was thinking that I would simply punch
> >
>
http://192.168.245.128/servlet/Pacer?action=allPacer&ADID=1172759&RPWD=Micha
> > el into my browser which would activate the servlets and I would be able
> to
> > observe the activity.
> >
> > What am I missing here?
> >
> > Thanks,
> >
> > Scotty
> > - Original Message -
> > From: "John Zhao" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Wednesday, July 10, 2002 9:53 AM
> > Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > > We have successfully debugged JRun 3 in the distributed environment
with
> > JBuilder 6.  You have to use VM attach approach.  Since JBuilder 7
> > Enterprise is quite now, I don't have chance to try it out yet.  But I
did
> > use NetBeans to attach to JRun 4 for debug.  It works great.
> > >
> > > Thanks,
> > > John
> > >
> > > -Original Message-
> > > From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, July 10, 2002 1:53 AM
> > > To: JRun-Talk
> > > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> > >
> > >
> > > have you been able to successfully set up Jbuilder to debug servlets
on
> a
> > > JRun server over an IP?
> > >
> > > I'm currently running XP Pro; Jbuilder 7 Enterprise and JRun 3.02.  If
> > JRun
> > > 4 would make the process smoother; I would gladly upgrade.
> > >
> > > Thanks,
> > >
> > > Scott
> > > - Original Message -
> > > From: "John Zhao" <[EMAIL PROTECTED]>
> > > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > > Sent: Tuesday, July 09, 2002 5:42 PM
> > > Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
> > >
> > >
> > > > Are you able to start the default server from the command line? Such
> as
> > > from jrun4_home
> > > >
> > > > jrun -start default
> > > >
> > > > If you can't do that, it means there is something wrong with your
> > > servers.xml file.  Please open that file and see if the default server
> > > section is correct as below.
> > > >
> > > > 
> > > > default
> > > > {jrun.home}/servers/default
> > > > 
> > > >
> > > > Make sure the xml file is in the correct format.
> > > >
> > > > -Original Message-
> > > > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > > > Sent: Tuesday

Re: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-11 Thread Dan Tran

How do I start JRun 4.0 in debug mode?

-Dan

- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, July 11, 2002 8:29 AM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> I have been able to remote debugging JRun 4.0 with JBuilder 6.0.  Here is
the brief steps.
>
> 1) start the remote JRun server in the debug mode
> 2) go into JB6 project properties setting to enable remote debugging and
select attach
> 3) copy the servlet or EJB bean class you want to debug into JRun server
proper directory
> 4) set the break point and start the debug process
> 5) start a browser and request the servlet/EJB bean
> 6) from JBuilder you can debug as you need.
>
> Thanks,
> John
>
> -Original Message-
> From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 10, 2002 1:38 PM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> John,
>
> I believe I have everything set up right now for debuggin.  I clicked on
> "Debug Project" and it displayed "Build succeeded with 0 files built.
Build
> took 8 seconds" and it didn't give me the connection refused error
> afterward.
>
> I'm confused, though, because since JRun is in debug mode, it displays the
> maintenance page.  How do I get into the servlets?
>
> I was thinking that I would simply punch
>
http://192.168.245.128/servlet/Pacer?action=allPacer&ADID=1172759&RPWD=Micha
> el into my browser which would activate the servlets and I would be able
to
> observe the activity.
>
> What am I missing here?
>
> Thanks,
>
> Scotty
> ----- Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Wednesday, July 10, 2002 9:53 AM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > We have successfully debugged JRun 3 in the distributed environment with
> JBuilder 6.  You have to use VM attach approach.  Since JBuilder 7
> Enterprise is quite now, I don't have chance to try it out yet.  But I did
> use NetBeans to attach to JRun 4 for debug.  It works great.
> >
> > Thanks,
> > John
> >
> > -Original Message-
> > From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, July 10, 2002 1:53 AM
> > To: JRun-Talk
> > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > have you been able to successfully set up Jbuilder to debug servlets on
a
> > JRun server over an IP?
> >
> > I'm currently running XP Pro; Jbuilder 7 Enterprise and JRun 3.02.  If
> JRun
> > 4 would make the process smoother; I would gladly upgrade.
> >
> > Thanks,
> >
> > Scott
> > - Original Message -
> > From: "John Zhao" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 5:42 PM
> > Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > > Are you able to start the default server from the command line? Such
as
> > from jrun4_home
> > >
> > > jrun -start default
> > >
> > > If you can't do that, it means there is something wrong with your
> > servers.xml file.  Please open that file and see if the default server
> > section is correct as below.
> > >
> > > 
> > > default
> > > {jrun.home}/servers/default
> > > 
> > >
> > > Make sure the xml file is in the correct format.
> > >
> > > -Original Message-
> > > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, July 09, 2002 5:39 PM
> > > To: JRun-Talk
> > > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> > >
> > >
> > > Dear John,
> > >  Thanks for the link!
> > >  I still have some problems to start the JRun server within
> > > JBuilder6.
> > >  I got the message like
> > >
> > >   "JRun server "c:/JRun4/servers/default" does not exist, the
server
> > > root null was not found. Please verify that the
C:\JRun4\lib\servers.xml
> > > file contains valid data for this server"
> > >
> > >please give me more information on this
> > >
> > > thanks
> > > regards
> > >
> > > James
> > > - Original Message -
> > > From: "John Zhao" <[EMAI

RE: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-11 Thread John Zhao

I have been able to remote debugging JRun 4.0 with JBuilder 6.0.  Here is the brief 
steps.

1) start the remote JRun server in the debug mode
2) go into JB6 project properties setting to enable remote debugging and select attach
3) copy the servlet or EJB bean class you want to debug into JRun server proper 
directory
4) set the break point and start the debug process
5) start a browser and request the servlet/EJB bean
6) from JBuilder you can debug as you need.

Thanks,
John

-Original Message-
From: Scotty Michael [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 10, 2002 1:38 PM
To: JRun-Talk
Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0


John,

I believe I have everything set up right now for debuggin.  I clicked on
"Debug Project" and it displayed "Build succeeded with 0 files built.  Build
took 8 seconds" and it didn't give me the connection refused error
afterward.

I'm confused, though, because since JRun is in debug mode, it displays the
maintenance page.  How do I get into the servlets?

I was thinking that I would simply punch
http://192.168.245.128/servlet/Pacer?action=allPacer&ADID=1172759&RPWD=Micha
el into my browser which would activate the servlets and I would be able to
observe the activity.

What am I missing here?

Thanks,

Scotty
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, July 10, 2002 9:53 AM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> We have successfully debugged JRun 3 in the distributed environment with
JBuilder 6.  You have to use VM attach approach.  Since JBuilder 7
Enterprise is quite now, I don't have chance to try it out yet.  But I did
use NetBeans to attach to JRun 4 for debug.  It works great.
>
> Thanks,
> John
>
> -Original Message-
> From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 10, 2002 1:53 AM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> have you been able to successfully set up Jbuilder to debug servlets on a
> JRun server over an IP?
>
> I'm currently running XP Pro; Jbuilder 7 Enterprise and JRun 3.02.  If
JRun
> 4 would make the process smoother; I would gladly upgrade.
>
> Thanks,
>
> Scott
> - Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 5:42 PM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > Are you able to start the default server from the command line? Such as
> from jrun4_home
> >
> > jrun -start default
> >
> > If you can't do that, it means there is something wrong with your
> servers.xml file.  Please open that file and see if the default server
> section is correct as below.
> >
> > 
> > default
> > {jrun.home}/servers/default
> > 
> >
> > Make sure the xml file is in the correct format.
> >
> > -Original Message-
> > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 09, 2002 5:39 PM
> > To: JRun-Talk
> > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > Dear John,
> >  Thanks for the link!
> >  I still have some problems to start the JRun server within
> > JBuilder6.
> >  I got the message like
> >
> >   "JRun server "c:/JRun4/servers/default" does not exist, the server
> > root null was not found. Please verify that the C:\JRun4\lib\servers.xml
> > file contains valid data for this server"
> >
> >please give me more information on this
> >
> > thanks
> > regards
> >
> > James
> > - Original Message -
> > From: "John Zhao" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 11:54 AM
> > Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > > "Getting Started with JRun 4.0" provides the instruction as to how to
> > integrate your IDE with JRun 4.0.  Please refer to the link below.
> > >
> > >
> >
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
> > p#1120471
> > >
> > > You may follow the same instruction with JBuilder 6.0.  If you have
> > further questions, please feel free to let me know.
> > >
> > > Regards,
> > > John
> > >
> > > -Original Message-
> > > From: jamesguan [mailto:[EMAIL PROTECTE

Re: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-10 Thread Scotty Michael

John,

I believe I have everything set up right now for debuggin.  I clicked on
"Debug Project" and it displayed "Build succeeded with 0 files built.  Build
took 8 seconds" and it didn't give me the connection refused error
afterward.

I'm confused, though, because since JRun is in debug mode, it displays the
maintenance page.  How do I get into the servlets?

I was thinking that I would simply punch
http://192.168.245.128/servlet/Pacer?action=allPacer&ADID=1172759&RPWD=Micha
el into my browser which would activate the servlets and I would be able to
observe the activity.

What am I missing here?

Thanks,

Scotty
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, July 10, 2002 9:53 AM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> We have successfully debugged JRun 3 in the distributed environment with
JBuilder 6.  You have to use VM attach approach.  Since JBuilder 7
Enterprise is quite now, I don't have chance to try it out yet.  But I did
use NetBeans to attach to JRun 4 for debug.  It works great.
>
> Thanks,
> John
>
> -Original Message-
> From: Scotty Michael [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, July 10, 2002 1:53 AM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> have you been able to successfully set up Jbuilder to debug servlets on a
> JRun server over an IP?
>
> I'm currently running XP Pro; Jbuilder 7 Enterprise and JRun 3.02.  If
JRun
> 4 would make the process smoother; I would gladly upgrade.
>
> Thanks,
>
> Scott
> - Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 5:42 PM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > Are you able to start the default server from the command line? Such as
> from jrun4_home
> >
> > jrun -start default
> >
> > If you can't do that, it means there is something wrong with your
> servers.xml file.  Please open that file and see if the default server
> section is correct as below.
> >
> > 
> > default
> > {jrun.home}/servers/default
> > 
> >
> > Make sure the xml file is in the correct format.
> >
> > -Original Message-
> > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 09, 2002 5:39 PM
> > To: JRun-Talk
> > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > Dear John,
> >  Thanks for the link!
> >  I still have some problems to start the JRun server within
> > JBuilder6.
> >  I got the message like
> >
> >   "JRun server "c:/JRun4/servers/default" does not exist, the server
> > root null was not found. Please verify that the C:\JRun4\lib\servers.xml
> > file contains valid data for this server"
> >
> >please give me more information on this
> >
> > thanks
> > regards
> >
> > James
> > - Original Message -
> > From: "John Zhao" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 11:54 AM
> > Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > > "Getting Started with JRun 4.0" provides the instruction as to how to
> > integrate your IDE with JRun 4.0.  Please refer to the link below.
> > >
> > >
> >
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
> > p#1120471
> > >
> > > You may follow the same instruction with JBuilder 6.0.  If you have
> > further questions, please feel free to let me know.
> > >
> > > Regards,
> > > John
> > >
> > > -Original Message-
> > > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, July 09, 2002 2:42 PM
> > > To: JRun-Talk
> > > Subject: How To Configure JBuilder 6.0 for JRun Server 4.0
> > >
> > >
> > > Could anyone there give me some suggestion on How To Configure
JBuilder
> > 6.0
> > > for JRun Server 4.0
> > >
> > > James
> > > - Original Message -
> > > From: "André_Schneider" <[EMAIL PROTECTED]>
> > > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > > Sent: Tuesday, July 09, 2002 9:47 AM
> > > Subject: AW: Java
> > >
> > >

Re: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-10 Thread jamesguan

Thanks John,
 you are right there,  all I need as the application parameter is "-start
defaulf".
 it works now. thanks a lot.

james
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, July 10, 2002 6:32 AM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> One of my colleague here reminds me that you should only need "start
default" instead of "-start c:/JRun4/servers/default jrun.rootDir=c:/JRun4"
as the application parameter to start the server.
>
> -Original Message-
> From: jamesguan [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 09, 2002 6:37 PM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> Hi John,
>
>   I have checked the servers.xml file, the default server section
seems
> all correct.
>   and I can start the default server from the command line,
C:\JRun4\bin
>
>   but when I run the servlet from JBuilder6, it still gives me the
same
> messages
>
>  " JRun server "c:/JRun4/servers/default" does not exist, the server root
> null was not found. Please verify that the C:\JRun4\lib\servers.xml file
> contains valid data for this server."
>
> under the Project Properties, under the Run, under the Application
> Parameter, I put in
> ' -start c:/JRun4/servers/default jrun.rootDir=c:/JRun4 '
>
> do you think that would be the problem?
>
> thanks again
>
> regards
>
> James
> - Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 2:42 PM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > Are you able to start the default server from the command line? Such as
> from jrun4_home
> >
> > jrun -start default
> >
> > If you can't do that, it means there is something wrong with your
> servers.xml file.  Please open that file and see if the default server
> section is correct as below.
> >
> > 
> >     default
> > {jrun.home}/servers/default
> > 
> >
> > Make sure the xml file is in the correct format.
> >
> > -Original Message-
> > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 09, 2002 5:39 PM
> > To: JRun-Talk
> > Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > Dear John,
> >  Thanks for the link!
> >  I still have some problems to start the JRun server within
> > JBuilder6.
> >  I got the message like
> >
> >   "JRun server "c:/JRun4/servers/default" does not exist, the server
> > root null was not found. Please verify that the C:\JRun4\lib\servers.xml
> > file contains valid data for this server"
> >
> >please give me more information on this
> >
> > thanks
> > regards
> >
> > James
> > - Original Message -
> > From: "John Zhao" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 11:54 AM
> > Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > > "Getting Started with JRun 4.0" provides the instruction as to how to
> > integrate your IDE with JRun 4.0.  Please refer to the link below.
> > >
> > >
> >
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
> > p#1120471
> > >
> > > You may follow the same instruction with JBuilder 6.0.  If you have
> > further questions, please feel free to let me know.
> > >
> > > Regards,
> > > John
> > >
> > > -Original Message-
> > > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, July 09, 2002 2:42 PM
> > > To: JRun-Talk
> > > Subject: How To Configure JBuilder 6.0 for JRun Server 4.0
> > >
> > >
> > > Could anyone there give me some suggestion on How To Configure
JBuilder
> > 6.0
> > > for JRun Server 4.0
> > >
> > > James
> > > - Original Message -
> > > From: "André_Schneider" <[EMAIL PROTECTED]>
> > > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > > Sent: Tuesday, July 09, 2002 9:47 AM
> > > Subject: AW: Java
> > >
> > >
> > > > hi there,
> > > > try it with jdring
> > > >

RE: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-10 Thread John Zhao

We have successfully debugged JRun 3 in the distributed environment with JBuilder 6.  
You have to use VM attach approach.  Since JBuilder 7 Enterprise is quite now, I don't 
have chance to try it out yet.  But I did use NetBeans to attach to JRun 4 for debug.  
It works great.

Thanks,
John

-Original Message-
From: Scotty Michael [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 10, 2002 1:53 AM
To: JRun-Talk
Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0


have you been able to successfully set up Jbuilder to debug servlets on a
JRun server over an IP?

I'm currently running XP Pro; Jbuilder 7 Enterprise and JRun 3.02.  If JRun
4 would make the process smoother; I would gladly upgrade.

Thanks,

Scott
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, July 09, 2002 5:42 PM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> Are you able to start the default server from the command line? Such as
from jrun4_home
>
> jrun -start default
>
> If you can't do that, it means there is something wrong with your
servers.xml file.  Please open that file and see if the default server
section is correct as below.
>
> 
> default
> {jrun.home}/servers/default
> 
>
> Make sure the xml file is in the correct format.
>
> -Original Message-
> From: jamesguan [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 09, 2002 5:39 PM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> Dear John,
>  Thanks for the link!
>  I still have some problems to start the JRun server within
> JBuilder6.
>  I got the message like
>
>   "JRun server "c:/JRun4/servers/default" does not exist, the server
> root null was not found. Please verify that the C:\JRun4\lib\servers.xml
> file contains valid data for this server"
>
>please give me more information on this
>
> thanks
> regards
>
> James
> - Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 11:54 AM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > "Getting Started with JRun 4.0" provides the instruction as to how to
> integrate your IDE with JRun 4.0.  Please refer to the link below.
> >
> >
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
> p#1120471
> >
> > You may follow the same instruction with JBuilder 6.0.  If you have
> further questions, please feel free to let me know.
> >
> > Regards,
> > John
> >
> > -Original Message-
> > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 09, 2002 2:42 PM
> > To: JRun-Talk
> > Subject: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > Could anyone there give me some suggestion on How To Configure JBuilder
> 6.0
> > for JRun Server 4.0
> >
> > James
> > - Original Message -
> > From: "André_Schneider" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 9:47 AM
> > Subject: AW: Java
> >
> >
> > > hi there,
> > > try it with jdring
> > > you can get the package under http://webtools.dyade.fr/jdring/
> > > sample_code :
> > >
> > > import fr.dyade.jdring.*;
> > >
> > > public class CLASS extends HttpServlet
> > > {
> > > public void init()
> > > {
> > > AlarmManager mgr = new AlarmManager();
> > > try
> > > {
> > > // every day at 4:40 AM
> > > //   miute  houre day
> > > month  day_of_week  year
> > > //mgr.addAlarm( 30,4 , -1 , -1,-1
> > > ,-1  , new AlarmListener()
> > > //or
> > > //for every 60 minutes
> > > mgr.addAlarm(60, true, new AlarmListener()
> > > {
> > > public void handleAlarm(AlarmEntry
> > > entry)
> > > {
> > > try
> > > {
> > > CLASS_TO_RUN
> > > CLASS_TO_RUN = new CLASS_TO_RUN();
> > >
> > > CLASS_TO_RUN.doSomething();
> > > }
> > > catch(Exception ex)
> > > {}
> > > }
> > > });
> > > }
> > > catch(fr.dyade.jdring.PastDateException pE)
> > > {}
> > > }
> > >
> > > protected doGet(  ... )
> > > {...}
> > > }
> > >
> > > cu
> > >
> >

RE: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-10 Thread John Zhao

One of my colleague here reminds me that you should only need "start default" instead 
of "-start c:/JRun4/servers/default jrun.rootDir=c:/JRun4" as the application 
parameter to start the server.

-Original Message-
From: jamesguan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 09, 2002 6:37 PM
To: JRun-Talk
Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0


Hi John,

  I have checked the servers.xml file, the default server section seems
all correct.
  and I can start the default server from the command line, C:\JRun4\bin

  but when I run the servlet from JBuilder6, it still gives me the same
messages

 " JRun server "c:/JRun4/servers/default" does not exist, the server root
null was not found. Please verify that the C:\JRun4\lib\servers.xml file
contains valid data for this server."

under the Project Properties, under the Run, under the Application
Parameter, I put in
' -start c:/JRun4/servers/default jrun.rootDir=c:/JRun4 '

do you think that would be the problem?

thanks again

regards

James
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, July 09, 2002 2:42 PM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> Are you able to start the default server from the command line? Such as
from jrun4_home
>
> jrun -start default
>
> If you can't do that, it means there is something wrong with your
servers.xml file.  Please open that file and see if the default server
section is correct as below.
>
> 
> default
> {jrun.home}/servers/default
> 
>
> Make sure the xml file is in the correct format.
>
> -Original Message-
> From: jamesguan [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 09, 2002 5:39 PM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> Dear John,
>  Thanks for the link!
>  I still have some problems to start the JRun server within
> JBuilder6.
>  I got the message like
>
>   "JRun server "c:/JRun4/servers/default" does not exist, the server
> root null was not found. Please verify that the C:\JRun4\lib\servers.xml
> file contains valid data for this server"
>
>please give me more information on this
>
> thanks
> regards
>
> James
> - Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 11:54 AM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > "Getting Started with JRun 4.0" provides the instruction as to how to
> integrate your IDE with JRun 4.0.  Please refer to the link below.
> >
> >
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
> p#1120471
> >
> > You may follow the same instruction with JBuilder 6.0.  If you have
> further questions, please feel free to let me know.
> >
> > Regards,
> > John
> >
> > -Original Message-
> > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 09, 2002 2:42 PM
> > To: JRun-Talk
> > Subject: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > Could anyone there give me some suggestion on How To Configure JBuilder
> 6.0
> > for JRun Server 4.0
> >
> > James
> > - Original Message -
> > From: "André_Schneider" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 9:47 AM
> > Subject: AW: Java
> >
> >
> > > hi there,
> > > try it with jdring
> > > you can get the package under http://webtools.dyade.fr/jdring/
> > > sample_code :
> > >
> > > import fr.dyade.jdring.*;
> > >
> > > public class CLASS extends HttpServlet
> > > {
> > > public void init()
> > > {
> > > AlarmManager mgr = new AlarmManager();
> > > try
> > > {
> > > // every day at 4:40 AM
> > > //   miute  houre day
> > > month  day_of_week  year
> > > //mgr.addAlarm( 30,4 , -1 , -1,-1
> > > ,-1  , new AlarmListener()
> > > //or
> > > //for every 60 minutes
> > > mgr.addAlarm(60, true, new AlarmListener()
> > > {
> > > public void handleAlarm(AlarmEntry
> > > entry)
> > > {
> > > try
> > > {
> > > CLASS_TO_RUN
> > > CLASS_TO_RUN = new CLASS_TO_RUN();
> > >
> > > CLASS_TO_RUN.doSomething();
> > > }

Re: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-09 Thread Scotty Michael

have you been able to successfully set up Jbuilder to debug servlets on a
JRun server over an IP?

I'm currently running XP Pro; Jbuilder 7 Enterprise and JRun 3.02.  If JRun
4 would make the process smoother; I would gladly upgrade.

Thanks,

Scott
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, July 09, 2002 5:42 PM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> Are you able to start the default server from the command line? Such as
from jrun4_home
>
> jrun -start default
>
> If you can't do that, it means there is something wrong with your
servers.xml file.  Please open that file and see if the default server
section is correct as below.
>
> 
> default
> {jrun.home}/servers/default
> 
>
> Make sure the xml file is in the correct format.
>
> -Original Message-
> From: jamesguan [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 09, 2002 5:39 PM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> Dear John,
>  Thanks for the link!
>  I still have some problems to start the JRun server within
> JBuilder6.
>  I got the message like
>
>   "JRun server "c:/JRun4/servers/default" does not exist, the server
> root null was not found. Please verify that the C:\JRun4\lib\servers.xml
> file contains valid data for this server"
>
>please give me more information on this
>
> thanks
> regards
>
> James
> - Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 11:54 AM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > "Getting Started with JRun 4.0" provides the instruction as to how to
> integrate your IDE with JRun 4.0.  Please refer to the link below.
> >
> >
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
> p#1120471
> >
> > You may follow the same instruction with JBuilder 6.0.  If you have
> further questions, please feel free to let me know.
> >
> > Regards,
> > John
> >
> > -Original Message-
> > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 09, 2002 2:42 PM
> > To: JRun-Talk
> > Subject: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > Could anyone there give me some suggestion on How To Configure JBuilder
> 6.0
> > for JRun Server 4.0
> >
> > James
> > - Original Message -
> > From: "André_Schneider" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 9:47 AM
> > Subject: AW: Java
> >
> >
> > > hi there,
> > > try it with jdring
> > > you can get the package under http://webtools.dyade.fr/jdring/
> > > sample_code :
> > >
> > > import fr.dyade.jdring.*;
> > >
> > > public class CLASS extends HttpServlet
> > > {
> > > public void init()
> > > {
> > > AlarmManager mgr = new AlarmManager();
> > > try
> > > {
> > > // every day at 4:40 AM
> > > //   miute  houre day
> > > month  day_of_week  year
> > > //mgr.addAlarm( 30,4 , -1 , -1,-1
> > > ,-1  , new AlarmListener()
> > > //or
> > > //for every 60 minutes
> > > mgr.addAlarm(60, true, new AlarmListener()
> > > {
> > > public void handleAlarm(AlarmEntry
> > > entry)
> > > {
> > > try
> > > {
> > > CLASS_TO_RUN
> > > CLASS_TO_RUN = new CLASS_TO_RUN();
> > >
> > > CLASS_TO_RUN.doSomething();
> > > }
> > > catch(Exception ex)
> > > {}
> > > }
> > > });
> > > }
> > > catch(fr.dyade.jdring.PastDateException pE)
> > > {}
> > > }
> > >
> > > protected doGet(  ... )
> > > {...}
> > > }
> > >
> > > cu
> > >
> > > Andre
> > >
> > >
> > > -Ursprüngliche Nachricht-
> > > Von: Kannaiyan P [mailto:[EMAIL PROTECTED]]
> > > Gesendet: Dienstag, 9. Juli 2002 18:24
> > > An: JRun-Talk
> > > Betreff: Java
> > >
> > >
> > > Hi
> > >
> > >   I have java application running on jrun application server 3.1 .
> > >   java program is a Singleton(instance)class on the server. it always

RE: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-09 Thread Thomas Ruggles

Looks like the problem is your server parameter (c:/JRun4/servers/default).  Try the 
following instead.

' -start default jrun.rootDir=c:/JRun4 '

Tom Ruggles
JRun QA

-Original Message-
From: jamesguan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 09, 2002 6:37 PM
To: JRun-Talk
Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0


Hi John,

  I have checked the servers.xml file, the default server section seems
all correct.
  and I can start the default server from the command line, C:\JRun4\bin

  but when I run the servlet from JBuilder6, it still gives me the same
messages

 " JRun server "c:/JRun4/servers/default" does not exist, the server root
null was not found. Please verify that the C:\JRun4\lib\servers.xml file
contains valid data for this server."

under the Project Properties, under the Run, under the Application
Parameter, I put in
' -start c:/JRun4/servers/default jrun.rootDir=c:/JRun4 '

do you think that would be the problem?

thanks again

regards

James
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, July 09, 2002 2:42 PM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> Are you able to start the default server from the command line? Such as
from jrun4_home
>
> jrun -start default
>
> If you can't do that, it means there is something wrong with your
servers.xml file.  Please open that file and see if the default server
section is correct as below.
>
> 
> default
> {jrun.home}/servers/default
> 
>
> Make sure the xml file is in the correct format.
>
> -Original Message-----
> From: jamesguan [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 09, 2002 5:39 PM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> Dear John,
>  Thanks for the link!
>  I still have some problems to start the JRun server within
> JBuilder6.
>  I got the message like
>
>   "JRun server "c:/JRun4/servers/default" does not exist, the server
> root null was not found. Please verify that the C:\JRun4\lib\servers.xml
> file contains valid data for this server"
>
>please give me more information on this
>
> thanks
> regards
>
> James
> ----- Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 11:54 AM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > "Getting Started with JRun 4.0" provides the instruction as to how to
> integrate your IDE with JRun 4.0.  Please refer to the link below.
> >
> >
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
> p#1120471
> >
> > You may follow the same instruction with JBuilder 6.0.  If you have
> further questions, please feel free to let me know.
> >
> > Regards,
> > John
> >
> > -Original Message-
> > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 09, 2002 2:42 PM
> > To: JRun-Talk
> > Subject: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > Could anyone there give me some suggestion on How To Configure JBuilder
> 6.0
> > for JRun Server 4.0
> >
> > James
> > - Original Message -
> > From: "André_Schneider" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 9:47 AM
> > Subject: AW: Java
> >
> >
> > > hi there,
> > > try it with jdring
> > > you can get the package under http://webtools.dyade.fr/jdring/
> > > sample_code :
> > >
> > > import fr.dyade.jdring.*;
> > >
> > > public class CLASS extends HttpServlet
> > > {
> > > public void init()
> > > {
> > > AlarmManager mgr = new AlarmManager();
> > > try
> > > {
> > > // every day at 4:40 AM
> > > //   miute  houre day
> > > month  day_of_week  year
> > > //mgr.addAlarm( 30,4 , -1 , -1,-1
> > > ,-1  , new AlarmListener()
> > > //or
> > > //for every 60 minutes
> > > mgr.addAlarm(60, true, new AlarmListener()
> > > {
> > > public void handleAlarm(AlarmEntry
> > > entry)
> > > {
> > > try
> > > {
> > > CLASS_TO_RUN
> > > CLASS_TO_RUN = new CLASS_TO_RUN();
> > >
> > > CLASS_TO_RUN.doSomething();
> > > }
> > > catch(Exception ex)

Re: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-09 Thread jamesguan

Hi John,

  I have checked the servers.xml file, the default server section seems
all correct.
  and I can start the default server from the command line, C:\JRun4\bin

  but when I run the servlet from JBuilder6, it still gives me the same
messages

 " JRun server "c:/JRun4/servers/default" does not exist, the server root
null was not found. Please verify that the C:\JRun4\lib\servers.xml file
contains valid data for this server."

under the Project Properties, under the Run, under the Application
Parameter, I put in
' -start c:/JRun4/servers/default jrun.rootDir=c:/JRun4 '

do you think that would be the problem?

thanks again

regards

James
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, July 09, 2002 2:42 PM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> Are you able to start the default server from the command line? Such as
from jrun4_home
>
> jrun -start default
>
> If you can't do that, it means there is something wrong with your
servers.xml file.  Please open that file and see if the default server
section is correct as below.
>
> 
> default
> {jrun.home}/servers/default
> 
>
> Make sure the xml file is in the correct format.
>
> -Original Message-
> From: jamesguan [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 09, 2002 5:39 PM
> To: JRun-Talk
> Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> Dear John,
>  Thanks for the link!
>  I still have some problems to start the JRun server within
> JBuilder6.
>  I got the message like
>
>   "JRun server "c:/JRun4/servers/default" does not exist, the server
> root null was not found. Please verify that the C:\JRun4\lib\servers.xml
> file contains valid data for this server"
>
>please give me more information on this
>
> thanks
> regards
>
> James
> ----- Original Message -
> From: "John Zhao" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 11:54 AM
> Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> > "Getting Started with JRun 4.0" provides the instruction as to how to
> integrate your IDE with JRun 4.0.  Please refer to the link below.
> >
> >
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
> p#1120471
> >
> > You may follow the same instruction with JBuilder 6.0.  If you have
> further questions, please feel free to let me know.
> >
> > Regards,
> > John
> >
> > -Original Message-
> > From: jamesguan [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, July 09, 2002 2:42 PM
> > To: JRun-Talk
> > Subject: How To Configure JBuilder 6.0 for JRun Server 4.0
> >
> >
> > Could anyone there give me some suggestion on How To Configure JBuilder
> 6.0
> > for JRun Server 4.0
> >
> > James
> > - Original Message -
> > From: "André_Schneider" <[EMAIL PROTECTED]>
> > To: "JRun-Talk" <[EMAIL PROTECTED]>
> > Sent: Tuesday, July 09, 2002 9:47 AM
> > Subject: AW: Java
> >
> >
> > > hi there,
> > > try it with jdring
> > > you can get the package under http://webtools.dyade.fr/jdring/
> > > sample_code :
> > >
> > > import fr.dyade.jdring.*;
> > >
> > > public class CLASS extends HttpServlet
> > > {
> > > public void init()
> > > {
> > > AlarmManager mgr = new AlarmManager();
> > > try
> > > {
> > > // every day at 4:40 AM
> > > //   miute  houre day
> > > month  day_of_week  year
> > > //mgr.addAlarm( 30,4 , -1 , -1,-1
> > > ,-1  , new AlarmListener()
> > > //or
> > > //for every 60 minutes
> > > mgr.addAlarm(60, true, new AlarmListener()
> > > {
> > > public void handleAlarm(AlarmEntry
> > > entry)
> > > {
> > > try
> > > {
> > > CLASS_TO_RUN
> > > CLASS_TO_RUN = new CLASS_TO_RUN();
> > >
> > > CLASS_TO_RUN.doSomething();
> > > }
> > > catch(Exception ex)
> > > {}
> > > }
> > > });
> > > }
> > > catch(fr.dyade.jdring.PastDateException pE)
> > > {}
> > > }
> > >
> > > protected doGet(  ... )
> > > {...}
> > > }
> > >
> > > cu
> > >
> > > Andre
> > >
> > >
> > &

RE: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-09 Thread John Zhao

Are you able to start the default server from the command line? Such as from jrun4_home

jrun -start default

If you can't do that, it means there is something wrong with your servers.xml file.  
Please open that file and see if the default server section is correct as below.


default
{jrun.home}/servers/default


Make sure the xml file is in the correct format.

-Original Message-
From: jamesguan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 09, 2002 5:39 PM
To: JRun-Talk
Subject: Re: How To Configure JBuilder 6.0 for JRun Server 4.0


Dear John,
 Thanks for the link!
 I still have some problems to start the JRun server within
JBuilder6.
 I got the message like

  "JRun server "c:/JRun4/servers/default" does not exist, the server
root null was not found. Please verify that the C:\JRun4\lib\servers.xml
file contains valid data for this server"

   please give me more information on this

thanks
regards

James
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, July 09, 2002 11:54 AM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> "Getting Started with JRun 4.0" provides the instruction as to how to
integrate your IDE with JRun 4.0.  Please refer to the link below.
>
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
p#1120471
>
> You may follow the same instruction with JBuilder 6.0.  If you have
further questions, please feel free to let me know.
>
> Regards,
> John
>
> -Original Message-
> From: jamesguan [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 09, 2002 2:42 PM
> To: JRun-Talk
> Subject: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> Could anyone there give me some suggestion on How To Configure JBuilder
6.0
> for JRun Server 4.0
>
> James
> - Original Message -
> From: "André_Schneider" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 9:47 AM
> Subject: AW: Java
>
>
> > hi there,
> > try it with jdring
> > you can get the package under http://webtools.dyade.fr/jdring/
> > sample_code :
> >
> > import fr.dyade.jdring.*;
> >
> > public class CLASS extends HttpServlet
> > {
> > public void init()
> > {
> > AlarmManager mgr = new AlarmManager();
> > try
> > {
> > // every day at 4:40 AM
> > //   miute  houre day
> > month  day_of_week  year
> > //mgr.addAlarm( 30,4 , -1 , -1,-1
> > ,-1  , new AlarmListener()
> > //or
> > //for every 60 minutes
> > mgr.addAlarm(60, true, new AlarmListener()
> > {
> > public void handleAlarm(AlarmEntry
> > entry)
> > {
> > try
> > {
> > CLASS_TO_RUN
> > CLASS_TO_RUN = new CLASS_TO_RUN();
> >
> > CLASS_TO_RUN.doSomething();
> > }
> > catch(Exception ex)
> > {}
> > }
> > });
> > }
> > catch(fr.dyade.jdring.PastDateException pE)
> > {}
> > }
> >
> > protected doGet(  ... )
> > {...}
> > }
> >
> > cu
> >
> > Andre
> >
> >
> > -Ursprüngliche Nachricht-
> > Von: Kannaiyan P [mailto:[EMAIL PROTECTED]]
> > Gesendet: Dienstag, 9. Juli 2002 18:24
> > An: JRun-Talk
> > Betreff: Java
> >
> >
> > Hi
> >
> >   I have java application running on jrun application server 3.1 .
> >   java program is a Singleton(instance)class on the server. it always
> > running on the server. my question is i want to call
> >   to run(call) one of the method on the java program automatically at
> > particular time.
> >   please give some suggestion or if you have any sample code that would
> > be
> > very helpful for me.
> >
> > Thanks
> > kans
> >
> >
> >
> > From: "Haseltine, Celeste" <[EMAIL PROTECTED]>
> > Reply-To: [EMAIL PROTECTED]
> > To: JRun-Talk <[EMAIL PROTECTED]>
> > Subject: RE: Jrun 3.1 Cache HELP!!!
> > Date: Fri, 28 Jun 2002 11:57:45 -0500
> >
> > Michael,
> >
> > You have restart the JRUN 3.1 server in order for your Java class bean
> > revisions to become available to your application.  Unlike changes to
> > your
> > JSP's and servlets, where JRUN for the most part can "sense" that a JSP
> > or
> > servlet has been changed and recompile/reload it on the fly, your Java
> > beans
> > are loaded into server memory the first time they are called, and remain
> > in
> > memory until

Re: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-09 Thread jamesguan

Dear John,
 Thanks for the link!
 I still have some problems to start the JRun server within
JBuilder6.
 I got the message like

  "JRun server "c:/JRun4/servers/default" does not exist, the server
root null was not found. Please verify that the C:\JRun4\lib\servers.xml
file contains valid data for this server"

   please give me more information on this

thanks
regards

James
- Original Message -
From: "John Zhao" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, July 09, 2002 11:54 AM
Subject: RE: How To Configure JBuilder 6.0 for JRun Server 4.0


> "Getting Started with JRun 4.0" provides the instruction as to how to
integrate your IDE with JRun 4.0.  Please refer to the link below.
>
>
http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.js
p#1120471
>
> You may follow the same instruction with JBuilder 6.0.  If you have
further questions, please feel free to let me know.
>
> Regards,
> John
>
> -Original Message-
> From: jamesguan [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, July 09, 2002 2:42 PM
> To: JRun-Talk
> Subject: How To Configure JBuilder 6.0 for JRun Server 4.0
>
>
> Could anyone there give me some suggestion on How To Configure JBuilder
6.0
> for JRun Server 4.0
>
> James
> - Original Message -
> From: "André_Schneider" <[EMAIL PROTECTED]>
> To: "JRun-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, July 09, 2002 9:47 AM
> Subject: AW: Java
>
>
> > hi there,
> > try it with jdring
> > you can get the package under http://webtools.dyade.fr/jdring/
> > sample_code :
> >
> > import fr.dyade.jdring.*;
> >
> > public class CLASS extends HttpServlet
> > {
> > public void init()
> > {
> > AlarmManager mgr = new AlarmManager();
> > try
> > {
> > // every day at 4:40 AM
> > //   miute  houre day
> > month  day_of_week  year
> > //mgr.addAlarm( 30,4 , -1 , -1,-1
> > ,-1  , new AlarmListener()
> > //or
> > //for every 60 minutes
> > mgr.addAlarm(60, true, new AlarmListener()
> > {
> > public void handleAlarm(AlarmEntry
> > entry)
> > {
> > try
> > {
> > CLASS_TO_RUN
> > CLASS_TO_RUN = new CLASS_TO_RUN();
> >
> > CLASS_TO_RUN.doSomething();
> > }
> > catch(Exception ex)
> > {}
> > }
> > });
> > }
> > catch(fr.dyade.jdring.PastDateException pE)
> > {}
> > }
> >
> > protected doGet(  ... )
> > {...}
> > }
> >
> > cu
> >
> > Andre
> >
> >
> > -Ursprüngliche Nachricht-
> > Von: Kannaiyan P [mailto:[EMAIL PROTECTED]]
> > Gesendet: Dienstag, 9. Juli 2002 18:24
> > An: JRun-Talk
> > Betreff: Java
> >
> >
> > Hi
> >
> >   I have java application running on jrun application server 3.1 .
> >   java program is a Singleton(instance)class on the server. it always
> > running on the server. my question is i want to call
> >   to run(call) one of the method on the java program automatically at
> > particular time.
> >   please give some suggestion or if you have any sample code that would
> > be
> > very helpful for me.
> >
> > Thanks
> > kans
> >
> >
> >
> > From: "Haseltine, Celeste" <[EMAIL PROTECTED]>
> > Reply-To: [EMAIL PROTECTED]
> > To: JRun-Talk <[EMAIL PROTECTED]>
> > Subject: RE: Jrun 3.1 Cache HELP!!!
> > Date: Fri, 28 Jun 2002 11:57:45 -0500
> >
> > Michael,
> >
> > You have restart the JRUN 3.1 server in order for your Java class bean
> > revisions to become available to your application.  Unlike changes to
> > your
> > JSP's and servlets, where JRUN for the most part can "sense" that a JSP
> > or
> > servlet has been changed and recompile/reload it on the fly, your Java
> > beans
> > are loaded into server memory the first time they are called, and remain
> > in
> > memory until you reboot JRUN3.1.
> >
> > By the way, it is my understanding that this is no longer the case in
> > JRUN
> > 4.0.
> >
> > Celeste
> >
> > -Original Message-
> > From: Boogie Brown [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, June 28, 2002 11:55 AM
> > To: JRun-Talk
> > Subject: Jrun 3.1 Cache HELP!!!
> >
> >
> > To whom it may concern:
> >
> > I am referencing a bean  in Jrun 3.1 as shown below:
> > 
> > 
> >
> > however whenever I recompile the bean I am unable to see the updated
> > results
> >
> > of my bean.
> >
> > Please help. . .
> >
> > Thanks in advance.
> > Michael
> >
> >
> >
> >
> >
> >
> >
> >
>
> 
__
Get the JRun Web Application Construction Kit - the only book written specifically for 
JRun developers.
http://www.amazon.com/exec/obidos/ASIN/0789726009/houseoffusion
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How To Configure JBuilder 6.0 for JRun Server 4.0

2002-07-09 Thread John Zhao

"Getting Started with JRun 4.0" provides the instruction as to how to integrate your 
IDE with JRun 4.0.  Please refer to the link below.

http://livedocs.macromedia.com/jrun4docs/Getting_Started_with_JRun/intro6.jsp#1120471

You may follow the same instruction with JBuilder 6.0.  If you have further questions, 
please feel free to let me know.

Regards,
John

-Original Message-
From: jamesguan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 09, 2002 2:42 PM
To: JRun-Talk
Subject: How To Configure JBuilder 6.0 for JRun Server 4.0


Could anyone there give me some suggestion on How To Configure JBuilder 6.0
for JRun Server 4.0

James
- Original Message -
From: "André_Schneider" <[EMAIL PROTECTED]>
To: "JRun-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, July 09, 2002 9:47 AM
Subject: AW: Java


> hi there,
> try it with jdring
> you can get the package under http://webtools.dyade.fr/jdring/
> sample_code :
>
> import fr.dyade.jdring.*;
>
> public class CLASS extends HttpServlet
> {
> public void init()
> {
> AlarmManager mgr = new AlarmManager();
> try
> {
> // every day at 4:40 AM
> //   miute  houre day
> month  day_of_week  year
> //mgr.addAlarm( 30,4 , -1 , -1,-1
> ,-1  , new AlarmListener()
> //or
> //for every 60 minutes
> mgr.addAlarm(60, true, new AlarmListener()
> {
> public void handleAlarm(AlarmEntry
> entry)
> {
> try
> {
> CLASS_TO_RUN
> CLASS_TO_RUN = new CLASS_TO_RUN();
>
> CLASS_TO_RUN.doSomething();
> }
> catch(Exception ex)
> {}
> }
> });
> }
> catch(fr.dyade.jdring.PastDateException pE)
> {}
> }
>
> protected doGet(  ... )
> {...}
> }
>
> cu
>
> Andre
>
>
> -Ursprüngliche Nachricht-
> Von: Kannaiyan P [mailto:[EMAIL PROTECTED]]
> Gesendet: Dienstag, 9. Juli 2002 18:24
> An: JRun-Talk
> Betreff: Java
>
>
> Hi
>
>   I have java application running on jrun application server 3.1 .
>   java program is a Singleton(instance)class on the server. it always
> running on the server. my question is i want to call
>   to run(call) one of the method on the java program automatically at
> particular time.
>   please give some suggestion or if you have any sample code that would
> be
> very helpful for me.
>
> Thanks
> kans
>
>
>
> From: "Haseltine, Celeste" <[EMAIL PROTECTED]>
> Reply-To: [EMAIL PROTECTED]
> To: JRun-Talk <[EMAIL PROTECTED]>
> Subject: RE: Jrun 3.1 Cache HELP!!!
> Date: Fri, 28 Jun 2002 11:57:45 -0500
>
> Michael,
>
> You have restart the JRUN 3.1 server in order for your Java class bean
> revisions to become available to your application.  Unlike changes to
> your
> JSP's and servlets, where JRUN for the most part can "sense" that a JSP
> or
> servlet has been changed and recompile/reload it on the fly, your Java
> beans
> are loaded into server memory the first time they are called, and remain
> in
> memory until you reboot JRUN3.1.
>
> By the way, it is my understanding that this is no longer the case in
> JRUN
> 4.0.
>
> Celeste
>
> -Original Message-
> From: Boogie Brown [mailto:[EMAIL PROTECTED]]
> Sent: Friday, June 28, 2002 11:55 AM
> To: JRun-Talk
> Subject: Jrun 3.1 Cache HELP!!!
>
>
> To whom it may concern:
>
> I am referencing a bean  in Jrun 3.1 as shown below:
> 
> 
>
> however whenever I recompile the bean I am unable to see the updated
> results
>
> of my bean.
>
> Please help. . .
>
> Thanks in advance.
> Michael
>
>
>
>
>
>
>
> 

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
Archives: http://www.mail-archive.com/jrun-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists