2
votes

I create simple api with URI-template /my_context/{param1}?b={param2}

I created simple sequence for sending email message to endpoint with address

mailto:[email protected]

I opened link

/api/my_context/123?b=222

And found in log messages:

Send TO: [email protected]/my_context/123?b=222
Incorrect Address.

Why WSO2 ESB append uri to email address?

1

1 Answers

1
votes

Removing REST_URL_POSTFIX property like this will change that behavior.

<property name="REST_URL_POSTFIX"  action="remove" scope="axis2"/>