Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
5k views

JAX-WS vs. JAX-RPC

I wrote 2 webservices, one with Jax-WS and one with Jax-RPC. They just return a String. I stress-tested both with jMeter and, strangely, thereby Jax-RPC was a bit faster. When do I really profit of ...
5
votes
1answer
636 views

Get attachments from a JAX-WS WebService with a JAX-RPC Client

As we migrate from JAX-RPC to JAX-WS I'm trying to Call a WebService, which uses JAX-W/JAXB. The client itself is still using JAX-RPC. The WSDL File is kept the same. This works fine, as long, as ...
5
votes
5answers
9k views

Axis2's wsdl2java fails on RPC/Encoded style web services

Is there any alternative to Axis2? Or the way to make it work (different data binding, for example)? Retrieving document at '...'. Exception in thread "main" ...
4
votes
1answer
138 views

Complex type with single array element throws marshalling exception

We have JAX-RPC style web service, with a complex type defined as follows: <xs:complexType name = "SomeFault"> <xs:sequence> <xs:element name = "errorMessages" ...
3
votes
2answers
217 views

Where can i find the JAX-WS version shipped with Java 6?

I'm using Java 6 for learning more about web Services (JAX-WS). I also read that JAX-WS latest version is available with Metro, i.e. If you're not using JDK6 and planning to use JAX-WS, you can use ...
3
votes
1answer
109 views

How to mock entire JAX-RPC communication session?

I have a legacy application, which is working with third-party web service through JAX-RPC. Now I need to unit-test the application by mocking certain XML RPC calls with test data. Actually, I need to ...
3
votes
2answers
4k views

JAX-RPC support in Netbeans 6.9.1

I am trying to generate new Web Service Client. When choosing Client Style to JAX-RPC Style I get a notification from Netbeans: "You must download JAX-RPC support plugin to create a JAX-RPC Client". ...
3
votes
3answers
3k views

Java web service, xsd date instead of dateTime

In Java EE 1.4 using JAX-RPC 1.1, how can i expose web service, so the wsdl has a complex type (person) where one of the properties of the person is a date which is shown in the WSDL/XSD as only a ...
3
votes
2answers
665 views

Polymorphism in JAX-RPC web services

I have a JAX-RPC (Java) web service that needs to return a complex polymorphic value. To be more specific, the class structure is something like this: abstract class Child { } class Question ...
2
votes
2answers
257 views

Best way to consume RPC/encoded webservice?

I need to consume old-school RPC/encoded WSDL webservice for my backend (Spring & Apache CXF). At first I tried to use Apache CXF and JAX-WS for that, but JAX-WS wsimport tool doesn't eat ...
2
votes
1answer
84 views

Are JAX-RPC and Axis2 protected against XML Injection?

Do JAX-RPC and Axis2 have built-in support for XML injection? If not, how can I add custom code to perform escaping and schema validations on my own? Edit: I looked at the code generated by ...
2
votes
2answers
1k views

RPC/Encoded Jboss problem

I'm running jboss-4.2.1.GA to generate WS requests. I have created the WS client with the help of JWSDP-2.0/JAXRPC. I have deployed the client to Jboss and I am now trying to send requests. When I ...
1
vote
0answers
17 views

JAX-RPC 1.1 and Holder class

I need to create a new web service in Eclipse using File/New/Web Service. I'm using Tomcat 6 and Axis. During creating a new web service I receive following warning: The service class "XXX" ...
1
vote
1answer
33 views

wscompile JAX-RPC generates Calendar object instead of Date

I have a problem when generating java classes from WSDL using JAX-RPC wscompile ANT task. My ant script: <taskdef name="wscompile" classname="com.sun.xml.rpc.tools.ant.Wscompile" ...
1
vote
0answers
41 views

JAX-RPC remoting of enum

