Metro is a mature web services framework for Java.
-1
votes
0answers
11 views
CXF vs Metro for WS-Trust [closed]
If someone has implemented STS and WS-trust using metro or cxf , please share your feedback (on performance, support from community, ease of use and other criteria that you feel is important while ...
1
vote
1answer
27 views
How can I configure the target namespace globally in JAX-WS web services?
I have a lot of endpoints annotated with @WebService(targetNamespace = "mynamespace"). Every @WebResult and @WebParam has the same definition of targetNamespace = "mynamespace".
Is there a way to ...
0
votes
1answer
25 views
Java Metro Client Throwing WstxParsingException
I have a Metro web service client that is throwing a com.ctc.wstx.exc.WstxParsingException.
If I am reading it correctly, it's saying that "3" is an invalid XML character. Is that correct? What ...
0
votes
1answer
148 views
SOAP to XML conversion and sending it in response object
I am new to webservices,some how i managed to host a service with metro.With the help of SOAP UI and also httpUrlConnection object i am able to get SOAP response.But my next task is to send a response ...
1
vote
0answers
17 views
Metro add additional classes for marshalling
I've got a very generic wsdl which I cannot change. I generated stubs for the given wsdl using Metro. One of the stub parameter objects accept's a list of objects, which is the generic part of this ...
0
votes
0answers
43 views
Username Authentication with Symmetric Key with Metro Can not Work
Today,I want to try the Username Authentication with Symmetric Key Sample with Metro.When I use the default keystore and truststore,my service and my client work well.But when I use the keystore and ...
0
votes
0answers
55 views
SOAP over TCP with Metro
Today, I tried to use SOAP over TCP with Metro. I followed http://metro.java.net/guide/ch09.html#soaptcpc Chapter 9 of Metro User Guide step by step, but when I run the client I get an exception, as ...
0
votes
2answers
67 views
JAX-WS Invoking a webservice using Implementation specific API such as CXF
Is it possible to invoke a web service in Java without using the JAX-WS API but a specific runtime implementation API such as CXF specific API?
I have Metro on my classpath an its causing issues when ...
0
votes
2answers
45 views
Apache Camel with Metro
Apache Camel comes with components for CXF and Axis webservice frameworks. Is there a camel-metro component too ? It would be rather limiting if there was no such component, since JDK 7 comes with ...
1
vote
2answers
150 views
JAX-WS Implementation included with Java?
I have a JAX-WS web service application which deploys as a WAR file for Tomcat 7. It uses a recent version of the Metro libraries, which I include inside the WAR file, and it works fine.
I'm trying ...
0
votes
0answers
45 views
Java soap-service in runtime
Is it possible to generate soap-service in runtime from wsdl?
Which of the frameworks below have these functionality, and what is the best way to do it, using them?
Frameworks: Metro, CXF, Axis.
1
vote
0answers
143 views
java.util.Date property rendered as xs:string in xsd using JAX-WS (Apache CXF / Metro)
I generated some model classes based on a WSDL using apache cxf. I then added a jaxb bindingfile to convert all xs:dateTime and xs:date elements to java.util.date (instead of the default ...
0
votes
1answer
174 views
GlassFish Metro outbound webservice call with client certificate fails
I'm trying to connect to a partner web service using GlassFish 3.1.2.2 w/ Metro JAX-WS and I'm getting HTTP Error 403.7 - Forbidden: SSL client certificate is required.
I've imported the private key ...
0
votes
0answers
59 views
Loaded WSIT configuration error
I'm creating a java client which consumes a WCF 4.0 service. It's secured using x509 certificates and I created the client stubs using Metro 2.2.1-1. I'm getting a error message after the "Loaded WSIT ...
0
votes
0answers
125 views
JAX-WS proxies are not thread safe by default. How about the Metro implementation?
According to my research JAX-WS client proxies are not thread safe. As such, the thread safeness of the proxy is left to its implementation. According to Apache CXF, their proxies are thread-safe. How ...
1
vote
0answers
157 views
Deploy Metro Web Service with both SOAP11 and SOAP12 bindings at same URL?
I have a legacy web service that I am trying to migrate to Glassfish / Metro from Axis2, and I have stumbled across a problem:
There is a single WSDL file, with a single wsdl:service element which ...
1
vote
0answers
126 views
Invoke Metro web service from bpel
I tried to invoke a simple web service (based on Metro stack, deployed on Tomcat 7) from a bpel process and i have a problem.
When i test this web service with soapui or other similar tool, ...
2
votes
1answer
100 views
Using Moxy with Metro in tomcat
due to company requirements we can't use Glassfish as application server. Nevertheless I would like to use Moxy. So I tried to get the new Metro-version ...
4
votes
2answers
275 views
Consuming WCF Service with Digest authentication from Java
I want to create a client in Java that connects to a web service which requires Digest authentication. Since I am not familiar with java and java stack, I've made a research and came across jax-ws, ...
1
vote
0answers
91 views
Can I fix a broken XML response prior to Metro unmarshalling it?
I am using Metro to invoke a SOAP web service. I am receiving a SOAP response with an invalid character reference in the body from a server I have no control over. I want to fix the XML before Metro ...
1
vote
2answers
79 views
How to detect an audio has reaches 30 seconds into playing?
I have an audio tag that streams music from a web url. Once the song gets to over 30 seconds i want to get it to run a piece of code. Whats the best way to achieve this?
5
votes
0answers
112 views
com.sun.xml.ws.transport.local.InVmServer: sample code and experiences?
I would like to run some junit test of some of our webservices. Not just invoking the Java code, but going through javax.xml.ws.Endpoint of JAX-WS stack to ensure that things are working correctly. ...
0
votes
0answers
117 views
Webservice Endpoint timeout configuration on glassfish v2
I have an issue where we would like to restrict SOAP Webservice calls from clients by setting the timeout on Glassfish container ( or domain.xml ). I have tried to set the HTTP Service ( request ...
1
vote
0answers
217 views
Web Service calls fail with Invalid chunk header on Glassfish 3.1.2.2 + Apache2 + proxy_ajp
I have set up Apache 2.2.16 in front of Glassfish 3.1.2.2 server to provide HTTPS on TCP 443. I am using Apache proxy_http and proxy_ajp modules to relay the requests to Glassfish which is listening ...
0
votes
1answer
226 views
SOAP Web service API Key
I am currently working on a project related to fantasy football in java and would like to expose functionality via SOAP based web service. I have noticed that some existing firms share their web ...
1
vote
0answers
93 views
How to create a Metro WSIT client out of an given WSDL (created in Axis2) in netbeans?
I have a WSDL file which was generated by Axis 2 and declares security policies:
I followed the tutorials on the metro site to generate a Web Service Client in netbeans out of the WSDL. The tutorial ...
1
vote
0answers
75 views
how to build a screen sharing app on metro like the remote sharing in the store
I'm developing an application for a k12 classrooms.I need to share what's the instructor do in the users (students) PCS. I wonder if I could share using webcam ...why I can't share any video on metro ...
0
votes
0answers
24 views
1
vote
0answers
714 views
Spring metro integration cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'wss:binding'
I try to integrate metro web-service with spring. But I get errors in my applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans ...
2
votes
1answer
280 views
Retrieve plaintext WS-Security password at service endpoint with Metro + WSIT?
I'm writing a SOAP service (let's call it X) that acts as a "forwarding proxy" of sorts, replacing several elements in the body, then calling another SOAP service (Y). I would like to use the same ...
0
votes
0answers
75 views
Common method to webmethods in Metro WS 2.0
I'm creating a webservice with 11 webmethods and all of them must execute an authenticate method at begin of the execution. So, all methods would look like:
/**
* Return type depends on the method
*/
...
2
votes
1answer
144 views
Why does JAX-WS freeze while deploying any service using JAXB databinding?
I'm attempting to create a JAX-WS service that uses JAXB databinding of objects generated from the very large (900+ classes) set of Opentravel Alliance schemas.
I am able to successfully deploy a ...
0
votes
0answers
101 views
Generic type parameter in Jax-Ws and Metro implementation
I wrote a sample web service by Jax-Ws api and Metro implementation.
First I show my sample in following then ask real my question.
I defined a generic type as following:
@XmlRootElement(name = ...
0
votes
0answers
294 views
JBoss 7.1 with Spring 3.1.2 and Sun Metro 2.1.1 - Peculiar issue
I am planning to upgrade JBoss 5.1 to JBoss 7.1.1. Our application consists of Spring 3.1.2, Sun Metro Web Service 2.1.1. As per my config, Spring does not manage Sun metro web service endpoints. This ...
1
vote
1answer
459 views
Compile WS client in Java 1.5 - Missing WebService -like annotations
I am developing an application which should serve as a client to a Web Service.
I have generated source files based on the WSDL file using the wsimport utility. It works fine on my development ...
2
votes
2answers
675 views
Java web service without a web application server
We have a message processing server, which
start a few threads
processing the message
interact with the database etc.....
now the client want to have a web service server on the server, they will ...
0
votes
0answers
118 views
stop metro/wsit from adding security headers
I have a java client talking to a .Net webservice. I am using JDK 1.6.0.24. The endpoint needs the username/password token to be added to the SOAP Header. I am doing this using a handler class that ...
2
votes
1answer
2k views
Override JAX-WS version used by Weblogic 10 - Dynamic WSDL with inline schemas
Has anyone successfully updated the JAX-WS version used by Weblogic 10.3.3?
I've been trying to do what's described in the accepted answer from here for hours with no luck.
I'm using Maven to ...
3
votes
1answer
840 views
Metro vs Java's JAX-WS?
What is/are the difference/s of Java's JAX-WS and Metro? Are they the same of are they two different JAX-WS implementations?
According to my research, JAX-WS is already a part of JDK 6. However, ...
4
votes
1answer
271 views
Web Services interoperability - wsdl complex type extension
Let's say we have a Web Service that use WSDL complex type extensions. Consider the (valid WSDL) example below where Vechicle is abstract. Two types, Car and Bike, inherit from it:
...
1
vote
1answer
302 views
Error while initializing metro webservice client
Since few weeks we have some trouble with our external test environment (which is not operated by us). Our webapplication is connected to a soap webservice.
We are using:
metro 2.1.1 for the ...
1
vote
0answers
103 views
How to change protocol of schemaLocation in Metro web service
I have a web service deployed behind firewall.
Connection between firewall and WS is on 8080 port, but firewall accept requests from outside only on 443 port.
The problem is that when I open wsdl ...
0
votes
1answer
221 views
Fast Infoset not working for JAXWS Glassfish Metro
We are building a high-throughput back-end system that will be sending and retrieving variably sized byte[], a cache service. The bindings are critical for this project so we have been testing SOAP, ...
0
votes
0answers
368 views
A WebService annotation is not present on class
I created a webservice client using jax-ws 2.2.5 RI.
The classes are generated with wsimport (provided with the library, not with a JDK).
I only use jdk/jre 1.5.0_22 -not JDK 1.6- for everything ...
1
vote
2answers
659 views
How do I sign an MTOM SOAP message using SOAPHandlers?
Currently, I have two handlers, one for logging and one for signing the SOAP message (which inherently tampers with the SOAP message). Without the handler chain, MTOM works as expected, inserting a ...
1
vote
1answer
186 views
Can this java application run on Heroku?
I have no experience setting up java applications and no experience with Heroku but I have this java application I would like to know if I can easily run on Heroku.
https://github.com/difi/oxalis is ...
0
votes
0answers
116 views
WSO2: Switching client from IIS connection to ESB connection has a connection error to the service?
It is a java client using Glassfish Metro to communicate to IIS Web Services using WS-Security. However when I try to communicate to the service through the WSO2 ESB it fails.
The ESB logs show ...
0
votes
0answers
48 views
Trustore load aliases button not acitve in Netbeans 7
I'm developing a web service using a simple CalculatorWS tutorial from this link http://metro.java.net/guide/ch12.html#ahidm I try to configure mutual authentication. But when I configure truststore ...
1
vote
1answer
92 views
How can I retreive currently logged in user's name?
I have a jax-ws/metro 2.2 web service with username authentification running on glassfish 3.1.2.
How can I get the name of acutally logged in users ?
Thanks .
0
votes
0answers
149 views
how to improve jax-ws/metro performance?
Actually I have an application that use jax-ws/metro 2.2 to communicate with a glassfish server and authentificate via username authentification with symetric key.
I'm building the service from a ...
