Hi Sergey,

The attachment is my test result of systests2/single-bundle(after
applying DOSGi-106 patch) and during test, single-bundle tests are not
hanging, and anything looks fine.

Please seeing the attachment.

Thanks
--Tang

Tang Yong wrote:
> Hi Sergey,
> 
>> This is actually to do with HttpService not visible from within the
>> single bundle distro - you fixed it last time by adding a Jetty internal
>> activator to the activators list - while this is an open issue it is
>> still not a blocking issue for the release I would say.
> Yes, I see.
> 
>> https://issues.apache.org/jira/browse/DOSGI-106
> OK, I have seen it and thanks.
> 
>> Only problem:
>> single-bundle tests are hanging with this update - which is most likely
>> a test issue (old pax dependencies).
> I will see whether in my local env, single-bundle tests are hanging or
> not. Once hanging, I will tell you and investigate it.
> 
> Thanks
> --Tang
> 
> Sergey Beryozkin wrote:
>> Hi Tang
>> On 24/12/12 03:06, Tang Yong wrote:
>>> Hi Sergey,
>>>
>>> I have updated my local source with trunk and modified greeter demo, and
>>> added "org.apache.cxf.ws.httpservice.context" property.
>>>
>>> While deploying modified greeter demo, on single-bundle scene, the same
>>> issue happened again just as you said:
>>>
>>> org.osgi.framework.ServiceException: CXF DOSGi: problem registering CXF
>>> HTTP Servlet
>>>          at
>>> org.apache.cxf.dosgi.dsw.handlers.HttpServiceManager.registerServletAndGetBus(HttpServiceManager.java:82)
>>>          at
>>> org.apache.cxf.dosgi.dsw.handlers.PojoConfigurationTypeHandler.createServer(PojoConfigurationTypeHandler.java:100)
>>> ...
>>>          at java.lang.Thread.run(Thread.java:722)
>>> Caused by: java.lang.RuntimeException: No HTTPService found
>>>          at
>>> org.apache.cxf.dosgi.dsw.handlers.HttpServiceManager.getHttpService(HttpServiceManager.java:90)
>>>          at
>>> org.apache.cxf.dosgi.dsw.handlers.HttpServiceManager.registerServletAndGetBus(HttpServiceManager.java:75)
>>>          ... 13 more
>>>
>> This is actually to do with HttpService not visible from within the
>> single bundle distro - you fixed it last time by adding a Jetty internal
>> activator to the activators list - while this is an open issue it is
>> still not a blocking issue for the release I would say.
>>
>>>> "org.apache.cxf.rs/ws.httpservice.context" is used to link directly to
>>>> HTTP Service, while using relative addresses such as
>>>> "org.apache.cxf.ws.address" or "org.apache.cxf.rs.address" with values
>>>> like "/1", "/2" should bind the endpoint to Http Service indirectly via
>>>> CXF Servlet transport with all the endpoints sharing the same context
>>>> such as "/cxf" or "/services".
>>> Thanks your explaination!
>>>
>>> In addition, the issue will also happen once one of the following
>>> properties is set by an user.
>>>
>>> 1) "org.apache.cxf.ws.httpservice.context"
>>> 2) "osgi.remote.configuration.pojo.httpservice.context"
>>> 3) "osgi.remote.configuration.wsdl.httpservice.context"
>>> 4) "org.apache.cxf.rs.httpservice.context"
>>>
>>> So, I suggest that we should launch a new issue related the issue other
>>> than DOSGi-145, do you agree with me?
>>>
>> We have the issue open for it:
>>
>> https://issues.apache.org/jira/browse/DOSGI-106
>>
>> I've attached a patch to it based on your feedback - effectively it is
>> your patch :-).
>> I think the patch is good - I validated it last week and I was able to
>> deploy a greeter_rest demo with a single bundle distro. Only problem:
>> single-bundle tests are hanging with this update - which is most likely
>> a test issue (old pax dependencies).
>>
>> The actual issue/regression is that no two endpoints bound to
>> HttpService  can be correctly deployed from within the same bundle - I
>> thought it worked for me OK last week - but you said it was not for
>> you... Can you double check please after getting a single bundle distro
>> fix into your local trunk ?
>>
>> Thanks, Sergey
>>
>>> Thanks
>>> --Tang
>>>
>>> Sergey Beryozkin wrote:
>>>> Hi Tang,
>>>>
>>>> thanks for all the feedback so far,
>>>> On 21/12/12 09:53, Tang Yong wrote:
>>>>> Deeply, this difference of handling logic is caused by a config prop
>>>>> called "org.apache.cxf.rs.httpservice.context".
>>>>>
>>>>> While org.apache.cxf.rs.httpservice.context is not null(specified by
>>>>> user),  HttpServiceManager.getHttpService() will be called.
>>>>>
>>>>> However, in greeter demo, the prop is not specified.
>>>>>
>>>>> Pl. seeing JaxRSPojoConfigurationTypeHandler 123 line
>>>> Yes - and in fact it simply confirms the issue will exist for JAX-WS
>>>> endpoints, if
>>>> "org.apache.cxf.ws.httpservice.context" is used - you can modify the
>>>> greeter demo and see it.
>>>>
>>>> Hence I'm not exactly sure if we should let this regression fixed at a
>>>> later stage or not; I honestly do not know if JAX-WS users tried using
>>>> more than one context withing a single bundle or not;
>>>>
>>>> "org.apache.cxf.rs/ws.httpservice.context" is used to link directly to
>>>> HTTP Service, while using relative addresses such as
>>>> "org.apache.cxf.ws.address" or "org.apache.cxf.rs.address" with values
>>>> like "/1", "/2" should bind the endpoint to Http Service indirectly via
>>>> CXF Servlet transport with all the endpoints sharing the same context
>>>> such as "/cxf" or "/services".
>>>>
>>>> Can you consider using a demo and try to see where the problem is ? I'm
>>>> suspecting it may be at a lower level, below DSW - given that we started
>>>> seeing the issue with the latest upgrades
>>>>
>>>>
>>>> Thanks, Sergey
>>>>
>>>>> Thanks
>>>>> --Tang
>>>>>
>>>>> Tang Yong wrote:
>>>>>> Maybe you can ask why greeter demo can work normally using http service?
>>>>>>
>>>>>> The reason is that handling logics of jax ws and jax rs scenes are
>>>>>> different.
>>>>>>
>>>>>> In jax rs scene, http service is obtained by
>>>>>> HttpServiceManager.getHttpService() , and needing a http service impl is
>>>>>> registered into OSGi registry ahead of time.
>>>>>>
>>>>>> However,in jax ws scene, http server with jax ws endpoint is created
>>>>>> using AbstractPojoConfigurationTypeHandler.createServerFromFactory.
>>>>>>
>>>>>> So, if you do not specify an activator(eg. from
>>>>>> pax-web-jetty-1.0.11.jar) in activators.list which can register a http
>>>>>> service impl, HttpServiceManager.getHttpService() will be failed.
>>>>>>
>>>>>> Thanks
>>>>>> --Tang
>>>>>>
>>>>>> Tang Yong wrote:
>>>>>>> Then, I added org.ops4j.pax.web.service.jetty.internal.Activator into
>>>>>>> activators.list and re-launched felix and installed/started greeter_rest
>>>>>>> demo, now the exception does not happen,
>>>>>>>
>>>>>>> D:\gf\org.apache.felix.main.distribution-4.0.3_1\felix-framework-4.0.3>java
>>>>>>> -jar bin\felix.jar
>>>>>>> ____________________________
>>>>>>> Welcome to Apache Felix Gogo
>>>>>>>
>>>>>>> g! install file:/d:/gf/org.osgi.compendium-4.2.0.jar
>>>>>>> Bundle ID: 6
>>>>>>> g! start 
>>>>>>> file:/d:/gf/cxf-dosgi-ri-singlebundle-distribution-1.4-SNAPSHOT.jar
>>>>>>> g! log4j:WARN No appenders could be found for logger
>>>>>>> (org.apache.zookeeper.ZooKeeper).
>>>>>>> log4j:WARN Please initialize the log4j system properly.
>>>>>>> start
>>>>>>> file:/d:/gf/cxf-dosgi-ri-samples-greeter-rest-interface-1.4-SNAPSHOT.jar
>>>>>>> g! start 
>>>>>>> file:/d:/gf/cxf-dosgi-ri-samples-greeter-rest-impl-1.4-SNAPSHOT.jar
>>>>>>> g! 12 21, 2012 12:17:00 午後 org.apache.cxf.endpoint.ServerImpl
>>>>>>> initDestination
>>>>>>> INFO: Setting the server's publish address to be
>>>>>>> /org/apache/cxf/dosgi/samples/greeter/rest/GreeterService
>>>>>>> 12 21, 2012 12:17:00 午後 org.apache.cxf.endpoint.ServerImpl 
>>>>>>> initDestination
>>>>>>> INFO: Setting the server's publish address to be
>>>>>>> /org/apache/cxf/dosgi/samples/greeter/rest/GreeterService2
>>>>>>>
>>>>>>> So, please team confirmed the issue.
>>>>>>>
>>>>>>> Thanks
>>>>>>> --Tang
>>>>>>>
>>>>>>> Tang Yong wrote:
>>>>>>>> I have done a initial investigation on the exception,
>>>>>>>> Apparently, not any HttpService impl is registered.
>>>>>>>>
>>>>>>>> Although in activators.list,
>>>>>>>> org.ops4j.pax.web.service.internal.Activator is written, whether having
>>>>>>>> other reqiured activator(for example,
>>>>>>>> org.ops4j.pax.web.service.jetty.internal.Activator) used for 
>>>>>>>> registering
>>>>>>>> a HttpService impl is missing or not?
>>>>>>>>
>>>>>>>> Thanks
>>>>>>>> --Tang
>>>>>>>>
>>>>>>>> Tang Yong wrote:
>>>>>>>>> In addition,
>>>>>>>>>
>>>>>>>>> Does not the exception happened while trigging
>>>>>>>>> https://issues.apache.org/jira/browse/DOSGI-145?
>>>>>>>>>
>>>>>>>>> Thanks
>>>>>>>>> --Tang
>>>>>>>>>
>>>>>>>>> Tang Yong wrote:
>>>>>>>>>> Hi Team,
>>>>>>>>>>
>>>>>>>>>> About Distributed OSGi greeter_rest demo[1],
>>>>>>>>>> [1]: http://cxf.apache.org/distributed-osgi.html
>>>>>>>>>>
>>>>>>>>>> here there are some problems:
>>>>>>>>>>
>>>>>>>>>> 1 link[2] of greeter_rest demo is not right
>>>>>>>>>> [2]: 
>>>>>>>>>> http://cxf.apache.org/distributed-osgi-greeter-demo-walkthrough.html
>>>>>>>>>>
>>>>>>>>>> 2 about greeter_rest demo[3]'s running
>>>>>>>>>> [3]: 
>>>>>>>>>> http://svn.apache.org/repos/asf/cxf/dosgi/trunk/samples/greeter_rest
>>>>>>>>>>
>>>>>>>>>> Using the following steps, while installing and starting
>>>>>>>>>> cxf-dosgi-ri-samples-greeter-rest-impl-1.4-SNAPSHOT.jar, an exception
>>>>>>>>>> happened:
>>>>>>>>>>
>>>>>>>>>> ____________________________
>>>>>>>>>> Welcome to Apache Felix Gogo
>>>>>>>>>>
>>>>>>>>>> g! lb
>>>>>>>>>> START LEVEL 1
>>>>>>>>>>      ID|State      |Level|Name
>>>>>>>>>>       0|Active     |    0|System Bundle (4.0.3)
>>>>>>>>>>       1|Active     |    1|Apache Log4J (1.2.15)
>>>>>>>>>>       2|Active     |    1|Apache Felix Bundle Repository (1.6.6)
>>>>>>>>>>       3|Active     |    1|Apache Felix Gogo Command (0.12.0)
>>>>>>>>>>       4|Active     |    1|Apache Felix Gogo Runtime (0.10.0)
>>>>>>>>>>       5|Active     |    1|Apache Felix Gogo Shell (0.10.0)
>>>>>>>>>> g! install file:/d:/gf/org.osgi.compendium-4.2.0.jar
>>>>>>>>>> Bundle ID: 6
>>>>>>>>>> g! lb
>>>>>>>>>> START LEVEL 1
>>>>>>>>>>      ID|State      |Level|Name
>>>>>>>>>>       0|Active     |    0|System Bundle (4.0.3)
>>>>>>>>>>       1|Active     |    1|Apache Log4J (1.2.15)
>>>>>>>>>>       2|Active     |    1|Apache Felix Bundle Repository (1.6.6)
>>>>>>>>>>       3|Active     |    1|Apache Felix Gogo Command (0.12.0)
>>>>>>>>>>       4|Active     |    1|Apache Felix Gogo Runtime (0.10.0)
>>>>>>>>>>       5|Active     |    1|Apache Felix Gogo Shell (0.10.0)
>>>>>>>>>>       6|Installed  |    1|osgi.cmpn (4.2.0.200908310645)
>>>>>>>>>> g! start 
>>>>>>>>>> file:/d:/gf/cxf-dosgi-ri-singlebundle-distribution-1.4-SNAPSHOT.jar
>>>>>>>>>> g! log4j:WARN No appenders could be found for logger
>>>>>>>>>> (org.apache.zookeeper.ZooKeeper).
>>>>>>>>>> log4j:WARN Please initialize the log4j system properly.
>>>>>>>>>> lb
>>>>>>>>>> START LEVEL 1
>>>>>>>>>>      ID|State      |Level|Name
>>>>>>>>>>       0|Active     |    0|System Bundle (4.0.3)
>>>>>>>>>>       1|Active     |    1|Apache Log4J (1.2.15)
>>>>>>>>>>       2|Active     |    1|Apache Felix Bundle Repository (1.6.6)
>>>>>>>>>>       3|Active     |    1|Apache Felix Gogo Command (0.12.0)
>>>>>>>>>>       4|Active     |    1|Apache Felix Gogo Runtime (0.10.0)
>>>>>>>>>>       5|Active     |    1|Apache Felix Gogo Shell (0.10.0)
>>>>>>>>>>       6|Resolved   |    1|osgi.cmpn (4.2.0.200908310645)
>>>>>>>>>>       7|Active     |    1|Distributed OSGi Distribution Software
>>>>>>>>>> Single-Bundle Distribution (1.4.0.SNAPSHOT)
>>>>>>>>>> g! start
>>>>>>>>>> file:/d:/gf/cxf-dosgi-ri-samples-greeter-rest-interface-1.4-SNAPSHOT.jar
>>>>>>>>>> g! start 
>>>>>>>>>> file:/d:/gf/cxf-dosgi-ri-samples-greeter-rest-impl-1.4-SNAPSHOT.jar
>>>>>>>>>> g! Exception in thread "pool-1-thread-2"
>>>>>>>>>> org.osgi.framework.ServiceException: CXF DOSGi: problem registering 
>>>>>>>>>> CXF
>>>>>>>>>> HTTP Servlet
>>>>>>>>>> Exception in thread "pool-1-thread-1"   at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.handlers.HttpServiceManager.registerServletAndGetBus(HttpServiceManager.java:84)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.handlers.JaxRSPojoConfigurationTypeHandler.createServer(JaxRSPojoConfigurationTypeHandler.java:123)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminCore.exportService(RemoteServiceAdminCore.java:123)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminInstance$1.run(RemoteServiceAdminInstance.java:70)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminInstance$1.run(RemoteServiceAdminInstance.java:64)
>>>>>>>>>>           at java.security.AccessController.doPrivileged(Native 
>>>>>>>>>> Method)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminInstance.exportService(RemoteServiceAdminInstance.java:64)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminInstance.exportService(RemoteServiceAdminInstance.java:37)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.topologymanager.exporter.TopologyManagerExport.doExportService(TopologyManagerExport.java:250)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.topologymanager.exporter.TopologyManagerExport.access$200(TopologyManagerExport.java:51)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.topologymanager.exporter.TopologyManagerExport$3.run(TopologyManagerExport.java:214)
>>>>>>>>>>           at
>>>>>>>>>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
>>>>>>>>>>           at
>>>>>>>>>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
>>>>>>>>>>           at java.lang.Thread.run(Thread.java:722)
>>>>>>>>>> Caused by: java.lang.RuntimeException: No HTTPService found
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.handlers.HttpServiceManager.getHttpService(HttpServiceManager.java:92)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.handlers.HttpServiceManager.registerServletAndGetBus(HttpServiceManager.java:77)
>>>>>>>>>>           ... 13 more
>>>>>>>>>> org.osgi.framework.ServiceException: CXF DOSGi: problem registering 
>>>>>>>>>> CXF
>>>>>>>>>> HTTP Servlet
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.handlers.HttpServiceManager.registerServletAndGetBus(HttpServiceManager.java:84)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.handlers.JaxRSPojoConfigurationTypeHandler.createServer(JaxRSPojoConfigurationTypeHandler.java:123)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminCore.exportService(RemoteServiceAdminCore.java:123)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminInstance$1.run(RemoteServiceAdminInstance.java:70)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminInstance$1.run(RemoteServiceAdminInstance.java:64)
>>>>>>>>>>           at java.security.AccessController.doPrivileged(Native 
>>>>>>>>>> Method)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminInstance.exportService(RemoteServiceAdminInstance.java:64)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.service.RemoteServiceAdminInstance.exportService(RemoteServiceAdminInstance.java:37)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.topologymanager.exporter.TopologyManagerExport.doExportService(TopologyManagerExport.java:250)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.topologymanager.exporter.TopologyManagerExport.access$200(TopologyManagerExport.java:51)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.topologymanager.exporter.TopologyManagerExport$3.run(TopologyManagerExport.java:214)
>>>>>>>>>>           at
>>>>>>>>>> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
>>>>>>>>>>           at
>>>>>>>>>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
>>>>>>>>>>           at java.lang.Thread.run(Thread.java:722)
>>>>>>>>>> Caused by: java.lang.RuntimeException: No HTTPService found
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.handlers.HttpServiceManager.getHttpService(HttpServiceManager.java:92)
>>>>>>>>>>           at
>>>>>>>>>> org.apache.cxf.dosgi.dsw.handlers.HttpServiceManager.registerServletAndGetBus(HttpServiceManager.java:77)
>>>>>>>>>>           ... 13 more
>>>>>>>>>> gosh: stopping framework
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>
> 
E:\gfv4\apachedcxf\systests2\single-bundle>mvn test
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building Distributed OSGi System Tests Single-Bundle 1.4-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[WARNING] The POM for org.apache.xmlbeans:xmlbeans:jar:2.6.0 is missing, no 
dependency information available
[INFO]
[INFO] --- maven-remote-resources-plugin:1.2:process (default) @ 
cxf-dosgi-ri-systests2-singlebundle ---
[INFO] Setting property: classpath.resource.loader.class => 
'org.codehaus.plexus.velocity.ContextClassLoaderResourceLoader'.
[INFO] Setting property: velocimacro.messages.on => 'false'.
[INFO] Setting property: resource.loader => 'classpath'.
[INFO] Setting property: resource.manager.logwhenfound => 'false'.
[WARNING] Missing POM for org.apache.xmlbeans:xmlbeans:jar:2.6.0
[INFO]
[INFO] --- maven-paxexam-plugin:1.2.4:generate-config (generate-config) @ 
cxf-dosgi-ri-systests2-singlebundle ---
[INFO] Adding dependencies in scope provided
[INFO] Generated configuration as Pax Runner arguments file 
E:\gfv4\apachedcxf\systests2\single-bundle\target\test-classes\META-INF\maven\paxexam-config.args
[INFO]
[INFO] --- maven-paxexam-plugin:1.2.4:generate-depends-file (generate-config) @ 
cxf-dosgi-ri-systests2-singlebundle ---
[INFO] Created: 
E:\gfv4\apachedcxf\systests2\single-bundle\target\classes\META-INF\maven\dependencies.properties
[INFO]
[INFO] --- maven-resources-plugin:2.5:resources (default-resources) @ 
cxf-dosgi-ri-systests2-singlebundle ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
E:\gfv4\apachedcxf\systests2\single-bundle\src\main\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- maven-compiler-plugin:2.5.1:compile (default-compile) @ 
cxf-dosgi-ri-systests2-singlebundle ---
[INFO] No sources to compile
[INFO]
[INFO] --- maven-resources-plugin:2.5:testResources (default-testResources) @ 
cxf-dosgi-ri-systests2-singlebundle ---
[debug] execute contextualize
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory 
E:\gfv4\apachedcxf\systests2\single-bundle\src\test\resources
[INFO] Copying 3 resources
[INFO]
[INFO] --- maven-compiler-plugin:2.5.1:testCompile (default-testCompile) @ 
cxf-dosgi-ri-systests2-singlebundle ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-surefire-plugin:2.8.1:test (default-test) @ 
cxf-dosgi-ri-systests2-singlebundle ---
[INFO] Surefire report directory: 
E:\gfv4\apachedcxf\systests2\single-bundle\target\surefire-reports

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running org.apache.cxf.dosgi.systests2.single.TestDiscoveryRountrip
[                    RawBuilder] - Copy thread finished.
[                    RawBuilder] - Copy thread finished.
__________                 ___________
\______   \_____  ___  ___ \_   _____/__  ________    _____
 |     ___/\__  \ \  \/  /  |    __)_\  \/  /\__  \  /     \
 |    |     / __ \_>    <   |        \>    <  / __ \|  Y Y  \
 |____|    (____  /__/\_ \ /_______  /__/\_ \(____  /__|_|  /
                \/      \/         \/      \/     \/      \/

Pax Exam 1.2.4 from OPS4J - http://www.ops4j.org
------------------------------------------------

[              JUnit4TestMethod] - Starting test testDiscoveryRoundtrip 
[felix](org.apache.cxf.dosgi.systests2.single.TestDiscoveryRountrip)
[        PaxRunnerTestContainer] - RMI registry started on port [1099]
[        PaxRunnerTestContainer] - Starting up the test container (Pax Runner 
1.6.0 )
[        PaxRunnerTestContainer] - Acquire lock for new Pax Runner instance on 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\paxexam_runner_Administrator\paxexam.lock
[             ConfigurationImpl] - Using config 
[classpath:META-INF/runner.properties]
[                           Run] - Using only arguments from command line
SLF4J: The requested version 1.6 by your slf4j binding is not compatible with 
[1.5.5, 1.5.6, 1.5.7, 1.5.8, 1.5.9, 1.5.10, 1.5.11]
SLF4J: See http://www.slf4j.org/codes.html#version_mismatch for further details.
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in 
[jar:file:/E:/gfv4/gflocalrepo/org/slf4j/slf4j-jcl/1.6.4/slf4j-jcl-1.6.4.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in 
[jar:file:/E:/gfv4/gflocalrepo/org/slf4j/slf4j-log4j12/1.6.1/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam/1.2.4@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam-junit-extender/1.2.4@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam-junit-extender-impl/1.2.4@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:wrap:mvn:log4j/log4j/1.2.17@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.zookeeper/zookeeper/3.3.1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-discovery-distributed-zookeeper-server/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_9a7940fd416d5961b8d6b733cd5f87e7c7af8558.bin@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_a786c130032d632e675440867e09b0301b9cee25.bin@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.junit/com.springsource.org.junit/4.4.0@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam-container-rbc/1.2.4@1]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam/1.2.4, at start level 1, bundle will be 
started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam-junit-extender/1.2.4, at start level 1, bundle 
will be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam-junit-extender-impl/1.2.4, at start level 1, 
bundle will be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT, 
at default start level, bundle will be started, bundle will be re-downloaded]
[                           Run] - Provision bundle 
[wrap:mvn:log4j/log4j/1.2.17, at default start level, bundle will be started, 
bundle will be re-downloaded]
[                           Run] - Provision bundle 
[mvn:org.apache.zookeeper/zookeeper/3.3.1, at default start level, bundle will 
be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-discovery-distributed-zookeeper-server/1.4-SNAPSHOT,
 at default start level, bundle will be started, bundle will be re-downl
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT, 
at default start level, bundle will be started, bundle will be re-downloaded]
[                           Run] - Provision bundle 
[file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_9a7940fd416d5961b8d6b733cd5f87e7c7af8558.bin,
 at default start level, bundle will be started, bundle will
[                           Run] - Provision bundle 
[file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_a786c130032d632e675440867e09b0301b9cee25.bin,
 at default start level, bundle will be started, bundle will
[                           Run] - Provision bundle 
[mvn:org.junit/com.springsource.org.junit/4.4.0, at start level 1, bundle will 
be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam-container-rbc/1.2.4, at start level 1, bundle 
will be started, bundle will be loaded from the cache]
[                  PlatformImpl] - Preparing framework [Felix 3.0.6]
[                  PlatformImpl] - Downloading bundles...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT : 
downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT : 
10082850 bytes @ [ 214528kBps ]
[                   StreamUtils] - wrap:mvn:log4j/log4j/1.2.17 : downloading...
[                   StreamUtils] - wrap:mvn:log4j/log4j/1.2.17 : 489884 bytes @ 
[ 5267kBps ]
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-discovery-distributed-zookeeper-server/1.4-SNAPSHOT
 : downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-discovery-distributed-zookeeper-server/1.4-SNAPSHOT
 : 17646 bytes @ [ 17646kBps ]
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT : 
downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT : 
30336 bytes @ [ 30336kBps ]
[                   StreamUtils] - 
file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_9a7940fd416d5961b8d6b733cd5f87e7c7af8558.bin
 : downloading...
[                   StreamUtils] - 
file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_9a7940fd416d5961b8d6b733cd5f87e7c7af8558.bin
 : 4643 bytes @ [ 4643kBps ]
[                   StreamUtils] - 
file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_a786c130032d632e675440867e09b0301b9cee25.bin
 : downloading...
[                   StreamUtils] - 
file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_a786c130032d632e675440867e09b0301b9cee25.bin
 : 4241 bytes @ [ 4241kBps ]
[          ExecutionEnvironment] - Using execution environment [J2SE-1.6]
[             DefaultJavaRunner] - Runner has successfully finished his job!

[        PaxRunnerTestContainer] - Test container (Pax Runner 1.6.0) started in 
609 millis
[        PaxRunnerTestContainer] - Wait for test container to finish its 
initialization for 300000 millis
[     RemoteBundleContextClient] - Remote bundle context found after 2219 millis
*** Server using URL: http://localhost:4748/test2
2012/12/25 11:41:11 org.apache.cxf.service.factory.ReflectionServiceFactoryBean 
buildServiceFromClass
î•ñ: Creating Service 
{http://test2.common.systests2.dosgi.cxf.apache.org/}Test2Service from class 
org.apache.cxf.dosgi.systests2.common.test2.Test2Service
[              JUnit4TestMethod] - Starting test testDiscoveryRoundtrip 
[felix](org.apache.cxf.dosgi.systests2.single.TestDiscoveryRountrip)
2012/12/25 11:41:11 org.apache.cxf.endpoint.ServerImpl initDestination
î•ñ: Setting the server's publish address to be http://localhost:4748/test2
[              JUnit4TestMethod] - Test testDiscoveryRoundtrip 
[felix](org.apache.cxf.dosgi.systests2.single.TestDiscoveryRountrip) ended 
succesfully
[        PaxRunnerTestContainer] - Shutting down the test container (Pax Runner)


[             DefaultJavaRunner] - Platform has been shutdown.
[        PaxRunnerTestContainer] - RMI registry stopped
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.906 sec
Running org.apache.cxf.dosgi.systests2.single.TestExportService
__________                 ___________
\______   \_____  ___  ___ \_   _____/__  ________    _____
 |     ___/\__  \ \  \/  /  |    __)_\  \/  /\__  \  /     \
 |    |     / __ \_>    <   |        \>    <  / __ \|  Y Y  \
 |____|    (____  /__/\_ \ /_______  /__/\_ \(____  /__|_|  /
                \/      \/         \/      \/     \/      \/

Pax Exam 1.2.4 from OPS4J - http://www.ops4j.org
------------------------------------------------

[              JUnit4TestMethod] - Starting test testAccessEndpoint 
[felix](org.apache.cxf.dosgi.systests2.single.TestExportService)
[        PaxRunnerTestContainer] - RMI registry started on port [1099]
[        PaxRunnerTestContainer] - Starting up the test container (Pax Runner 
1.6.0 )
[        PaxRunnerTestContainer] - Acquire lock for new Pax Runner instance on 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\paxexam_runner_Administrator\paxexam.lock
[             ConfigurationImpl] - Using config 
[classpath:META-INF/runner.properties]
[                           Run] - Using only arguments from command line
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam/1.2.4@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam-junit-extender/1.2.4@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam-junit-extender-impl/1.2.4@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-interface/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-impl/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.junit/com.springsource.org.junit/4.4.0@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam-container-rbc/1.2.4@1]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam/1.2.4, at start level 1, bundle will be 
started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam-junit-extender/1.2.4, at start level 1, bundle 
will be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam-junit-extender-impl/1.2.4, at start level 1, 
bundle will be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT, 
at default start level, bundle will be started, bundle will be re-downloaded]
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-interface/1.4-SNAPSHOT,
 at default start level, bundle will be started, bundle will be re-downloaded
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-impl/1.4-SNAPSHOT,
 at default start level, bundle will be started, bundle will be re-downloaded]
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT, 
at default start level, bundle will be started, bundle will be re-downloaded]
[                           Run] - Provision bundle 
[mvn:org.junit/com.springsource.org.junit/4.4.0, at start level 1, bundle will 
be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam-container-rbc/1.2.4, at start level 1, bundle 
will be started, bundle will be loaded from the cache]
[                  PlatformImpl] - Preparing framework [Felix 3.0.6]
[                  PlatformImpl] - Downloading bundles...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT : 
downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT : 
10082850 bytes @ [ 325253kBps ]
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-interface/1.4-SNAPSHOT
 : downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-interface/1.4-SNAPSHOT
 : 10843 bytes @ [ 10843kBps ]
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-impl/1.4-SNAPSHOT 
: downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-impl/1.4-SNAPSHOT 
: 11255 bytes @ [ 11255kBps ]
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT : 
downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT : 
30336 bytes @ [ 30336kBps ]
[          ExecutionEnvironment] - Using execution environment [J2SE-1.6]
[             DefaultJavaRunner] - Runner has successfully finished his job!

[        PaxRunnerTestContainer] - Test container (Pax Runner 1.6.0) started in 
203 millis
[        PaxRunnerTestContainer] - Wait for test container to finish its 
initialization for 300000 millis
[     RemoteBundleContextClient] - Remote bundle context found after 1985 millis
2012/12/25 11:41:17 org.apache.cxf.service.factory.ReflectionServiceFactoryBean 
buildServiceFromClass
î•ñ: Creating Service 
{http://greeter.samples.dosgi.cxf.apache.org/}GreeterService from class 
org.apache.cxf.dosgi.samples.greeter.GreeterService
[              JUnit4TestMethod] - Starting test testAccessEndpoint 
[felix](org.apache.cxf.dosgi.systests2.single.TestExportService)
2012/12/25 11:41:17 org.apache.cxf.endpoint.ServerImpl initDestination
î•ñ: Setting the server's publish address to be http://localhost:9090/greeter
2012/12/25 11:41:17 org.apache.cxf.service.factory.ReflectionServiceFactoryBean 
buildServiceFromClass
î•ñ: Creating Service 
{http://greeter.samples.dosgi.cxf.apache.org/}GreeterService from class 
org.apache.cxf.dosgi.samples.greeter.GreeterService
Invoking: greetMe(Fred)
Invocation result: 
{org.apache.cxf.dosgi.samples.greeter.GreetingPhrase@2268dc=Fred, 
org.apache.cxf.dosgi.samples.greeter.GreetingPhrase@67052bc3=Fred, 
org.apache.cxf.dosgi.samples.greeter.GreetingPhrase@11c22=Fred,
Throwing custom exception from: greetMe(Stranger)
2012/12/25 11:41:17 org.apache.cxf.phase.PhaseInterceptorChain doDefaultLogging
î•ñ: Application 
{http://greeter.samples.dosgi.cxf.apache.org/}GreeterService#{http://greeter.samples.dosgi.cxf.apache.org/}greetMe1
 has thrown exception, unwinding now: 
org.apache.cxf.dosgi.samples.greeter.Greeter
[              JUnit4TestMethod] - Test testAccessEndpoint 
[felix](org.apache.cxf.dosgi.systests2.single.TestExportService) ended 
succesfully
[        PaxRunnerTestContainer] - Shutting down the test container (Pax Runner)


[             DefaultJavaRunner] - Platform has been shutdown.
[        PaxRunnerTestContainer] - RMI registry stopped
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.547 sec
Running org.apache.cxf.dosgi.systests2.single.TestImportService
[                    RawBuilder] - Copy thread finished.
__________                 ___________
\______   \_____  ___  ___ \_   _____/__  ________    _____
 |     ___/\__  \ \  \/  /  |    __)_\  \/  /\__  \  /     \
 |    |     / __ \_>    <   |        \>    <  / __ \|  Y Y  \
 |____|    (____  /__/\_ \ /_______  /__/\_ \(____  /__|_|  /
                \/      \/         \/      \/     \/      \/

Pax Exam 1.2.4 from OPS4J - http://www.ops4j.org
------------------------------------------------

[              JUnit4TestMethod] - Starting test testClientConsumer 
[equinox](org.apache.cxf.dosgi.systests2.single.TestImportService)
[        PaxRunnerTestContainer] - RMI registry started on port [1099]
[        PaxRunnerTestContainer] - Starting up the test container (Pax Runner 
1.6.0 )
[        PaxRunnerTestContainer] - Acquire lock for new Pax Runner instance on 
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\paxexam_runner_Administrator\paxexam.lock
[             ConfigurationImpl] - Using config 
[classpath:META-INF/runner.properties]
[                           Run] - Using only arguments from command line
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam/1.2.4@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam-junit-extender/1.2.4@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam-junit-extender-impl/1.2.4@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-interface/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_d4fa80037028804dabe1c926ccb89db3d73ab56a.bin@update]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.junit/com.springsource.org.junit/4.4.0@1]
[          ProvisionServiceImpl] - Scan bundles from 
[scan-bundle:mvn:org.ops4j.pax.exam/pax-exam-container-rbc/1.2.4@1]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam/1.2.4, at start level 1, bundle will be 
started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam-junit-extender/1.2.4, at start level 1, bundle 
will be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam-junit-extender-impl/1.2.4, at start level 1, 
bundle will be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT, 
at default start level, bundle will be started, bundle will be re-downloaded]
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-interface/1.4-SNAPSHOT,
 at default start level, bundle will be started, bundle will be re-downloaded
[                           Run] - Provision bundle 
[mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT, 
at default start level, bundle will be started, bundle will be re-downloaded]
[                           Run] - Provision bundle 
[file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_d4fa80037028804dabe1c926ccb89db3d73ab56a.bin,
 at default start level, bundle will be started, bundle will
[                           Run] - Provision bundle 
[mvn:org.junit/com.springsource.org.junit/4.4.0, at start level 1, bundle will 
be started, bundle will be loaded from the cache]
[                           Run] - Provision bundle 
[mvn:org.ops4j.pax.exam/pax-exam-container-rbc/1.2.4, at start level 1, bundle 
will be started, bundle will be loaded from the cache]
[                  PlatformImpl] - Preparing framework [Equinox 3.6.1]
[                  PlatformImpl] - Downloading bundles...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT : 
downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi/cxf-dosgi-ri-singlebundle-distribution/1.4-SNAPSHOT : 
10082850 bytes @ [ 325253kBps ]
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-interface/1.4-SNAPSHOT
 : downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.samples/cxf-dosgi-ri-samples-greeter-interface/1.4-SNAPSHOT
 : 10843 bytes @ [ 10843kBps ]
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT : 
downloading...
[                   StreamUtils] - 
mvn:org.apache.cxf.dosgi.systests/cxf-dosgi-ri-systests2-common/1.4-SNAPSHOT : 
30336 bytes @ [ 30336kBps ]
[                   StreamUtils] - 
file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_d4fa80037028804dabe1c926ccb89db3d73ab56a.bin
 : downloading...
[                   StreamUtils] - 
file:/C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/tb/tinybundles_d4fa80037028804dabe1c926ccb89db3d73ab56a.bin
 : 7005 bytes @ [ 7005kBps ]
[          ExecutionEnvironment] - Using execution environment [J2SE-1.6]
[             DefaultJavaRunner] - Runner has successfully finished his job!

[        PaxRunnerTestContainer] - Test container (Pax Runner 1.6.0) started in 
219 millis
[        PaxRunnerTestContainer] - Wait for test container to finish its 
initialization for 300000 millis
[     RemoteBundleContextClient] - Remote bundle context found after 2156 millis
[              JUnit4TestMethod] - Starting test testClientConsumer 
[equinox](org.apache.cxf.dosgi.systests2.single.TestImportService)
2012/12/25 11:41:21 org.apache.cxf.service.factory.ReflectionServiceFactoryBean 
buildServiceFromClass
î•ñ: Creating Service 
{http://greeter.samples.dosgi.cxf.apache.org/}GreeterService from class 
org.apache.cxf.dosgi.samples.greeter.GreeterService
2012/12/25 11:41:22 org.apache.cxf.endpoint.ServerImpl initDestination
î•ñ: Setting the server's publish address to be http://localhost:9191/grrr
Test object available, so starting the service client tracker...
Waiting for service: java.lang.String(testResult=test1)
2012/12/25 11:41:22 org.apache.cxf.service.factory.ReflectionServiceFactoryBean 
buildServiceFromClass
î•ñ: Creating Service 
{http://greeter.samples.dosgi.cxf.apache.org/}GreeterService from class 
org.apache.cxf.dosgi.samples.greeter.GreeterService
[client] Got a GreeterService...
2012/12/25 11:41:22 org.apache.cxf.phase.PhaseInterceptorChain doDefaultLogging
î•ñ: Application 
{http://greeter.samples.dosgi.cxf.apache.org/}GreeterService#{http://greeter.samples.dosgi.cxf.apache.org/}greetMe1
 has thrown exception, unwinding now: 
org.apache.cxf.dosgi.samples.greeter.Greeter
[client] Successfully invoked remote service. Registering test response 
service...
[              JUnit4TestMethod] - Test testClientConsumer 
[equinox](org.apache.cxf.dosgi.systests2.single.TestImportService) ended 
succesfully
[        PaxRunnerTestContainer] - Shutting down the test container (Pax Runner)


[             DefaultJavaRunner] - Platform has been shutdown.
[        PaxRunnerTestContainer] - RMI registry stopped
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.11 sec

Results :

Tests run: 3, Failures: 0, Errors: 0, Skipped: 0

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 22.187s
[INFO] Finished at: Tue Dec 25 11:41:25 JST 2012
[INFO] Final Memory: 12M/28M
[INFO] ------------------------------------------------------------------------
E:\gfv4\apachedcxf\systests2\single-bundle>

Reply via email to