I want to create a JMSProvider object with a custom classpath. Here's how I'm doing it in jython:
... classpath = "a.jar:b.jar:c.jar".replace(":", "\n") properties = [ ['name', name], ['description', description], ['classpath', classpath], ['externalInitialContextFactory', externalInitialContextFactory], ['externalProviderURL', externalProviderURL], ['nativepath',[]], ['supportsASF','true'] ] AdminConfig.create('JMSProvider', node, properties) AdminConfig.save()
The JMSProvider is created, but the classpath variable has the newlines escaped:
a.jar\nb.jar\nc.jar
How can I tell wsadmin to not escape the newlines?