Thank you for your help Colm.  I followed your directions and created a
client with your instructions (JavaClient.txt).  The output from the
SOAPHandlerInterceptor and Logging interceptors are in the attahced
file, StandardOut.txt.  I hope that I followed your directions
correctly.

If you think that the client should work and that the out message is
proper,  I am really thinking that the webservice fails to understand my
public key.  If so, I am thinking that the implementors of the
webservice need to correct their implementation.

-----Original Message-----
From: Colm O hEigeartaigh [mailto:[email protected]] 
Sent: Monday, February 03, 2014 9:55 AM
To: Carlos Oliva
Cc: [email protected]
Subject: Re: Client Apache CXF to a Windows webservice

No, that's not the problem. I've just looked at your Client.txt and it
is incorrect. I see two problems:

a) You are defining security actions via WSHandlerConstants.* and then
adding the properties to a  WSS4JOutInterceptor.  However, is it
unnecessary to do this, as security is configured via the
SecurityPolicy.
Get rid of from " java.util.Map<String,Object> outProps..." down to
"client.getOutInterceptors().add(wssOut);"

b) Your WS-SecurityPolicy configuration looks like:

 bindingProvider.getRequestContext().put("ws-security.username",
"mykey");
 
bindingProvider.getRequestContext().put("ws-security.callback-handler",
new KeystorePasswordCallback());

    // Encryption properties file with directions to use the keystore

bindingProvider.getRequestContext().put("ws-security.encryption.username
",
"mykey");

bindingProvider.getRequestContext().put("ws-security.encryption.properti
es",
"pbsitokhie.properties");

However, you are using the same key alias for both signature +
encryption here! You should be specifying the signature alias via
"ws-security.signature.username" + the encryption alias via
"ws-security.encryption.username". If "mykey" is your key, then I guess
the error is that the service cannot decrypt the EncryptedKey...

Colm.


On Mon, Feb 3, 2014 at 2:16 PM, Carlos Oliva <[email protected]>
wrote:

> Hi Colm,
> I just noticed that the Security element fails to appear in the list 
> of headers of the SOAPMessage.  I added a SOAPHandlerInterceptor to my

