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
0 answers

Error during publishing of web service for insertion and seaching of data in database

First i created a webservice for simple get and set method and published that web service successfully. After that i created a websevice which have methods to insert and search data from oracle database using jdbc connection but when i am trying to…
Krishna
  • 795
  • 2
  • 7
  • 24
0
votes
1 answer

JDeveloper 11g JAX-RPC Web Service Client Unable to Parse WSDL

We're trying to migrate a JDev 10g to 11g project. We had some old JAX-RPC clients created that had to upgraded, which didn't work, so I recreated the clients in JDev 11g using the Web Service Client wizard (based off of the service WSDL, default…
Michael Fan
  • 97
  • 1
  • 11
0
votes
1 answer

Axis 1.4 Ant build-related dependency issue

My Axis 1.4 project runs correctly on the target machine when compiled in Netbeans. However, if I compile the project using my own Ant build script (which completes successfully), the application freezes on the source line: Call call = (Call)…
JoseHeitor
  • 61
  • 1
  • 7
0
votes
1 answer

Soap client cannot connect to web service after bea weblogic deployment

I wrote below method to call soap client which connects to web service. below code work fine in test class but after deploy my war into bea weblogic9 i got HTTP/1.1 500 error. and i am can not what is wrong in my code as it works fine…
0
votes
0 answers

There is an error in XML document (1, 504)

i use this wsdl service http://ws.adpdigital.com/services/MessagingService?wsdl in c# when i run it in windows application it's ok but when i run it as a windows service that give me an error exception.message : There is an error in XML document…
HoseinEghbal
  • 95
  • 1
  • 10
0
votes
1 answer

Error in executing JAX-RPC

Help me on this exception , Occurs during calling wcf webservice Log by netbeans Exception in thread "main" java.lang.ExceptionInInitializerError at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:107) at…
prakash singh
  • 101
  • 1
  • 9
0
votes
3 answers

Can Groovy be a client to JAX-RPC-style web service?

Apparently, Groovy easily consumes web services. Can it consume a web service that needs JAX-RPC instead of JAX-WS? Should I use an older version of Groovy or its libraries to do so?
Paul
  • 245
  • 3
  • 14
0
votes
1 answer

JAX RPC service returning a map like structure

I do know that the hashmap data structure is not allowed in JAX-RPC webservice. But i would like to return data which looks like this in my service. Atrribute,,Atrribute,,Atrribute, .. Any idea how would i do…
Nick Loach
  • 333
  • 1
  • 3
  • 8
0
votes
1 answer

Weblogic WebService client dependencies

I would like to ask which would be the correct jar files needed to a functional ws client to an authenticated weblogic JAX-RPC. Situation: I created the same WS client on Jdeveloper and on OEPE. When I run in the IDE, my client only works on…
0
votes
2 answers

Create a simple web services using JAX-RPC in Apache Axis

I want to create a simple web services in Jax-RPC using Apache Axis. I also want to implement spring nature to it. I am new to Jax-RPC, could some share some references. Thanks.
Patan
  • 17,073
  • 36
  • 124
  • 198
0
votes
2 answers

Java JAX-RPC NoClassDefFoundError

I am new to JAX-RPC. I tried creating a simple Java bean in RAD 7.0, and went through the options to create a JAX-RPC webservice. My method is as below. public byte[] getData(byte[] argument) { proxy = new (); …
Subramanian
  • 5,552
  • 5
  • 25
  • 24
0
votes
2 answers

How to get the WS operation name in Handler using JAX RPC?

I have written a handler to construct my SOAP headers, but i am going to use it for different operations. Now depending on operation, some of the header names change. So i need to know which operation is getting called, based on which i will change…
The Dark Knight
  • 5,455
  • 11
  • 54
  • 95
0
votes
1 answer

Unexpected JAXRPC endpoint, this version is not supported 1.1

I'm trying to compile a webservice through NetBeans 6.7 using Glassfish v3 as the host is there anyway to fix this issue: 'Unexpected JAXRPC endpoint, this version is not supported 1.1'
monksy
  • 14,156
  • 17
  • 75
  • 124
0
votes
1 answer

Exception - org.springframework.remoting.jaxrpc.JaxRpcPortProxyFactoryBean

I see this on URL: localhost:8080/Remo HTTP ERROR 503 Problem accessing /Remo. Reason: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'contactDAOImpl': Injection of autowired dependencies failed; nested…
0
votes
1 answer

JAX-WS web service using a JAX-RPC (AXIS1) client

I am new to web service. Can anyone please tell me if JAX-WS web service can be accessed using a JAX-RPC (AXIS1) generated client stub?
vishal Kumar
  • 95
  • 3
  • 8
1 2 3
11
12