You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "viola.lu (JIRA)" <ji...@apache.org> on 2010/12/03 09:13:11 UTC

[jira] Commented: (GERONIMO-5615) Failed to deploy war files after putting server directory under "C:\Documents and Settings\myDir"

    [ https://issues.apache.org/jira/browse/GERONIMO-5615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12966447#action_12966447 ] 

viola.lu commented on GERONIMO-5615:
------------------------------------

Hi, Daivd:
 i tried the patch you provided, this will break the system-database module build on windows xp & 2003.

In geronimo 2.2, this statement is not executed coz that jarURLRewrite is set to false as below:
 jarUrlRewrite = new Boolean(System.getProperty("org.apache.geronimo.deployment.util.DeploymentUtil.jarUrlRewrite", "false"));
In geronimo 3.0 this is set to true
 //Why not always set this with true ? Online deployer also lock the jar files
        jarUrlRewrite = new Boolean(System.getProperty("org.apache.geronimo.kernel.util.JarUtils.jarUrlRewrite", "true"));

If replacement and URLDecoder are not good options. Revert jarURLRewrite to false, can be a workaround.

> Failed to deploy war files after putting server directory under "C:\Documents and Settings\myDir"
> -------------------------------------------------------------------------------------------------
>
>                 Key: GERONIMO-5615
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-5615
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: documentation
>    Affects Versions: 3.0
>         Environment: OS: Windows XP SP3
>            Reporter: Chris Zhang
>            Assignee: viola.lu
>            Priority: Minor
>             Fix For: 3.0
>
>         Attachments: G5615.patch, GERONIMO-5615-2.patch
>
>
> The steps to recur are:
> (1) Create a directory called myDir under "C:\Documents and Settings"
> (2) Put the geronimo server directory under "C:\Documents and Settings\myDir".  Now the server root directory is "C:\Documents and Settings\myDir\g". 
> (3) Start the server and  login to the admin console.
> (4) Deploy a war file and some exceptions thrown.
> The exception information is:
>  
> 2010-09-20 16:33:48,329 ERROR [DeploymentPortlet] The application was not deployed.
> Unable to create configuration for deployment: dependencies: null
> org.apache.geronimo.common.DeploymentException: Unable to create configuration for deployment: dependencies: null
> 	at org.apache.geronimo.deployment.DeploymentContext.createTempConfiguration(DeploymentContext.java:208)
> 	at org.apache.geronimo.deployment.DeploymentContext.initializeConfiguration(DeploymentContext.java:188)
> 	at org.apache.geronimo.j2ee.deployment.EARConfigBuilder.buildConfiguration(EARConfigBuilder.java:615)
> 	at org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:250)
> 	at org.apache.geronimo.deployment.Deployer.deploy(Deployer.java:138)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> 	at java.lang.reflect.Method.invoke(Method.java:600)
> 	at org.apache.geronimo.gbean.runtime.ReflectionMethodInvoker.invoke(ReflectionMethodInvoker.java:34)
> 	at org.apache.geronimo.gbean.runtime.GBeanOperation.invoke(GBeanOperation.java:131)
> 	at org.apache.geronimo.gbean.runtime.GBeanInstance.invoke(GBeanInstance.java:872)
> 	at org.apache.geronimo.kernel.basic.BasicKernel.invoke(BasicKernel.java:245)
> 	at org.apache.geronimo.deployment.plugin.local.AbstractDeployCommand.doDeploy(AbstractDeployCommand.java:116)
> 	at org.apache.geronimo.deployment.plugin.local.DistributeCommand.run(DistributeCommand.java:61)
> 	at java.lang.Thread.run(Thread.java:736)
> Caused by: org.osgi.framework.BundleException: An error occurred trying to read the bundle
> 	at org.eclipse.osgi.internal.baseadaptor.BundleInstall.begin(BundleInstall.java:94)
> 	at org.eclipse.osgi.framework.internal.core.Framework.installWorkerPrivileged(Framework.java:922)
> 	at org.eclipse.osgi.framework.internal.core.Framework$1.run(Framework.java:838)
> 	at java.security.AccessController.doPrivileged(AccessController.java:251)
> 	at org.eclipse.osgi.framework.internal.core.Framework.installWorker(Framework.java:889)
> 	at org.eclipse.osgi.framework.internal.core.Framework.installBundle(Framework.java:833)
> 	at org.eclipse.osgi.framework.internal.core.BundleContextImpl.installBundle(BundleContextImpl.java:167)
> 	at org.eclipse.osgi.framework.internal.core.BundleContextImpl.installBundle(BundleContextImpl.java)
> 	at org.apache.geronimo.deployment.DeploymentContext.createTempConfiguration(DeploymentContext.java:200)
> 	... 15 more
> Caused by: java.io.FileNotFoundException: C:\Documents%20and%20Settings\myDir\geronimo-tomcat7-javaee6-3.0-SNAPSHOT\var\temp\geronimo-fileutils3448848740305009830.tmpfile
> 	at org.eclipse.osgi.framework.internal.protocol.reference.ReferenceURLConnection.connect(ReferenceURLConnection.java:46)
> 	at org.eclipse.osgi.framework.internal.protocol.reference.ReferenceURLConnection.getInputStream(ReferenceURLConnection.java:61)
> 	at org.eclipse.osgi.internal.baseadaptor.BundleInstall.begin(BundleInstall.java:56)
> 	... 23 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.