If anyone could provide the steps to setting up an inbound endpoint for an AMQP connector in a mule flow with step 0 being the the point of downloading the zip file from github, I would be most grateful.
There seems to be this assumed knowledge that most people know how to take a zip file from github and somehow make that file available for use in mule eclipse. Do I need to turn it into a jar file and if so how do i reference that file from the mule project? .. the permutations for a non java programmer seem endless
I have successfully sent events from salesforce to my email via mule eclipse so I get the idea at a very high level .. but adding a connector has me completely foxed
here is the error
ERROR 2012-08-07 00:35:30,833 [main] org.mule.module.launcher.application.DefaultMuleApplication: null org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate NamespaceHandler for namespace [http://www.mulesoft.org/schema/mule/amqp]
here is my config
<amqp:connector name="amqpConnector" host="localhost"></amqp:connector>
<flow name="test2" doc:name="test2">
<amqp:inbound-endpoint exchangeName="topic"></amqp:inbound-endpoint>
<smtp:outbound-endpoint host="relay.jangosmtp.net" port="25" user="xxxx" password="xxxx" to="[email protected]" from="[email protected]" subject="test" responseTimeout="10000" doc:name="SMTP"/>
</flow>