I am new to J2ME . I am trying to create a Web service client for my JAX-WS based web service. Is it possible to use JAX-WS to create webservice client or I need to stick to JAX-RPC.
As far as I know, no, you can't. You need to stick to JAX-RPC. Actually it's not really JAX-RPC. It's a subset of JAX-RPC.
SCJP 5.0, SCWCD 1.4, SCBCD 1.3, SCDJWS 1.4
My Blog
lokesh jain
Ranch Hand
Joined: Feb 21, 2009
Posts: 58
posted
0
Yes, you can do it. You can do it using Netbeans.
regards
Lokesh
Lester Burnham
Rancher
Joined: Oct 14, 2008
Posts: 1337
posted
0
The client is independent of the technology used on the server. It may not be possible to use a JAX-WS toolkit to create JME client code for your WS, but there should be no difficulty in creating a client some other way - check if your device supports JSR 172. As a last resort, you can always create XML programmatically and send that over an HTTP connection.