You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@servicemix.apache.org by "Eric Dofonsou (JIRA)" <ji...@apache.org> on 2007/01/09 21:03:49 UTC

[jira] Created: (SM-808) Servicemix jboss deployer

Servicemix jboss deployer
-------------------------

                 Key: SM-808
                 URL: https://issues.apache.org/activemq/browse/SM-808
             Project: ServiceMix
          Issue Type: Bug
         Environment: JBoss 4.0.5 GA
            Reporter: Eric Dofonsou
             Fix For: 3.1


The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.

Adding the jar to the .sar file fixed the issue.

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

        

RE : [jira] Commented: (SM-808) Servicemix jboss deployer

Posted by ke...@yahoo.fr.
Thanks could you please create a svn diff onto your
code and attach it into this jira. 


--- "Eric Dofonsou (JIRA)" <ji...@apache.org> a écrit :

> 
>     [
>
https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37887
> ] 
> 
> Eric Dofonsou commented on SM-808:
> ----------------------------------
> 
> Okay here are the two functinothat I've modified :
> 
> --------------
>     public SAXSource toSAXSourceFromDOM(DOMSource
> source) throws TransformerException {
>         StringWriter buffer = new StringWriter();
>         toResult(source, new StreamResult(buffer));
>         StringReader reader = new
> StringReader(buffer.getBuffer().toString());
>         return new SAXSource(new
> InputSource(reader));
>     }
> 
>     public Node toDOMNodeFromSAX(SAXSource source)
> throws ParserConfigurationException, IOException,
> SAXException, TransformerException {
> 
>         StringWriter buffer = new StringWriter();
>         toResult(source, new StreamResult(buffer));
>         StringReader reader = new
> StringReader(buffer.getBuffer().toString());
>         Document doc =
>
getDocumentBuilderFactory().newDocumentBuilder().parse(new
> InputSource(reader));
>         return doc;
>     }
> --------------
> 
> They both use the toResult fonction like you
> suggested guillaume, I no longer need to add the
> "full" version of xalan in my jboss lib.  Is this
> correct ? it works fine for me now.
> 
> Eric,
> 
> > Servicemix jboss deployer
> > -------------------------
> >
> >                 Key: SM-808
> >                 URL:
> https://issues.apache.org/activemq/browse/SM-808
> >             Project: ServiceMix
> >          Issue Type: Bug
> >         Environment: JBoss 4.0.5 GA
> >            Reporter: Eric Dofonsou
> >             Fix For: 3.1
> >
> >
> > The servicemix-jboss-deployer-3.1-SNAPSHOT.sar
> file generated by the jboss depolyer  does not
> include the xalan-2.7.0.jar file in the lib.  This
> is required by servicemix and is not included in
> jboss.
> > Adding the jar to the .sar file fixed the issue.
> 
> -- 
> This message is automatically generated by JIRA.
> -
> If you think it was sent incorrectly contact one of
> the administrators:
>
https://issues.apache.org/activemq/secure/Administrators.jspa
> -
> For more information on JIRA, see:
> http://www.atlassian.com/software/jira
> 
>         
> 



	

	
		
___________________________________________________________________________ 
Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! 
Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses 
http://fr.answers.yahoo.com

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Eric Dofonsou (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37887 ] 

Eric Dofonsou commented on SM-808:
----------------------------------

Okay here are the two functinothat I've modified :

--------------
    public SAXSource toSAXSourceFromDOM(DOMSource source) throws TransformerException {
        StringWriter buffer = new StringWriter();
        toResult(source, new StreamResult(buffer));
        StringReader reader = new StringReader(buffer.getBuffer().toString());
        return new SAXSource(new InputSource(reader));
    }

    public Node toDOMNodeFromSAX(SAXSource source) throws ParserConfigurationException, IOException, SAXException, TransformerException {

        StringWriter buffer = new StringWriter();
        toResult(source, new StreamResult(buffer));
        StringReader reader = new StringReader(buffer.getBuffer().toString());
        Document doc = getDocumentBuilderFactory().newDocumentBuilder().parse(new InputSource(reader));
        return doc;
    }
--------------

They both use the toResult fonction like you suggested guillaume, I no longer need to add the "full" version of xalan in my jboss lib.  Is this correct ? it works fine for me now.

Eric,

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Guillaume Nodet (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37859 ] 

Guillaume Nodet commented on SM-808:
------------------------------------

If you look at the org.apache.servicemix.jbi.jaxp.SourceTransformer.toDOMNodeFromSAX
method (and another one), you will see that they use Xalan internal classes (the ones
that throws a CNFE for you).

Such calls could be replated (if these class are not in the classloader) by calls to the
toResult(Source, Result) method which only uses the standard JAXP API.

