[arquillian-issues] [JBoss JIRA] Updated: (ARQ-192) Install OSGi bundles in memory

Andrew Lee Rubinger (JIRA) jira-events at lists.jboss.org
Fri Jun 25 18:34:46 EDT 2010


     [ https://jira.jboss.org/browse/ARQ-192?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andrew Lee Rubinger updated ARQ-192:
------------------------------------

    JBoss Forum Reference: https://community.jboss.org/message/549491


> Install OSGi bundles in memory
> ------------------------------
>
>                 Key: ARQ-192
>                 URL: https://jira.jboss.org/browse/ARQ-192
>             Project: Arquillian
>          Issue Type: Task
>          Components: OSGi Containers
>            Reporter: Thomas Diesler
>
> Currently the OSGiDeploymentPackager transforms a JavaArchive into a VF
>    private VirtualFile toVirtualFile(Archive<?> archive) throws IOException, MalformedURLException
>    {
>       // [TODO] Can this be done in memory?
>       ZipExporter exporter = archive.as(ZipExporter.class);
>       String archiveName = archive.getName();
>       int dotIndex = archiveName.lastIndexOf(".");
>       if (dotIndex > 0)
>          archiveName = archiveName.substring(0, dotIndex);
>       File target = File.createTempFile(archiveName + "-", ".jar");
>       exporter.exportZip(target, true);
>       target.deleteOnExit();
>       return AbstractVFS.getRoot(target.toURI().toURL());
>    }
> We should be able to install the Archive directly and in-memory

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the arquillian-issues mailing list