Questions tagged [wsit]

Web Services Interoperability Technologies.

WSIT (previously known as Project Tango), an integrated part of GlassFish V2, is an open source implementation of the key enterprise Web services technologies, commonly known as WS-*. The technologies are divided into three main areas: Security, Reliability, and Transactions.

41 questions
7
votes
2 answers

WSIT/Metro doesn't understand Security SOAP header

I'm using WSIT/Metro to create a simple web-service. I'm getting the following error on the server when a client tries to connect with a simple username/passowrd authentication scheme: 2010.03.31. 19:10:33 com.sun.xml.ws.protocol.soap.MUTube…
Lóránt Pintér
  • 10,152
  • 14
  • 47
  • 53
6
votes
1 answer

WSIT, Maven, and wsimport -- Can They Work Together?

I'm working on a small-ish multi-module project in Maven. We've separated the UI from the database layer using Web Services, and thanks to the jaxws-maven-plugin, the creation of the WSDL and WS client are more or less handled for us. (The plugin is…
rtperson
  • 11,632
  • 4
  • 29
  • 36
5
votes
1 answer

WSIT Metro version 2.3 WSRM1124 error

We have a java application running on a JVM (IBM jdk and not Oracle's) inside of a Tomcat v7 server with the following properties JVM info Java Version: 1.6.0 Java Vendor: IBM Corporation Java Specification Version: 1.6 Java Specification Vendor:…
cheframzi
  • 156
  • 6
4
votes
1 answer

Rename all the exception classes who are generated with wsimport

When a generate my code with wsimport using a .net wsdl I've got extreme long exception classes like [servicename][operationname]FaultFaultFaultMessage. I know how to rename each single exception but can I use a jaxb .xjb file to "template" all the…
Stijn Vanpoucke
  • 1,425
  • 3
  • 17
  • 30
4
votes
1 answer

WSIT does not understand SOAP Security header after request with custom security header

I am writing a Java web services client using Metro/WSIT libraries, and the web services I need to hit are WCF services. (I have little to no control over the service-side and the WSDLs.) The web services are secured with both transport-level…
Kevin Hart
  • 73
  • 6
3
votes
0 answers

WSIT, policy settings for client side in Netbeans and Metro JAX-WS RI

The published wsdl of the web-service we work with has a Policy tag. But after we create a client using wsimport and Netbeans, it would not allow to edit any attributes of WSIT settings. In Apache CXF you can supply the attributes via API. As far as…
EugeneP
  • 11,783
  • 32
  • 96
  • 142
3
votes
1 answer

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 WS-Security credentials (plaintext username and…
Justin Garrick
  • 14,767
  • 7
  • 41
  • 66
2
votes
1 answer

Using WSIT security on web service with self signed certificates (Glassfish)

I used this guide to create certificates for Metro: http://www.jroller.com/gmazza/entry/using_openssl_to_create_certificates So I now have servicestore.jks and clientstore.jks. When I check the keystores I see that the PrivateKeyEntry in…
kikujiro8
  • 31
  • 1
  • 4
2
votes
1 answer

NetBeans: How to create a web service client that consumes a SSL protected Metro service?

I am trying to add a web service reference to my application in NetBeans 7.0.1. The Metro webservice is protected with SSL and is hosted on the same computer that I want to run the client on. I am using the 'New Web Service Client' wizard, but when…
Daniel Szalay
  • 4,041
  • 12
  • 57
  • 103
2
votes
1 answer

What are the differences between Transport Security and Message Authentication over SSL?

What are the differences between Metro WSIT's Transport Security and Message Authentication over SSL? Transport Security: The Transport Security mechanism protects your application during transport using SSL for authentication and…
Daniel Szalay
  • 4,041
  • 12
  • 57
  • 103
2
votes
2 answers

Can I use WCF wsHttpContextBinding with WSIT (Metro) clients?

I am working on a WCF - WSIT (Metro) integration project and I would like to allow Java clients to connect to Durable Services. Durable Services http://msdn.microsoft.com/en-us/library/bb410767(v=vs.90).aspx Durable services require…
Jeno Laszlo
  • 2,023
  • 18
  • 36
2
votes
2 answers

WSIT: JKS relative filepath

When creating a web service server using Netbeans, Maven, Metro and Tomcat, how can I use relative filepaths in the wsit configuration? For example, I have this line inside the wsit file:
Jose Antonio
  • 444
  • 5
  • 15
2
votes
0 answers

My custom STS cannot resolve UseKey token on RST generated by Metro framework

I have my own STS using Geneva framework. There is an endpoint with MutualCertificateBinding, as following Using AsymmetricSecurityBindingElement ProtectionLevel is Sign Over https I have copied a part of its wsdl as below for…
phuongle
  • 41
  • 5
2
votes
1 answer

Metro & StreamBuffer namespace error - am I understanding this correctly?

All, I'm (still) working on calling a WSE 3.0 .NET web service from Java/Metro 2.0. We've got the security requirements set so that we're encrypting the body & header of the messages & signing the headers. I'm able to send a request to their…
elduff
  • 1,178
  • 3
  • 14
  • 22
2
votes
2 answers

Ws-Security headers using Metro

I have a web service which implements WS-Security but does not define a policy in the WSDL. I am able to consume this web service successfully using Axis 2 as client. I am trying to consume the same web service using Metro 2 but the wsse:security…
Bhushan Bhangale
  • 10,921
  • 5
  • 43
  • 71
1
2 3