Sir, I tested samples in synapse-1.2.I created on restful web service.i want to mediate that service through synapse.i successfully on HTTP POST method My synapse_restful.xml is like
<definitions xmlns="http://ws.apache.org/ns/synapse"> <proxy name="Restful" transports="http,https"> <target> <endpoint> <address uri="http://localhost:8080/Restful/record" format="pox"/> </endpoint> <outSequence> <send/> </outSequence> </target> </proxy> </definitions> but try for HTTP GET/PUT/DELETE methods,it's not working if possible please help me
