Search code examples
eclipsejakarta-eejax-ws

What alternative for ArrayList using JAX-WS?


I'm using JAX-WS and i need to export a method that returns an ArrayList of Object, the issue is that JAX-WS doesn't support ArrayList. my question is "Is there way to send my Objects ?"

NB : i'm not using any Framework


Solution

  • I found an answer, i just changed the return type of the method to MyObject[], since jax-ws accepts this type of returns.