I am new to wso2
I have created two jar services
1) Simple service has two methods add and subtract two numbers
2) simple service has two methods multiply and divide two numbers
I want to invoke these two services based on some condition,that i have implemented using Filter Mediator.
I want to call the methods inside those services.
Say, If a > b
I called first service,then I want to call the operations(methods) inside these service,say addTwoNumbers(int a,int b)
and subTwoNumberes(int a , int b)
How to call these methods using proxy service?
Can anyone help me on this ?