Hi,
I developed a a HTTP servie units. It contains four web service endpoints.
I bind all four web service endpoints in single HTTP service unit. Then I
assemble HTTP service unit with service assembly.
The program works fine and running on service mix server.
Following is the xbean.xml for HTTP service unit
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:http="http://servicemix.apache.org/http/1.0"
xmlns:MessagingService="http://www.motorola.com/isf/MessagingService/"
xmlns:CommonBillingService="http://www.motorola.com/isf/CommonBillingService/"
xmlns:DBOperation="http://www.motorola.com/isf/DBOperation/"
xmlns:esgDataStore="http://motorola.com/isf/esgDataStore"
xmlns:SendingSMS="http://www.motorola.com/isf/SendingSMS/"
xmlns:CommonAAService="http://www.motorola.com/isf/CommonAAService/"
xmlns:MOMessageService="http://www.motorola.com/isf/MOMessageService/"
xmlns:ResponseDBService="http://www.motorola.com/isf/ResponseDBService/"
xmlns:ISFService="http://www.motorola.com/isf/ISFService/">
<http:endpoint service="MessagingService:MessagingService"
endpoint="MessagingServiceSOAP"
role="consumer"
locationURI="http://0.0.0.0:5680/MessagingService"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
<http:endpoint service="CommonBillingService:CommonBillingService"
endpoint="CommonBillingServiceSOAP"
role="consumer"
locationURI="http://0.0.0.0:5678/CommonBillingService/"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
<http:endpoint service="DBOperation:DBOperation"
endpoint="DBOperationSOAP"
role="consumer"
locationURI="http://0.0.0.0:5679/DBOperation"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
<http:endpoint service="esgDataStore:esgDataStore"
endpoint="esgDataStore"
role="consumer"
locationURI="http://0.0.0.0:6868/esgDataStore"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
<http:endpoint service="SendingSMS:SendingSMS"
endpoint="SendingSMSSOAP"
role="consumer"
locationURI="http://0.0.0.0:5690/SendingSMS/"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
<http:endpoint service="CommonAAService:CommonAAService"
endpoint="CommonAAServiceSOAP"
role="consumer"
locationURI="http://0.0.0.0:5699/CommonAAService"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
<http:endpoint service="MOMessageService:MOMessageService"
endpoint="MOMessageServiceSOAP"
role="consumer"
locationURI="http://0.0.0.0:5691/MOMessageService"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
<http:endpoint service="ResponseDBService:ResponseDBService"
endpoint="ResponseDBServiceSOAP"
role="consumer"
locationURI="http://0.0.0.0:5693/ResponseDBService"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
<http:endpoint service="ISFService:ISFService"
endpoint="ISFServiceSOAP"
role="consumer"
locationURI="http://0.0.0.0:5692/ISFService"
defaultMep="http://www.w3.org/2004/08/wsdl/in-out"
soap="true" />
</beans>
I have question on HTTP service unit:
1> Can we able to remove HTTP service unit from deployed service assembly
during runtime?
2>IF yes, what are the steps I have to take?
Please provide me some informationon this .
--
View this message in context:
http://www.nabble.com/Removing-HTTP-service-unit-tf3770024s12049.html#a10658816
Sent from the ServiceMix - User mailing list archive at Nabble.com.