I wrote a function using a enum for filtering with this signature: /** * Match a profile with other profiles meaning they are similar. * * @param profileId * the profile to match * ...
1
vote
1answer
53 views

Forwarding requests from one web service to another

So the case is the following: I have an application that communicates with a JAX-RPC web service (Hosted in an .ear package on a JBoss server). We had a requirement of moving all the operations in ...
1
vote
1answer
211 views

Getting Exception while generating the WebService when HashMap is passed as parameter

I am trying to create a webservice which takes a VO and VO contains a parameter of type Map. I wrote this simple Service and trying to create the webservice out of it. While creating the webservice I ...
1
vote
1answer
718 views

Pass client certificate to web service without setting system-wide properties

I'm trying to pass client certificate to a web service using JAX-RPC implementation. (the web service is in rpc-encoded style). So far, I am able to do it by setting system properties: ...
1
vote
2answers
241 views

Exposing C++ program as a Web Service

How to expose a C++ program as a Web Service? Or is it a better idea to invoke C++ from Java and expose the resultant Java as a Web Service. In any case, the C++ program should not undergo any ...
1
vote
0answers
46 views

Is it possible to access the raw SOA/XML message in a JAX-RPC java client?

I am trying to access the XML response via a JAX-RPC java client. I have been looking into Axis custom handlers, but it looks like they are useful only in the service side.
1
vote
1answer
321 views

Way to place a bad request in a dead-letter queue when using JAX-RPC?

I'm using JAX-RPC 1.1 to generate services for a set of applications running on WAS 6.0, communicating via Websphere MQ. A mainframe will be sending messages to the services, so if for some reason ...
1
vote
3answers
561 views

Java web service client:

I'm developing a web service client that needs to execute operation exposed on tomcat with axis2. The client has all the wsdl files that are needed. I can't import them statically with netbeans or ...
1
vote
2answers
4k views

JAX-RPC, Spring web services, and UnsupportedOperationCallException

I have a JAX-RPC web service that I am attempting to consume using Spring. This is my first time using Spring to consume a web service, so right now I'm just trying to get it to integrate with the ...
1
vote
4answers
2k views

Consuming web services with jboss

Can someone point me a good step-by-step tutorial to consuming an already running web service in java? PS: I tried creating the classes with wsconsume, but it cries with [ERROR] rpc/encoded wsdls are ...
0
votes
0answers
20 views

Consuming overloaded methods in a .Net Webservice from Java

I'm trying to access this webservice http://webservices.esalestax.net/CertiTAX.NET/certicalc.asmx?wsdl. It's a .Net implementation with overloaded methods. I have no problems accessing it from .Net. ...
0
votes
1answer
23 views

JAX RPC Client in C#

I have to implement JAX RPC 1.1 client in C#. I have searched but haven't found anything satisfying,except http://www.yaldex.com/java_tutorial_2/Fly0090.html. Please provide some more helpful ...
0
votes
1answer
44 views

Printing the raw XML of a SOAP request/response using JAX-RPC

We are using JAX-RPC and wanted to know if there is a way to make JAX-RPC print the raw SOAP Request/Response for debug purposes. I'm looking for a JAX-RPC solution and not a Web Server solution ...
0
votes
1answer
46 views

ur-type with JAX-RPC or XSLT-ing the response via a Handler

So we've got ourselves a lovely vintage PHP WS we must integrate via JAX-RPC and this WS delivers some responses as follows: <return SOAP-ENC:arrayType="SOAP-ENC:Array[1]" ...
0
votes
0answers
107 views

Converting an old JAX RPC WSDL file to a JAX WS WSDL file

I was wondering if is there some way to convert an old RPC WSDL file to a JAX-WS WSDL file. Tried my best to make sure I did my homework but I'm kind of lost here. From what I've read, I should ...
0
votes
0answers
72 views

WsCompile script failed during client generation

I have a problem generating a WS client from a WSDL using NetBeans-5.5.1 (Please don't suggest that I change it since that's a requirement at work). I'm using JAX-RPC. After choosing to add a new web ...
0
votes
1answer
76 views

JDK5 + Axis2 : How to create a WS with URL encoded parameters?

I have Tomcat 5.5 + Axis2 1.5.5 + 2 servlets running. One of my servlet is a custom servlet that runs axis2 too. I have WEB-INF and all subdirectories under it (conf, lib, services and modules). Now, ...
0
votes
0answers
65 views

JAX-RPC with Axis2

I have been researching this like crazy, and have not been able to find an answer. Is there any possible way to use JAX-RPC with Axis2? I know Axis2 is compatible with JAX-WS, but I have not been ...
0
votes
0answers
361 views

HTTP transport error: java.net.MalformedURLException: no protocol: REPLACE_WITH_ACTUAL_URL

I am using a Stub Based client Approach for JAX RPC This is my Client package com; import java.rmi.RemoteException; import javax.xml.rpc.ServiceException; import com.client.BookCatalog; import ...
0
votes
0answers
55 views

JAX RPC Stub properties and Handlers

Is it possible to set a parameter in a stub and then have its value available in a handler? I'm trying to call MyInter_Stub stub = (MyInter_Stub) (new MyInterService_Impl() ...
0
votes
1answer
24 views

JAXRPC Messaging Style and Format

I am a beginer to Web services , trying to learn JAX RPC I have read that , for the Message Style and Message Format . Its always better to go with the combination of Document Literal . Is this true ...
0
votes
0answers
50 views

Can I get the source IP of a SOAP call done with JAX-RPC?

I need to know the IP of whoever sent me a SOAP request - I'm using JAX-RPC and cannot seem to find how I can get the IP from it. As far as I can tell - only the generated code has access to it and ...
0
votes
1answer
138 views

Dynamic Soap Url with Jax-rpc and netbeans

when generating a web service client in netbeans 6.9 I would like the ability to dynamically load the soap endpoint url from a config (Properties) file (e.g. dev vrs production urls). How can I ...
0
votes
0answers
89 views

How to generate JAX-RPC 1.0 instead of 1.1 in myEclipse?

How can I generate a WSDL file with JAX-RPC 1.0 specification by using MyEclipse? I have this tutorial to create a JAX-RPC web service, but all WSDL files generated follows the JAX-RPC 1.1 ...
0
votes
0answers
466 views

Why isn't my authentication of a SOAP web service working?

I have a web service implementation for weblogic 9.2, created with jswc. It needs to call another web service and I have created the stubs for that with the clientgen attribute to jswc. Jswc/clientgen ...
0
votes
2answers
390 views

Web Service dynamic invocation from WSDL at runtime

I'm looking for a solution of dynamic web service client such as DII from JAX-RPC. I need to generate a client from a WSDL. But the WSDL is only known at runtime (so I don't have any available ...
0
votes
0answers
288 views

Securing J2EE 1.4 Webservice in JDeveloper

I have a web service created in JDeveloper using J2EE 1.4 (JAX-RPC) wizards. I need to run it over a SSL on an Oracle Application Server that is configured for supporting HTTPS. EDIT: I have created ...
0
votes
1answer
132 views

JAX-RPC webservice serialization issue on WAS6.1 test environment

I'm trying to pass Vector of complex objects as a result of a WS method. I'm following a JavaBeans scheme and all Collections are replaced by Vectors already, but I'm still getting a serialization ...
0
votes
4answers
2k views

Dozer deep mapping not working

I am trying to use dozer 4.1 to map between classes. I have a source class that looks like this: public class initRequest{ protected String id; protected String[] details } I have a ...
0
votes
1answer
878 views

JAX-WS client with Axis service

I'm relatively new to web services, but I need to integrate a call to an existing service in my application. Ideally, I'd like to use JAX-WS because I'm looking for the simplest, quickest-to-develop ...
0
votes
1answer
432 views

simple WSDL and JAX RPC mapping file generating tools

guys, what are the simple tools for generating WSDL and JAX RPC mapping files from java ServiceEndPoint Interface. or I just need that generates JAX RPC mapping file generator
0
votes
1answer
600 views

Accessing Spring-WS service with JAX-RPC client model

I have deployed a service using spring-ws and accessed it using <bean id="messageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory"/> <bean id="webServiceTemplate" ...
0
votes
1answer
1k views

JAX-RPC GenericHandler fails on Websphere Application Server v6.0.2.35

I've created an Extension of GenericHandler called SOAPHeaderHandler. I placed log4j statements in the handler and can see the constructor being built. When I generate a SOAP message, however, I don't ...
0
votes
3answers
650 views

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?
0
votes
1answer
776 views

com.sun.xml.rpc.tools.ant.Wscompile cannot be found

Hi I need to use a service at http://mihansmscenter.com/webservice/?wsdl so i should use jax-rpc i add jax-rpc plugin to my netbeans then righ click on my project > New > Web service client ...
0
votes
2answers
492 views

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) { ...

1 2