That needs to be fixed the file pm level. encode the ':' into something valid.
Regards, Hiram >From: Adrian Brock <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: Re: [JBoss-dev] CVS update: jbossmq/src/main/org/jboss/mq/server >JMSServer. >Date: Thu, 28 Mar 2002 19:14:06 -0600 > >Hi, > >This breaks on Windows :-( > >The id is used as a file name in file persistence. >You are not allowed a : in the file name for windows. > >Regards, >Adrian > > > User: lqd > > Date: 02/03/25 22:55:34 > > > > Modified: src/main/org/jboss/mq/server > > r JMSServer.java > > Log: > > Fix for bug #533824. JMS spec requoires the > > e MessageID to be prefixed > > with 'ID:' instead of just 'ID' > > > > Revision Changes Path > > 1.17 +2 -2 > > 2 > > > > > > > > jbossmq/src/main/org/jboss/mq/server/JMSServer.java > > > > Index: JMSServer.java > > > > ===================================================== > > ============= > > RCS file: > > : > > /cvsroot/jboss/jbossmq/src/main/org/jboss/mq/server/JM > > Server.java,v > > retrieving revision 1.16 > > retrieving revision 1.17 > > diff -u -r1.16 -r1.17 > > --- JMSServer.java 9 Mar 2002 15:32:34 -0000 1.16 > > +++ JMSServer.java 26 Mar 2002 06:55:34 -0000 1.17 > > @@ -52,7 +52,7 @@ > > * @author Hiram Chirino > > ino ([EMAIL PROTECTED]) > > * @author David Maplesden > > den ([EMAIL PROTECTED]) > > * @author <a href="mailto:[EMAIL PROTECTED]">Peter > > ter Antman</a> > > - * @version $Revision: 1.16 $ > > + * @version $Revision: 1.17 $ > > */ > > public class JMSServer implements JMSServerInvoker > > { > > @@ -239,7 +239,7 @@ > > { > > synchronized (idLock) > > { > > - ID = "ID" + (new > > w Integer(lastID++).toString()); > > + ID = "ID:" + (new > > w Integer(lastID++).toString()); > > } > > stateManager.addLoggedOnClientId(ID); > > break; > > > > > > > > > > _______________________________________________ > > Jboss-development mailing list > > [EMAIL PROTECTED] > > https://lists.sourceforge.net/lists/listinfo/jboss-dev > > lopment > > >_________________________________________________________ >View thread online: http://main.jboss.org/thread.jsp?forum=66&thread=11593 > >_______________________________________________ >Jboss-development mailing list >[EMAIL PROTECTED] >https://lists.sourceforge.net/lists/listinfo/jboss-development _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. _______________________________________________ Jboss-development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
