My maven var now looks like this MAVEN_OPTS=-Xmx768m I put the path to the local repository into servicemix.xml: <localRepository>D:/java/.m2/repository</localRepository> Interesting, the bug has disapeared :-) Looks like maven treats the settings in the variable different to the one in settings.xml But ... you might guess it ... still an issue. The next error message is this: No endpoints found
2008-03-29 15:08:40,250 [main ] ERROR DeploymentService - Error deploying service assembly java.lang.Exception: <?xml version="1.0" encoding="UTF-8"?> <jbi-task xmlns="http://java.sun.com/xml/ns/jbi/management-message" version="1.0"> <jbi-task-result> <frmwk-task-result> <frmwk-task-result-details> <task-result-details> <task-id>deploy</task-id> <task-result>FAILED</task-result> <message-type>ERROR</message-type> </task-result-details> </frmwk-task-result-details> </frmwk-task-result> <component-task-result xmlns="http://java.sun.com/xml/ns/jbi/management-message"> <component-name>servicemix-cxf-bc</component-name> <component-task-result-details> <task-result-details> <task-id>deploy</task-id> <task-result>FAILED</task-result> <message-type>ERROR</message-type> <task-status-msg> <msg-loc-info> <loc-token/> <loc-message>No endpoints found</loc-message> </msg-loc-info> </task-status-msg> </task-result-details> </component-task-result-details> </component-task-result> <component-task-result xmlns="http://java.sun.com/xml/ns/jbi/management-message"> <component-name>servicemix-cxf-se</component-name> <component-task-result-details> <task-result-details> <task-id>deploy</task-id> <task-result>FAILED</task-result> <message-type>ERROR</message-type> <task-status-msg> <msg-loc-info> <loc-token/> <loc-message>No endpoints found</loc-message> </msg-loc-info> </task-status-msg> </task-result-details> </component-task-result-details> </component-task-result> <component-task-result xmlns="http://java.sun.com/xml/ns/jbi/management-message"> <component-name>servicemix-saxon</component-name> <component-task-result-details> <task-result-details> <task-id>deploy</task-id> <task-result>FAILED</task-result> <message-type>ERROR</message-type> <task-status-msg> <msg-loc-info> <loc-token/> <loc-message>No endpoints found</loc-message> </msg-loc-info> </task-status-msg> </task-result-details> </component-task-result-details> </component-task-result> </jbi-task-result> </jbi-task> I don't know what this means. My Spring config looks like this: <sm:container generateRootDir="true"> <sm:deployments> <sm:installSharedLibrary groupId="org.apache.servicemix" artifactId="servicemix-shared" version="3.3-SNAPSHOT"/> <sm:installComponent groupId="org.apache.servicemix" artifactId="servicemix-cxf-bc" version="3.3-SNAPSHOT"/> <sm:installComponent groupId="org.apache.servicemix" artifactId="servicemix-cxf-se" version="3.3-SNAPSHOT"/> <sm:installComponent groupId="org.apache.servicemix" artifactId="servicemix-saxon" version="3.3-SNAPSHOT"/> <sm:deployServiceAssembly groupId="my.components.order.service" artifactId="orderservice-cxf-sa" version="1.0-SNAPSHOT"/> </sm:deployments> </sm:container> Inside my orderservice-cxf-sa I use cxf-bc, se and saxon. Once again help needed, please. -- View this message in context: http://www.nabble.com/Integration-Test%3A-UnknownHostException-tp16278375s12049p16375022.html Sent from the ServiceMix - User mailing list archive at Nabble.com.
