cxfse:endpoint service and endpoint attributes do not influence nmr endpoint as
expected
----------------------------------------------------------------------------------------
Key: SMXCOMP-509
URL: https://issues.apache.org/activemq/browse/SMXCOMP-509
Project: ServiceMix Components
Issue Type: Bug
Components: servicemix-cxf-se
Reporter: Scott Cranton
Setting the cxfse:endpoint service and endpoint attributes appears to have no
impact on nmr endpoint. Only setting WebService Annotation service and port
values actually changes nmr endpoint. WSDL values also appear to not influence
nmr name
<cxfse:endpoint id="paymentServiceSE"
service="foo:bar" <!-- these values do not change nmr endpoint
as expected and documented -->
endpoint="endpoint"
useJBIWrapper="false"
useSOAPEnvelope="false"
>
<cxfse:pojo>
<bean
class="com.example.fuse.payment_service.PaymentServiceImpl" />
</cxfse:pojo>
</cxfse:endpoint>
Setting WebService annotations appears to be only way to change nmr endpoint
@WebService(targetNamespace = "http://fuse.example.com", name = "Payment",
serviceName="paymentService", portName="endpoint")
public class PaymentServiceImpl implements Payment {
nmr will now be {http://fuse.example.com}paymentService:endpoint
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.