hello,
I have sa as follows.
|->smx-bean1
cxf-bc->eip--|->smx-bean2
When i calling from the client, getting error as follows. I am deploying it
in smx web. But SA perfectly working fine in smx standalone mode.
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring><![CDATA[Unknown message exchange: InOut[
id: ID:192.168.2.86-120efe156f6-4:0
status: Active
role: provider
service: {http://www.ekaplus.com/NotifyEvent/}eventLoggerService
endpoint: eventLoggerEP
in: <?xml version="1.0" encoding="UTF-8"?><soap:Envelope
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><not:notifyEvent
xmlns:not="http://www.ekaplus.com/NotifyEvent/">
<in>
<test>tet data </test>
</in>
</not:notifyEvent></soap:Body></soap:Envelope>
] on endpoint: Endpoint[service:
{http://www.ekaplus.com/NotifyEvent/}eventLoggerService, endpoint:
eventLoggerEP, role: provider]]]></faultstring>
</soap:Fault>
</soap:Body>
</soap:Envelope>
xbean for eip as follows
<beans xmlns:eip="http://servicemix.apache.org/eip/1.0"
xmlns:nte="http://www.ekaplus.com/NotifyEvent/"
xmlns:sns="http://tempuri.org/"
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://servicemix.apache.org/eip/1.0
http://servicemix.apache.org/schema/servicemix-eip-3.2.2.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<eip:static-routing-slip service="nte:notifyeventEIPService"
endpoint="notifyeventEP">
<eip:targets>
<eip:exchange-target service="nte:eventLoggerService" />
<eip:exchange-target service="nte:glDataMapper" />
</eip:targets>
</eip:static-routing-slip>
</beans>
xbean for event logger as follows
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:bean="http://servicemix.apache.org/bean/1.0"
xmlns:nte="http://www.ekaplus.com/NotifyEvent/"
xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://servicemix.apache.org/bean/1.0
http://servicemix.apache.org/schema/servicemix-bean-3.2.3.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean:endpoint service="nte:eventLoggerService" endpoint="eventLoggerEP"
bean="#messageLogger"/>
<bean id="messageLogger" class="com.ekaplus.accounting.MessageLogger"/>
</beans>
xbean for glDataMapper as folllows
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:bean="http://servicemix.apache.org/bean/1.0"
xmlns:nte="http://www.ekaplus.com/NotifyEvent/"
xmlns:xsi="http://http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://servicemix.apache.org/bean/1.0
http://servicemix.apache.org/schema/servicemix-bean-3.2.3.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean:endpoint service="nte:glDataMapper" endpoint="glDataMapperEp"
bean="#mapperBean"/>
<bean id="mapperBean" class="com.ekaplus.accounting.DataMapper"/>
</beans>
--
View this message in context:
http://www.nabble.com/Unknown-message-exchange%3A-InOut-tp23289975p23289975.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.