This is just about removing the "org.apache.xalan.xsltc.trax.*" imports
from the SourceTransformer class.

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Updated: (SM-808) Remove Xalan dependency in SourceTransformer (was: Servicemix jboss deployer)

Posted by "Guillaume Nodet (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Guillaume Nodet updated SM-808:
-------------------------------

    Summary: Remove Xalan dependency in SourceTransformer (was: Servicemix jboss deployer)  (was: Servicemix jboss deployer)

> Remove Xalan dependency in SourceTransformer (was: Servicemix jboss deployer)
> -----------------------------------------------------------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>         Attachments: SourceTransformer.diff
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Eric Dofonsou (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37847 ] 

Eric Dofonsou commented on SM-808:
----------------------------------

Here is the final status.

I've had to copy the file to my $JBOSS_HOME/server/{servername}/lib folder.  The file was not present in my version of Jboss 4.0.5 GA must be because of the option I've selected when installing jboss (EJB3 not clustered).

So my next question is since it's not guaranteed that this file would be included in the lib path of JBoss isn't it better to always include it ?  And suff like common loggin which are guaranteed to be there removed ?

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Eric Dofonsou (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37888 ] 

Eric Dofonsou commented on SM-808:
----------------------------------

I've included my diff file as attachement

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>         Attachments: SourceTransformer.diff
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Eric Dofonsou (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37851 ] 

Eric Dofonsou commented on SM-808:
----------------------------------

Yes indeed it is there, however is till get the following error when I send a request to my endpoint :

------------
10:05:49,687 ERROR [STDERR] Exception in thread "pool-flow.seda.servicemix-http-thread-1" 
10:05:49,694 ERROR [STDERR] java.lang.NoClassDefFoundError: org/apache/xalan/xsltc/trax/SAX2DOM
10:05:49,695 ERROR [STDERR] 	at org.apache.servicemix.jbi.jaxp.SourceTransformer.toDOMNodeFromSAX(SourceTransformer.java:248)
10:05:49,695 ERROR [STDERR] 	at org.apache.servicemix.jbi.jaxp.SourceTransformer.toDOMSourceFromSAX(SourceTransformer.java:244)
10:05:49,695 ERROR [STDERR] 	at org.apache.servicemix.jbi.jaxp.SourceTransformer.toDOMSource(SourceTransformer.java:134)
10:05:49,695 ERROR [STDERR] 	at org.apache.servicemix.jbi.jaxp.SourceTransformer.toDOMNode(SourceTransformer.java:277)
------------

The xalan.jar that is in the lib/endorsed of JBoss does not include the missing SAX2DOM class. Do we have a version/trimmed dow  issue here ?

The only way i've managed to solve this issue is to either include the xalan-2.7.0.jar from the maven repository in the servicemix.sar file or in the server/{servername}/lib folder.

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Guillaume Nodet (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37852 ] 

Guillaume Nodet commented on SM-808:
------------------------------------

Maybe a better way would to remove the hard dependency that SourceTransformer has on xalan
and use introspection to check if these classes are available, else default to some JAXP standard
mechanism ...   Fancy writing a patch for that ?

Else, I guess we need to include the xalan jar in the sar, but i'd rather be able to remove this
dependency.

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Guillaume Nodet (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37848 ] 

Guillaume Nodet commented on SM-808:
------------------------------------

I doubt xalan, xerces installation depends on any option.
Here is the content of my lib folder

