views:

40

answers:

1

Is there any issues with providing several different formats of web services from the same application server?

+1  A: 

In general, I don't see why there should be issues. I've done this in WebSphere with no trouble. I can't see a reason why this should be problematic in other app servers.

The only minor complications I could think of could come from the particular frameworks you might chose to use for example Wink for REST and JAX/WS. These might in turn pre-req different versions of libraries, so you might need to take care with classpaths etc.

djna