DO NOT REPLY [Bug 7638] - Service Name in Windows has space

2002-04-04 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7638.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7638

Service Name in Windows has space

[EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|Normal  |Enhancement
  Component|Unknown |Installable Packages
 OS/Version|Windows XP  |Windows NT/2K
   Priority|Other   |Low



--- Additional Comments From [EMAIL PROTECTED]  2002-04-04 21:29 ---
AFAIK, this is not illegal. There's a space because of a limitation in
JavaService (where you can't set the service description).

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




DO NOT REPLY [Bug 7638] - Service Name in Windows has space

2002-03-30 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7638.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7638

Service Name in Windows has space





--- Additional Comments From [EMAIL PROTECTED]  2002-03-30 23:42 ---
I believe your problem is due to incorrect usage of the arg value=/ element
in ant's exec/ task.

Try replacing the following:

exec
  args value='ssh trujillo NET STOP quot;Apache Tomcatquot;'/
/exec

with the following:

exec executable=ssh/
  arg value=trujillo/
  arg value=NET/
  arg value=STOP/
  arg value=Apache Tomcat/
/exec

The above will execute ssh with 4 arguments. The 4th argument will be Apache
Tomcat.

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]