{code}
gnodet@guillaumes /jbin/jboss-4.0.5.GA
$ ls -la lib/*
-rwxrwxrwx  1 gnodet None 221K Oct 23 19:00 lib/commons-httpclient.jar*
-rwxrwxrwx  1 gnodet None  45K Oct 23 19:00 lib/commons-logging.jar*
-rwxrwxrwx  1 gnodet None 167K Oct 23 18:59 lib/concurrent.jar*
-rwxrwxrwx  1 gnodet None  11K Oct 23 18:59 lib/getopt.jar*
-rwxrwxrwx  1 gnodet None 387K Oct 23 19:00 lib/jboss-common.jar*
-rwxrwxrwx  1 gnodet None 861K Oct 23 18:59 lib/jboss-jmx.jar*
-rwxrwxrwx  1 gnodet None 254K Oct 23 18:59 lib/jboss-system.jar*
-rwxrwxrwx  1 gnodet None 339K Oct 23 19:00 lib/jboss-xml-binding.jar*
-rwxrwxrwx  1 gnodet None 116K Oct 23 18:59 lib/log4j-boot.jar*
-rwxrwxrwx  1 gnodet None 2.6K Oct 23 19:00 lib/namespace.jar*
-rwxrwxrwx  1 gnodet None 129K Oct 23 19:00 lib/webdavlib.jar*

lib/endorsed:
total 3.3M
drwxrwxrwx+ 2 gnodet None    0 Oct 23 19:00 ./
drwxrwxrwx+ 3 gnodet None    0 Oct 23 19:00 ../
-rwx------+ 1 gnodet None  59K Oct 23 19:00 resolver.jar*
-rwx------+ 1 gnodet None 185K Oct 23 19:00 serializer.jar*
-rwx------+ 1 gnodet None 1.7M Oct 23 19:00 xalan.jar*
-rwx------+ 1 gnodet None 1.2M Oct 23 19:00 xercesImpl.jar*
-rwx------+ 1 gnodet None 190K Oct 23 19:00 xml-apis.jar*
{code}

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Grégoire A. (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37842 ] 

Grégoire A. commented on SM-808:
--------------------------------

Jboss includes xalan lib in $JBOSS_HOME/lib
2.7.0 version is indicated  into  manifest file

could you please notice more details ?

FYI: JBoss 4.0.5

but i think we don't have anymore need  common-logging and log4j either.


> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

       

[jira] Updated: (SM-808) Servicemix jboss deployer

Posted by "Eric Dofonsou (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Eric Dofonsou updated SM-808:
-----------------------------

    Attachment: SourceTransformer.diff

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>         Attachments: SourceTransformer.diff
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Eric Dofonsou (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37857 ] 

Eric Dofonsou commented on SM-808:
----------------------------------

I've done a quick check online for the jboss version of Xalan seems to be missing the xsltc part : 
http://jira.jboss.com/jira/browse/JBAS-2155

Judging from the size of the files, the one with jboss version is only 1.7 meg while the one in servicemix repository is 2 megs.

{quote}
--(ewrick@erd-ubuntu)-(/media/DATA/devtools/jboss-4.0.5.GA/lib/endorsed)--
--(1045:Wed,10 Jan 07:$)-- ls -al xalan.jar 
-rwxrwx--- 1 root plugdev 1713696 2006-12-19 14:38 xalan.jar
--(ewrick@erd-ubuntu)-(/media/DATA/devtools/jboss-4.0.5.GA/lib/endorsed)--
--(1048:Wed,10 Jan 07:$)-- ls -al ~/.m2/repository/xalan/xalan/2.7.0/xalan-2.7.0.jar
-rw-r--r-- 1 ewrick ewrick 2730442 2006-12-18 09:41 /home/ewrick/.m2/repository/xalan/xalan/2.7.0/xalan-2.7.0.jar
--(ewrick@erd-ubuntu)-(/media/DATA/devtools/jboss-4.0.5.GA/lib/endorsed)--
{quote}

What do you mean by removing that hard dependency ?  do you want to provide an external document builder wrapper around xalan ?

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Commented: (SM-808) Servicemix jboss deployer

Posted by "Eric Dofonsou (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_37843 ] 

Eric Dofonsou commented on SM-808:
----------------------------------

humm I also have 4.0.5 GA, with the EJB3 install and that does not have xalan, must my install  procedure then.  I will try coping it in the lib folder and see


Indded the log files should be removed.

> Servicemix jboss deployer
> -------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>             Fix For: 3.1
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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

        

[jira] Resolved: (SM-808) Remove Xalan dependency in SourceTransformer (was: Servicemix jboss deployer)

Posted by "Guillaume Nodet (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/SM-808?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Guillaume Nodet resolved SM-808.
--------------------------------

    Resolution: Fixed
      Assignee: Guillaume Nodet

Author: gnodet
Date: Thu Jan 11 07:00:30 2007
New Revision: 495245

URL: http://svn.apache.org/viewvc?view=rev&rev=495245
Log:
SM-808: Remove Xalan dependency in SourceTransformer
Thanks to Eric Dofonsu !

Modified:
   incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/jaxp/SourceTransformer.java
   incubator/servicemix/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/jaxp/StAXSourceTransformer.java
   incubator/servicemix/trunk/core/servicemix-core/src/test/java/org/apache/servicemix/jbi/jaxp/StaxSourceTest.java


I have slightly modified your patch to keep the xalan optimization if available on the classpath.
Thanks !

> Remove Xalan dependency in SourceTransformer (was: Servicemix jboss deployer)
> -----------------------------------------------------------------------------
>
>                 Key: SM-808
>                 URL: https://issues.apache.org/activemq/browse/SM-808
>             Project: ServiceMix
>          Issue Type: Bug
>         Environment: JBoss 4.0.5 GA
>            Reporter: Eric Dofonsou
>         Assigned To: Guillaume Nodet
>             Fix For: 3.1
>
>         Attachments: SourceTransformer.diff
>
>
> The servicemix-jboss-deployer-3.1-SNAPSHOT.sar file generated by the jboss depolyer  does not include the xalan-2.7.0.jar file in the lib.  This is required by servicemix and is not included in jboss.
> Adding the jar to the .sar file fixed the issue.

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