KenBarnesJr wrote:
I have deployed a WS to a glassfish server and want to use servicemix to
expose the wsdl located at
http://localhost:8080/WsdlTestProject/TestWsdlService?wsdl
... Is this possible and would my best approach be to use cxf-bc or http??
Yes, it's possible, both cxf-bc and http are Ok for it.
You need a consumer and a provider, in this case the consumer and
provider here play the role as a proxy (or bridge), we have a test case
for this scenario in cxf bc component, [1] is the test, [2] is the
configuration used for this test.
[1]http://svn.apache.org/repos/asf/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/java/org/apache/servicemix/cxfbc/CxfBcProviderConsumerTest.java
[2]http://svn.apache.org/repos/asf/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-cxf-bc/src/test/resources/org/apache/servicemix/cxfbc/cxf_provider_consumer_bridge.xml
Freeman
Thanks