[JBoss-user] [Beginners Corner] - Re: remote deployment

2006-02-26 Thread sushant248
exactly. That is what i'm doing - redeploying my whole ear but it is not 
working. Scanner shows that new deployment has happened with the same ear name 
but it keeps showing the old jsps (as if it has cached them). If i go to the 
work directory n see the jsp there, it too doesn't have the changes of new ear. 
What else could be the reason that it doesn't get hot deployed? I haven't 
changed any of the jboss-service.xml etc files

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3926362#3926362

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3926362


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: remote deployment

2006-02-24 Thread the-gtm
You should NEVER touch files in the work dir, this is a JBoss. If you need to 
redeploy a war that's in an ear, you've got to redploy the whole ear.

To disable hot deploy 

!-- An mbean for hot deployment/undeployment of archives. 
  | -- 
  | mbean code=org.jboss.deployment.scanner.URLDeploymentScanner 
  | name=jboss.deployment:type=DeploymentScanner,flavor=URL 
  | ... 
  | 
  | attribute name=ScanPeriod5000/attribute 
  | attribute name=ScanEnabledFalse/attribute 
  | ... 
  | /mbean 
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3926034#3926034

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3926034


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: remote deployment

2006-02-21 Thread the-gtm
Edit jboss-service.xml under server/xxx/conf to disable hot deploy.
shutown.bat/shutdown.sh

You should read the docs ...

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3925448#3925448

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3925448


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: remote deployment

2006-02-20 Thread the-gtm
You just have to drop the ear (or sar or whatever) and voila it is deployed. No 
authentification is required by JBoss to do that.
If you want to secure this, you can either disable hot deployment or restrict 
write access to the deploy dir.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3925126#3925126

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3925126


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: remote deployment

2006-02-20 Thread sushant248
Thanks. How do i disable hot deployment? in that case how do i remotely stop 
the server from command prompt?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3925193#3925193

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3925193


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: remote deployment

2006-02-19 Thread sushant248
Please tell me where should i put the authentication while doing the deployment 
on remote server? JBoss suppots hot deployment (i can see the deployment 
scanner logs in the console), but like weblogic where i provide the username / 
pswd while doing a deployment from local machine onto a server, where do i 
mention that for JBoss? 
Is there any command which i can run on DOS prompt where i can give 
authentication info as argument?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3924954#3924954

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3924954


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: remote deployment

2006-02-15 Thread sushant248
cheers mate. Didn't realise it was that easy and hot deployment was supported. 
I might need to bring down the server to rename (keep a copy of) deployed ear 
before I copy my ear. 
Weblogic.Admin and Wsadmin (of Websphere) start/stop remote server from local 
console but the execution of command takes place on the remote server i.e logs 
etc are there on server. I'm sure with JBoss too, I can start/stop server from 
my local machine.
Your help is greatly appreciated.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3923866#3923866

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3923866


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: remote deployment

2006-02-14 Thread the-gtm
This is the easy part with JBoss : you just have to drop the ear in the deploy 
dir ! Use FTP, NFS or whatever is avaible to copy a file on a remote host

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3923804#3923804

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3923804


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: remote deployment

2005-07-20 Thread vashistvishal
I'm not sure about eclispe as u might be using some plugin like wtp or JBoss 
IDE. You will have to check what settings/configurations needed for that.

In JBoss you can deploy remotely.
What you have to do is to goto
anonymous wrote : conf/jboss-service.xml file

Look for...

  | attribute 
name=URLComparatororg.jboss.deployment.DeploymentSorter/attribute
  | 
and under that there is a subsection for deploy and you can add the remote url 
to deploy



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3885646#3885646

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3885646


---
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477alloc_id=16492op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user