You need to sign in to do that
Don't have an account?

number of webeervices required for outbound messages on multiple objects
Hi,
I'm configuring multiple outbound messages for multiple objects.So do I have to develop multile webservices or one
webservce is enough for all the outbound messages.
thanks in advance
I have the same question. Since all outbound messages generate to the NotificationService is it better to use one service and route the message to an appropriate handler, e.g. Opportunity vs Account etc based on the type of message or have multiple services with different contexts ?
Its up to you, you can write a single service that does dispatching itself based on type, or you can let the web server handle the dispatching for you and write multiple services. Typically you'll need to massage the WSDL (or skip WSDL2Java altogether) to handle the single service, lots of types case.