I am running an SCA application referencing a JAX-WS service on Tuscany
1.5 / 2.0 (?).
The problem is that no matter what the parameters are, the result is
always the same.
As an example, my web service has an opeartion returning an integer.
And the returned integer is always 0, while it should have another value.
My web service is created with jax-ws. It's a simple web service
(request : send an integer, response : receive the same integer)
-----------------------------------------------------
import javax.jws.*;
@WebService
public class AccountImpl implements Account {
@WebMethod
public Integer getPrice(int price) {
return price;
}
}
The artefacts are generated with Wsimport.
What is the reason of this problem?
Houssem.
P.S.: there is no problem if the web service is an SCA project exposed
as a web service and running on Tuscany.