-
1. Re: soap and rest service don't work together
ffang Apr 11, 2011 3:13 AM (in response to michal.warecki)Hi,
Could you tell me what's the exact fuse esb version you're using? I guess you encounter a known bug[1] which already get fixed for a while.
Could you try with the latest released fuse esb?
https://issues.apache.org/jira/browse/CXF-2947
Freeman
Edited by: ffang on Apr 11, 2011 7:13 AM
-
2. Re: soap and rest service don't work together
michal.warecki Apr 11, 2011 4:18 AM (in response to ffang)I'm using fuse 4.3 (I'am not sure which minor relesease but I will check ). Problem exists in one of minor relesease of 4.3 or earlier ?
-
3. Re: soap and rest service don't work together
ffang Apr 11, 2011 4:39 AM (in response to michal.warecki)Hi,
It was fixed since 4.3.0-fuse-02-00.
Freeman
-
4. Re: soap and rest service don't work together
michal.warecki Apr 12, 2011 3:22 AM (in response to ffang)I'm using 4.3.1 so it is not this bug or it was not fixed.
-
5. Re: soap and rest service don't work together
ffang Apr 12, 2011 4:11 AM (in response to michal.warecki)Hi,
OK, I think I know what's wrong.
For your jaxws service, you're using http transport on port 8181.
address="http://localhost:8181/services/data-soap"
For your jaxrs service, you're using http-osgi(pax-web underlying) transport, by default http-osgi service will also use 8181 port.
Different transport try to use same listening port cause this problem.
So the solution could be.
1. you use another port for your jaxws service, like
address="http://localhost:8182/services/data-soap"
OR
2. your jaxws service also use http-osgi transport, like
address="/services/data-soap"
Freeman