Holger Dewes a �crit : > > My portlet IDs look like this: P-f931072105-10006 > > So where does the second "-" come from?
+1 for you, it is actually hard-coded :( org.apache.jetspeed.services.idgenerator.JetspeedIdGeneratorService public String getNextPeid() ... return peidPrefix + Long.toHexString(System.currentTimeMillis()) + "-" + Long.toHexString(newid) + peidSuffix; So this can't work, unless you change this hardcode, which I'm unsure about consequences... Aurelien --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
