Questions tagged [jax-rpc]

JAX-RPC is a technology for building web services and clients that use remote procedure calls (RPC) and XML

JAX-RPC stands for Java API for XML-based RPC. Often used in a distributed client-server model, an RPC mechanism enables clients to execute procedures on other systems.

In JAX-RPC, a remote procedure call is represented by an XML-based protocol such as SOAP. The SOAP specification defines the envelope structure, encoding rules, and conventions for representing remote procedure calls and responses. These calls and responses are transmitted as SOAP messages (XML files) over HTTP.

Although SOAP messages are complex, the JAX-RPC API hides this complexity from the application developer. On the server side, the developer specifies the remote procedures by defining methods in an interface written in the Java programming language. The developer also codes one or more classes that implement those methods. Client programs are also easy to code. A client creates a proxy (a local object representing the service) and then simply invokes methods on the proxy. With JAX-RPC, the developer does not generate or parse SOAP messages. It is the JAX-RPC runtime system that converts the API calls and responses to and from SOAP messages.

With JAX-RPC, clients and web services have a big advantage: the platform independence of the Java programming language. In addition, JAX-RPC is not restrictive: a JAX-RPC client can access a web service that is not running on the Java platform, and vice versa. This flexibility is possible because JAX-RPC uses technologies defined by the World Wide Web Consortium (W3C): HTTP, SOAP, and the Web Service Description Language (WSDL). WSDL specifies an XML format for describing a service as a set of endpoints operating on messages.

Read more

173 questions
0
votes
1 answer

error: invalid type for JAX-RPC structure: jspf.common.ForumPost

I have to make a web service using JAX-RPC for a project and I get error: invalid type for JAX-RPC structure: jspf.common.ForumPost when trying to compile it. We have to use JDK 5 and J2EE 1.4. I'm using Netbeans 7.0 with the JAX-RPC plugin and…
ldam
  • 4,412
  • 6
  • 45
  • 76
0
votes
0 answers

Java 5 compatible classes with jwsc/jws task

We are compiling all our jars with target="5" so that the class files remain compatible with the older servers still running JDK5. Unfortunately, the web service compiled by jwsc takes the default java version, in this case 6.
Eric Darchis
  • 24,537
  • 4
  • 28
  • 49
0
votes
1 answer

online tool for generating stubs for webservices jax-rpc

is there any tool that generates stubs for RPC style wsdl online. I used the Netbeans plugin for RPC and tried to create one. But while executing the app I am getting errors like while calling a function. java.rmi.RemoteException: Runtime exception;…
Mobiz Tech Team
  • 182
  • 3
  • 12
0
votes
1 answer

IBM WebSphere JAX-RPC Client Compression

Does anyone know where I can find documentation to support compression of JAX-RPC web service requests from a client using client-side handlers? I'm looking to compress requests using gzip, and I…
agadzik
  • 41
  • 1
  • 7
-1
votes
1 answer

Is J2EE 1.3 in End of Life stage?

Would you please advise whether the following J2EE 1.3 specifications are in End-of-Life stage and there is no support from Oracle and IBM for these specifications? JAXP 1.1, JAX-RPC 1.1, EJB 2.0, JCA 1.0, JSP 1.2 and Servlet 2.3
Raj
  • 29
  • 1
  • 4
-1
votes
1 answer

Creating new SOAP web service with JAVA

We are planning to create a new Web Service using RSA 7.5 and Websphere 7. But not able to understand whether to use JAX-RPC or JAX-WS. I know that JAX-RPC is the older one and the newer one is JAX-WS. Is there some specific advantage of one above…
user182944
  • 7,897
  • 33
  • 108
  • 174
-2
votes
1 answer

what is the difference between jax-rpc and jax-ws web services?

what is the difference between jax-rpc and jax-ws web services? How to migrate legacy code using jax-rpc to jax-ws?
-2
votes
1 answer

NetBeans doesn't start after installing JAX-RPC plugin

Before marking my question as duplicate, I have gone through these questions Question 1 Question 2 Question 3 But still no luck. I have been trying since 1 week now, tried every possible solution on the internet but after installing JAX-RPC plugin…
Sharp Edge
  • 4,144
  • 2
  • 27
  • 41
1 2 3
11
12