Hi,
I'm a novice, sorry for my bad english.
I wish create two services, one published in the http-consumer and one
published in the http-provider.
The first service has a client in order to insert the name.
public class MyClass1 {
public String myMethod1 (String name1) {
return "Hello1"+name;
}
}
public class MyClass2 {
public String myMethod2 (String name2) {
return "Hello2"+name;
}
}
I wish send the name1 at the ServiceMix, the ServiceMix sends it at the
second service that adds "Hello2", and returns the String at the client that
display the final String.
The two methods have two name-methods different, and the ServiceMix doesn't
find the second method, because tries the method "myMethod1".
How do I do?
Thank you.
--
View this message in context:
http://www.nabble.com/http-consumer-doesn%27t-speak-with-http-provider-tp21584624p21584624.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.