Re: [Dev] what is get-property('Action') and what it do?

2015-05-20 Thread Himasha Guruge
Hi Rukshan, You can refer to [1] . [1] https://docs.wso2.com/display/ESB480/SOAP+Headers#SOAPHeaders-Action Thanks, Himasha On Thu, May 21, 2015 at 9:50 AM, Rukshan Premathunga ruks...@wso2.com wrote: Hi, I ran the 51st sample of the ESB. filter source=get-property('Action')

[Dev] what is get-property('Action') and what it do?

2015-05-20 Thread Rukshan Premathunga
Hi, I ran the 51st sample of the ESB. filter source=get-property('Action') regex=urn:uploadFileUsingMTOM property name=example value=mtom/ send endpoint address uri= http://localhost:9000/services/MTOMSwASampleService;

Re: [Dev] what is get-property('Action') and what it do?

2015-05-20 Thread Sachith Withana
Hi Rukshan, The Action property is defined in the header of the message it receives. It's an SOAP header defined as the SOAPAction header. It can be retrieved through the get-property() method. More on that can be found on [1] It is used to provide the intent of the message sent and to filter

Re: [Dev] what is get-property('Action') and what it do?

2015-05-20 Thread Madhuranga Bandara
Hi Rukshan, Action refer to SoapAction http Header field. Which is used to indicate the intent of http request. Content of this header field can be used by firewalls to filter SOAP request messages. This is helpful.