> client and listed the the headers (perhaps I need to add it in a 
> different Phase).  This is what I got:
> Message has 4 headers
> {http://www.w3.org/2005/08/addressing}Action
> {http://www.w3.org/2005/08/addressing}MessageID
> {http://www.w3.org/2005/08/addressing}To
> {http://www.w3.org/2005/08/addressing}ReplyTo
>
> The logging interceptor lists the outgoing message afterwards and the 
> Security element appears as follows:
> ><wsse:Security
> xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-ws
> se
> curity-secext-1.0.xsd"
> xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wss
> ec urity-utility-1.0.xsd" soap:mustUnderstand="true">
>
> Is it that the interceptor fails to understand the Security element as

> part of the Header?  I am asking because the webservice sends a fault 
> message back with ta text like "An error occurred when verifying 
> security for the message"
>
> -----Original Message-----
> From: Colm O hEigeartaigh [mailto:[email protected]]
> Sent: Monday, February 03, 2014 7:32 AM
> To: [email protected]
> Subject: Re: Client Apache CXF to a Windows webservice
>
> Do you have access to the logs on the service side to see why the 
> request was rejected? I don't really see anything wrong with the CXF 
> request. Could you attach the security policy that is being used?
>
> Colm.
>
>
> On Sat, Feb 1, 2014 at 9:52 PM, Carlos Oliva <[email protected]>
> wrote:
>
> > How can I mimic the message in the attached file, message.xml, with 
> > a stand-alone Apache CXF client?  The file is a trace output from 
> > support at the remote server.  I need to replicate the message 
> > described in the file without the added artifacts created be the
> tracer.
> >
> >
> >
> > I created a java client, attached file client.txt,  by replicating 
> > the
>
> > Greeter example in the Apache CXF web site.  I created the artifacts

> > with wsdl2java from the wsdl quoted in the attached file, 
> > (SecodnExchange.txt), and coded the client.  My client created the 
> > message listed in the file, SecondExchange.txt, and get the response

> > "An error occurred when verifying security for the message".  The 
> > support team for the service has told me that they had added my 
> > public
> key to their configuration.
> >
> >
> >
> > I am stuck with this problem.  It looks like the client is creating 
> > code that is very similar to the one that succeeds.  Thank you very 
> > much in advance.
> > *PRIVILEGED AND CONFIDENTIAL: This document and the information 
> > contained herein are confidential and protected from disclosure 
> > under
> Federal law.
> > This message is intended only for the use of the addressee(s) and 
> > may contain information that is PRIVILEGED and CONFIDENTIAL. If you 
> > are not the intended recipient, you are hereby notified that the 
> > use, dissemination, or copying of this information is strictly
prohibited.
> > If you received this communication in error, please erase all copies

> > of the message and its attachments and notify the sender 
> > immediately.*
> >
> >
> >
>
>
> --
> Colm O hEigeartaigh
>
> Talend Community Coder
> http://coders.talend.com
>
>
>
>


--
Colm O hEigeartaigh

Talend Community Coder
http://coders.talend.com



import servicecontracts.hie.acs._2009._10.PartnerHIEService;
mport servicecontracts.hie.acs._2009._10.IPartnerHIEService;

import javax.xml.namespace.QName;
import java.net.URL;
 
import org.apache.cxf.endpoint.Client;
import org.apache.cxf.frontend.ClientProxy;
import org.apache.cxf.transport.http.HTTPConduit;
import org.apache.cxf.transports.http.configuration.HTTPClientPolicy;
import org.apache.cxf.interceptor.LoggingInInterceptor;
import org.apache.cxf.interceptor.LoggingOutInterceptor;

import java.util.Set;
import javax.xml.namespace.QName;
import javax.xml.soap.SOAPMessage;
import javax.xml.ws.handler.MessageContext;
import javax.xml.ws.handler.soap.SOAPHandler;
//import javax.xml.ws.handler.soap.SOAPHeader;
import javax.xml.soap.SOAPHeader;
import javax.xml.ws.handler.soap.SOAPMessageContext;
//import javax.xml.ws.handler.soap.SOAPMessage;
import javax.xml.soap.SOAPMessage;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import java.util.List;
import java.util.ArrayList;
import javax.xml.soap.SOAPException;

import org.apache.cxf.binding.soap.interceptor.SoapOutInterceptor;

public final class Hello2KHIE {
 
    private static final QName SERVICE_NAME = new 
QName("http://ACS.HIE.ServiceContracts/2009/10";, "PartnerHIEService");
 
    private Hello2KHIE() {
        try {
                java.io.File wsdlFile = new java.io.File("khie.wsdl");
                URL wsdlURL;
                if (wsdlFile.exists()) {
                        wsdlURL = wsdlFile.toURI().toURL();
                } else {
                        wsdlURL = new 
URL("http://kentuckyhieuat.acsmessaging.com/PartnerHIEService/PartnerHIEService.svc?wsdl";);
                }
                //wsdlURL = new 
URL("http://kentuckyhieuat.acsmessaging.com/PartnerHIEService/PartnerHIEService.svc?wsdl";);
                PartnerHIEService ss = new PartnerHIEService(wsdlURL, 
SERVICE_NAME);
                IPartnerHIEService port = 
ss.getWSHttpBindingIPartnerHIEService();

                // Okay, are you sick of configuration files ?
                // This will show you how to configure the http conduit 
dynamically
                Client client = ClientProxy.getClient(port);
                client.getInInterceptors().add(new LoggingInInterceptor());
                client.getOutInterceptors().add(new LoggingOutInterceptor());

                // More settings
                javax.xml.ws.BindingProvider bindingProvider = 
(javax.xml.ws.BindingProvider)port;

                client.getOutInterceptors().add(new 
MyInterceptor(bindingProvider.getBinding()));

                // Security
                
//bindingProvider.getRequestContext().put("ws-security.username", "mykey");
                
bindingProvider.getRequestContext().put("ws-security.callback-handler", new 
KeystorePasswordCallback());

                // Signature properties
//ws-security.signature.username
                
bindingProvider.getRequestContext().put("ws-security.signature.username", 
"mykey");
                
bindingProvider.getRequestContext().put("ws-security.signature.properties", 
"pbsitokhie.properties");


//ws-security.encryption.username
                // Encryption properties file with directions to use the 
keystore
                
bindingProvider.getRequestContext().put("ws-security.encryption.username", 
"mykey");
                
bindingProvider.getRequestContext().put("ws-security.encryption.properties", 
"pbsitokhie.properties");

                // About to issue the call
                System.out.println("Invoking sayHi...");
                String message = 
"TVNIfF5+XCZ8UEJTSS1FSFJ8UGF1bF4xNzEwOTQ3ODE3XkROU3xLWUlSfENEUHwyMDEzMTIxNzE1MDcyNXxsb2NhbGhvc3R8VlhVXlYwNF5WWFVfVjA0fDEwNTI5fFB8Mi4zLjF8fHxBTApQSUR8MXwxMjJ8VzdIQzRIXl5eXk1SfHxQRVJTT05eR1JVTVBZfHwxOTk1MDcxNHxNfHxXXldoaXRlXkVFT3w4ODggQ0lSQ0xFIENPVVJUXl5VTklPTl5LWV40MTA5MV5VU15QfHxeXl5eXjg1OV41NTU1NTV8Xl5eXl5efEVuXkhMNzAyOTZ8U3x8MTc4LTExfDB8fHxOXkVFTwpQVjF8MXxSfE9eXl4xJlR1cmZ3YXkgUm9hZHxSfHx8MTcxMDk0NzgxN15KYW5zb25eUGF1bF5NRHx8fHx8fHx8fHx8fHxWMDEKUlhBfDB8MXwyMDEzMTIxNzE1MDc1OXwyMDEzMTIxNzE1MDc1OXwxNDleaW5mbHVlbnphLCBsaXZlLCBpbnRyYW5hc2FsLCBxdWFkcml2YWxlbnReQ1ZYXjkwNjcyXklORkxVRU5aQSBWSVJVUyBWQUNDSU5FIExJVkUvUVVBRFJJVkFMRU5UXkM0fDF8MDBeXklTTyt8fHwxNzEwOTQ3ODE3XkphbnNvbl5QYXVsXl5NRF5eXl5eXl5eTlBJfFBhdWwgSi4gSmFuc29uLCAgTS5ELiwgUFNDXl5eVHVyZndheSBSb2FkXl5eXjczNzAgVHVyZndheSBSb2FkICMyODBeXkZsb3JlbmNlXktZXjQxMDQyfHx8fEJMMjE0OXwyMDE0MDMyNHxNRUReTWVkSW1tdW5lLCBJbmMuXk1WWHx8fHxBClJYUnxPVEheT3RoZXIvTWlzY2VsbGFuZW91c15ITDcwMTYyfEJOXkJpbGF0ZXJhbCBOYXJlc15ITDcwMTYz";
                long insensitivity = (long)60;

                String resp = null;
                resp = port.sendHIEMessageWithTimeInsensitivity("PBSI", 
"D3A2A2B3-E1EC-42DA-8CDC-940D79D5A7D1", "1760657738", null, null, 
"PBSIProvider", "HL7", "VXU^V04", message, insensitivity);


            System.out.println("Invoking pingMe, expecting exception...");
        } catch (java.net.MalformedURLException ex) {
             ex.printStackTrace();
        } catch (Exception ex) {
            //System.out.println("Expected exceptions: Has occurred.");
            //System.out.println(ex.toString());
            ex.printStackTrace();
        }

    }

 
  public static void main(String args[]) throws Exception
  {
    try {
        Hello2KHIE hello = new Hello2KHIE();

      System.out.println("Invoking pingMe, expecting exception...");
    } catch (Exception ex) {
      System.out.println("Expected exception: PingMeFault has occurred.");
      System.out.println(ex.toString());
    }
    System.exit(0);
  }
}

// Keystore handler
class KeystorePasswordCallback implements 
javax.security.auth.callback.CallbackHandler {
    java.util.Map<String, String> passwords = new java.util.HashMap<String, 
String>();
    public KeystorePasswordCallback() {
        passwords.put("mykey", "rmi+ssl");
        passwords.put("khiekey", "khiepass");
    }
    public void handle(javax.security.auth.callback.Callback[] callbacks) 
throws java.io.IOException, 
javax.security.auth.callback.UnsupportedCallbackException {
        for (int i = 0; i < callbacks.length; i++) {
            org.apache.ws.security.WSPasswordCallback pc = 
(org.apache.ws.security.WSPasswordCallback)callbacks[i];
            String pass = passwords.get(pc.getIdentifier());         
             if (pass != null) {
                pc.setPassword(pass);
                return;
            }
        }
    }
    public void setAliasPassword(String alias, String password) {
        passwords.put(alias, password);
    }
}

class MyInterceptor extends 
org.apache.cxf.jaxws.handler.soap.SOAPHandlerInterceptor {

        public MyInterceptor(javax.xml.ws.Binding binding) {
                super(binding);
        }

        public void handleMessage(org.apache.cxf.binding.soap.SoapMessage 
message) {
                if ( message.hasHeaders()) {
                        System.out.println("Message has headers");
                        // Loop over headers
                        java.util.List<org.apache.cxf.headers.Header> headers = 
message.getHeaders();
                        System.out.println("Message has " + headers.size() + " 
headers");
                        for (int i=0; i<headers.size(); i++) {
                                org.apache.cxf.headers.Header hdr = 
headers.get(i);
                                System.out.println(hdr.getName());
                        }

                } else {
                        System.out.println("Message lacks headers");
                }
        }
}

INFO: Creating Service 
{http://ACS.HIE.ServiceContracts/2009/10}PartnerHIEService from WSDL: 
file:/home/carlos/khie/ApacheTestThree/khie.wsdl
Invoking sayHi...
Message has headers
Message has 4 headers
{http://www.w3.org/2005/08/addressing}Action
{http://www.w3.org/2005/08/addressing}MessageID
{http://www.w3.org/2005/08/addressing}To
{http://www.w3.org/2005/08/addressing}ReplyTo
log4j:WARN No appenders could be found for logger 
(org.apache.xml.security.Init).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more 
info.
Feb 3, 2014 10:11:26 AM 
org.apache.cxf.services.PartnerHIEService.WSHttpBinding_IPartnerHIEService.IPartnerHIEService
INFO: Outbound Message
---------------------------
ID: 1
Address: 
http://kentuckyhieuat.acsmessaging.com/PartnerHIEService/PartnerHIEService.svc
Encoding: UTF-8
Http-Method: POST
Content-Type: application/soap+xml; action="SendHIEMessageWithTimeInsensitivity"
Headers: {Accept=[*/*]}
Payload: <soap:Envelope 
xmlns:soap="http://www.w3.org/2003/05/soap-envelope";><soap:Header><Action 
xmlns="http://www.w3.org/2005/08/addressing"; 
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
 wsu:Id="Id-1151109057">SendHIEMessageWithTimeInsensitivity</Action><MessageID 
xmlns="http://www.w3.org/2005/08/addressing"; 
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
 
wsu:Id="Id-1067102222">urn:uuid:6ef1bedb-4891-419f-a6ac-e93db98972d1</MessageID><To
 xmlns="http://www.w3.org/2005/08/addressing"; 
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
 
wsu:Id="Id-622596956">http://kentuckyhieuat.acsmessaging.com/PartnerHIEService/PartnerHIEService.svc</To><ReplyTo
 xmlns="http://www.w3.org/2005/08/addressing"; 
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
 
wsu:Id="Id-1446711308"><Address>http://www.w3.org/2005/08/addressing/anonymous</Address></ReplyTo><wsse:Security
 
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
 
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
 soap:mustUnderstand="true"><wsse:BinarySecurityToken 
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary";
 
ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3";
 
wsu:Id="X509-DB3948F33CF53A3C8413914402861656">MIIFojCCBIqgAwIBAgIHS2p0Iw7tSDANBgkqhkiG9w0BAQUFADCB3DELMAkGA1UEBhMCVVMxEDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOTA3BgNVBAsTMGh0dHA6Ly9jZXJ0aWZpY2F0ZXMuc3RhcmZpZWxkdGVjaC5jb20vcmVwb3NpdG9yeTExMC8GA1UEAxMoU3RhcmZpZWxkIFNlY3VyZSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTERMA8GA1UEBRMIMTA2ODg0MzUwHhcNMTIwNDA2MTM0ODA2WhcNMTUwNDA2MTM0ODA2WjBfMRwwGgYDVQQKExNzdXJlZGV2LnBic2luZXQuY29tMSEwHwYDVQQLExhEb21haW4gQ29udHJvbCBWYWxpZGF0ZWQxHDAaBgNVBAMTE3N1cmVkZXYucGJzaW5ldC5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDr8aoq8zLBtZjLopNikUMApUPf/MXm34TsmaE3int8EgycHMMgesCR4vRR+JNMiabkQnESPbEeGA3rlpWwgPA2EXoPylZ1Xfml0DEEiiPqfpxSHa4koZVXE33GuO79LjX4PeeKw+T4dYDgW48ilzzpeqEWKyV2ovbdhQjryrusLN0XarTq9Kl5NiNyIahY3bSP0P/UG0FKqhU5LwDCZggXLLlyzQ404lQ3/F22g7nikPhccSuK9RGEDmOfRfxFDx6PEOG+LI3VKwPqDupkLZqIAbDC9ar2R0WzYNv6UO0OEEIRVkmx1hEEgoNAQK404xZDJfllHaK2liAvf649FXxHAgMBAAGjggHjMIIB3zAPBgNVHRMBAf8EBTADAQEAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwOQYDVR0fBDIwMDAuoCygKoYoaHR0cDovL2NybC5zdGFyZmllbGR0ZWNoLmNvbS9zZnMxLTIyLmNybDBZBgNVHSAEUjBQME4GC2CGSAGG/W4BBxcBMD8wPQYIKwYBBQUHAgEWMWh0dHA6Ly9jZXJ0aWZpY2F0ZXMuc3RhcmZpZWxkdGVjaC5jb20vcmVwb3NpdG9yeS8wgY0GCCsGAQUFBwEBBIGAMH4wKgYIKwYBBQUHMAGGHmh0dHA6Ly9vY3NwLnN0YXJmaWVsZHRlY2guY29tLzBQBggrBgEFBQcwAoZEaHR0cDovL2NlcnRpZmljYXRlcy5zdGFyZmllbGR0ZWNoLmNvbS9yZXBvc2l0b3J5L3NmX2ludGVybWVkaWF0ZS5jcnQwHwYDVR0jBBgwFoAUSUtSJ9EbvPKhIWpie1FCeorX1VYwNwYDVR0RBDAwLoITc3VyZWRldi5wYnNpbmV0LmNvbYIXd3d3LnN1cmVkZXYucGJzaW5ldC5jb20wHQYDVR0OBBYEFLatFa+KYAWpewc5D41Lc0g2c2tuMA0GCSqGSIb3DQEBBQUAA4IBAQA2D6mDtsxCXACB8aprX60ACRSHeUuITnU6FsDwqaqWc8VSWmvVnH1s30wHNecZS30rz4p0iBK1qPnuUFTKO4o6XxHeTMb8dKQJvaxhA5wlubN2U3oO9L61j4Tz9GHA7T63zvaVfACOxUyJ0wa0l5rmNm1Bx5e5uJrj0IuVPC9BHqFmppvJp7mEGHcgkfSwB6oAL3WhGDOsXfFupeK+hXBtG9Ma1HsD0XWjjiGRQauiE0UoYnxh8LF5WN2MU4tMz/yExy4W4YwtR66RfdZk4NLlEYNdSNSr3sUOWxDK3omGZd7xtPfErR9sDlb6fWVnAwuAuHl7XtR63jnOgXpK0hvE</wsse:BinarySecurityToken><wsu:Timestamp
 
wsu:Id="TS-DB3948F33CF53A3C8413914402852651"><wsu:Created>2014-02-03T15:11:25.262Z</wsu:Created><wsu:Expires>2014-02-03T15:16:25.262Z</wsu:Expires></wsu:Timestamp><xenc:EncryptedKey
 xmlns:xenc="http://www.w3.org/2001/04/xmlenc#"; 
Id="EK-DB3948F33CF53A3C8413914402861262"><xenc:EncryptionMethod 
Algorithm="http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p"/><ds:KeyInfo 
xmlns:ds="http://www.w3.org/2000/09/xmldsig#";><wsse:SecurityTokenReference 
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";><wsse:KeyIdentifier
 
EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary";
 
ValueType="http://docs.oasis-open.org/wss/oasis-wss-soap-message-security-1.1#ThumbprintSHA1";>Z2w2rni3srj+H+/xsx4xycOb0+4=</wsse:KeyIdentifier></wsse:SecurityTokenReference></ds:KeyInfo><xenc:CipherData><xenc:CipherValue>i0h2QPvA82OO4Jvp86VI7xwmPTmG+ca48s2LslpduaiyAUb7MCyjiUPeE7E62hAAX+ZLVZW8Rr4Z9tReUeQKd1YAvreqOyqkedrlmOrrpB0wqIgMtrI80qDOk6xV6ZPrCXIhbFN8UhOSKPpFBeDvM9uiTkSJPvx+p3assGZbuRXusUSon9dAaIwa5EgaZW9eCXu49jQVwpfEc1wIinWkC/YsyHNeT0nXLxMYHMvoThrEHXuuci56FJqXZ2pXXvBBXE6RQ69xVKIUl8x/hvVHCSQS4hnl+cDeeWVMNMKdEikevMAhfuPeRlxVW30BCNxGfRU/XMqaD21XUjjAso2LwA==</xenc:CipherValue></xenc:CipherData></xenc:EncryptedKey><wsc:DerivedKeyToken
 xmlns:wsc="http://schemas.xmlsoap.org/ws/2005/02/sc"; 
wsu:Id="DK-DB3948F33CF53A3C8413914402861827"><wsse:SecurityTokenReference 
xmlns:wsse11="http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd";
 
wsse11:TokenType="http://docs.oasis-open.org/wss/oasis-wss-soap-message-security-1.1#EncryptedKey";
 wsu:Id="STR-DB3948F33CF53A3C8413914402861828"><wsse:Reference 
URI="#EK-DB3948F33CF53A3C8413914402861262" 
ValueType="http://docs.oasis-open.org/wss/oasis-wss-soap-message-security-1.1#EncryptedKey"/></wsse:SecurityTokenReference><wsc:Offset>0</wsc:Offset><wsc:Length>24</wsc:Length><wsc:Nonce>+862Q7NO3hlsK8yHnXe8Qg==</wsc:Nonce></wsc:DerivedKeyToken><wsc:DerivedKeyToken
 xmlns:wsc="http://schemas.xmlsoap.org/ws/2005/02/sc"; 
wsu:Id="DK-DB3948F33CF53A3C84139144028635413"><wsse:SecurityTokenReference 
xmlns:wsse11="http://docs.oasis-open.org/wss/oasis-wss-wssecurity-secext-1.1.xsd";
 
wsse11:TokenType="http://docs.oasis-open.org/wss/oasis-wss-soap-message-security-1.1#EncryptedKey";
 wsu:Id="STR-DB3948F33CF53A3C84139144028635414"><wsse:Reference 
URI="#EK-DB3948F33CF53A3C8413914402861262" 
ValueType="http://docs.oasis-open.org/wss/oasis-wss-soap-message-security-1.1#EncryptedKey"/></wsse:SecurityTokenReference><wsc:Offset>0</wsc:Offset><wsc:Length>32</wsc:Length><wsc:Nonce>dhwrkjb6xLDccS33mprROQ==</wsc:Nonce></wsc:DerivedKeyToken><xenc:ReferenceList
 xmlns:xenc="http://www.w3.org/2001/04/xmlenc#";><xenc:DataReference 
URI="#ED-DB3948F33CF53A3C84139144028640715"/><xenc:DataReference 
URI="#ED-DB3948F33CF53A3C84139144028641516"/><xenc:DataReference 
URI="#ED-DB3948F33CF53A3C84139144028642217"/></xenc:ReferenceList><xenc:EncryptedData
 xmlns:xenc="http://www.w3.org/2001/04/xmlenc#"; 
Id="ED-DB3948F33CF53A3C84139144028641516" 
Type="http://www.w3.org/2001/04/xmlenc#Element";><xenc:EncryptionMethod 
Algorithm="http://www.w3.org/2001/04/xmlenc#aes256-cbc"/><ds:KeyInfo 
xmlns:ds="http://www.w3.org/2000/09/xmldsig#";><wsse:SecurityTokenReference 
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";><wsse:Reference
 URI="#DK-DB3948F33CF53A3C84139144028635413" 
ValueType="http://schemas.xmlsoap.org/ws/2005/02/sc/dk"/></wsse:SecurityTokenReference></ds:KeyInfo><xenc:CipherData><xenc:CipherValue>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</xenc:CipherValue></xenc:CipherData></xenc:EncryptedData><xenc:EncryptedData
 xmlns:xenc="http://www.w3.org/2001/04/xmlenc#"; 
Id="ED-DB3948F33CF53A3C84139144028642217" 
Type="http://www.w3.org/2001/04/xmlenc#Element";><xenc:EncryptionMethod 
Algorithm="http://www.w3.org/2001/04/xmlenc#aes256-cbc"/><ds:KeyInfo 
xmlns:ds="http://www.w3.org/2000/09/xmldsig#";><wsse:SecurityTokenReference 
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";><wsse:Reference
 URI="#DK-DB3948F33CF53A3C84139144028635413" 
ValueType="http://schemas.xmlsoap.org/ws/2005/02/sc/dk"/></wsse:SecurityTokenReference></ds:KeyInfo><xenc:CipherData><xenc:CipherValue>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</xenc:CipherValue></xenc:CipherData></xenc:EncryptedData></wsse:Security></soap:Header><soap:Body
 
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
 wsu:Id="Id-1423685690"><xenc:EncryptedData 
xmlns:xenc="http://www.w3.org/2001/04/xmlenc#"; 
Id="ED-DB3948F33CF53A3C84139144028640715" 
Type="http://www.w3.org/2001/04/xmlenc#Content";><xenc:EncryptionMethod 
Algorithm="http://www.w3.org/2001/04/xmlenc#aes256-cbc"/><ds:KeyInfo 
xmlns:ds="http://www.w3.org/2000/09/xmldsig#";><wsse:SecurityTokenReference 
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";><wsse:Reference
 URI="#DK-DB3948F33CF53A3C84139144028635413" 
ValueType="http://schemas.xmlsoap.org/ws/2005/02/sc/dk"/></wsse:SecurityTokenReference></ds:KeyInfo><xenc:CipherData><xenc:CipherValue>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</xenc:CipherValue></xenc:CipherData></xenc:EncryptedData></soap:Body></soap:Envelope>
--------------------------------------
Feb 3, 2014 10:11:26 AM 
org.apache.cxf.services.PartnerHIEService.WSHttpBinding_IPartnerHIEService.IPartnerHIEService
INFO: Inbound Message
----------------------------
ID: 1
Response-Code: 500
Encoding: UTF-8
Content-Type: application/soap+xml; charset=utf-8
Headers: {Cache-Control=[private], connection=[close], Content-Length=[648], 
content-type=[application/soap+xml; charset=utf-8], Date=[Mon, 03 Feb 2014 
15:11:07 GMT], Server=[Microsoft-IIS/6.0], X-AspNet-Version=[2.0.50727], 
X-Powered-By=[ASP.NET]}
Payload: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope"; 
xmlns:a="http://www.w3.org/2005/08/addressing";><s:Header><a:Action 
s:mustUnderstand="1">http://www.w3.org/2005/08/addressing/soap/fault</a:Action><a:RelatesTo>urn:uuid:6ef1bedb-4891-419f-a6ac-e93db98972d1</a:RelatesTo></s:Header><s:Body><s:Fault><s:Code><s:Value>s:Sender</s:Value><s:Subcode><s:Value
 
xmlns:a="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";>a:InvalidSecurity</s:Value></s:Subcode></s:Code><s:Reason><s:Text
 xml:lang="en-US">An error occurred when verifying security for the 
message.</s:Text></s:Reason></s:Fault></s:Body></s:Envelope>
--------------------------------------

Reply via email to