Hi All While I was working on some thing with ESB I needed to create a simple proxy with echo service. So I created an endpoint in registry. Content of endpoint as follows.
<endpoint xmlns="http://ws.apache.org/ns/synapse"> <address uri="http://localhost:8280/services/echo" /> </endpoint> Then I started to get some wrong number of inputs exception. Then somehow I edited the endpoint to be as follows. <endpoint xmlns="http://ws.apache.org/ns/synapse"> <address uri="http://localhost:8280/services/echo"> <suspendOnFailure> <progressionFactor>1.0</progressionFactor> </suspendOnFailure> <markForSuspension> <retriesBeforeSuspension>0</retriesBeforeSuspension> <retryDelay>0</retryDelay> </markForSuspension> </address> </endpoint> Then it worked. First version seems to me simple and OK. Why isn't this working and why we need extra parameters? Can some one explain? Thanks & Regards Danushka Fernando Senior Software Engineer WSO2 inc. http://wso2.com/ Mobile : +94716332729
_______________________________________________ Dev mailing list [email protected] http://wso2.org/cgi-bin/mailman/listinfo/dev
