簡體   English   中英

帶有XML :: Compile :: SOAP :: WSS和Perl的WSSE

[英]WSSE with XML::Compile::SOAP::WSS and Perl

所以我在將wsse標頭添加到我的SOAP請求時遇到了一些問題。

#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
use Env qw( CYBS_ID CYBS_KEY );
use XML::Compile::Util qw( pack_type );
use XML::Compile::WSDL11;
use XML::Compile::SOAP::WSS;
use XML::Compile::SOAP11;
use XML::Compile::Transport::SOAPHTTP;

my $soap = XML::Compile::SOAP11::Client->new;

my $wsdl = XML::Compile::WSDL11->new(
    'CyberSourceTransaction_1.62.wsdl'
);

$wsdl->importDefinitions('CyberSourceTransaction_1.62.xsd');

my $call = $wsdl->compileClient( operation => 'runTransaction');

my ( $answer, $trace ) = $call->(
    wsse_Security => {
        version => '1.1',
        schema => {
            Username => $CYBS_ID,
        }
    },
    merchantID            => $CYBS_ID,
    merchantReferenceCode => '42',
);

say $trace->printRequest;

這是我得到的輸出

mistake: tag `wsse_Security' not used at {urn:schemas-cybersource-com:transaction-data-1.62}requestMessage
warning: Internal Server Error
Request:
  POST https://ics2wstest.ic3.com/commerce/1.x/transactionProcessor HTTP/1.1
  User-Agent: libwww-perl/6.02
  Content-Length: 381
  Content-Type: text/xml; charset="utf-8"
  SOAPAction: "runTransaction"
  X-LWP-Version: 6.02
  X-XML-Compile-Cache-Version: 0.991
  X-XML-Compile-SOAP-Version: 2.24
  X-XML-Compile-Version: 1.22
  X-XML-LibXML-Version: 1.84

以及生成的xml

  <?xml version="1.0" encoding="UTF-8"?>
  <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><data:requestMessage xmlns:data="urn:schemas-cybersource-com:transaction-data-1.62"><data:merchantID>obfuscated</data:merchantID><data:merchantReferenceCode>42</data:merchantReferenceCode></data:requestMessage></SOAP-ENV:Body></SOAP-ENV:Envelope>

回報?

1

早些時候,我嘗試了my $wss ...代碼...,但是那也不起作用。

這是我嘗試生成的實際請求

<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
    soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" 
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
      <wsse:UsernameToken>
        <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">obfuscated</wsse:Password>

        <wsse:Username>obfuscated</wsse:Username>
      </wsse:UsernameToken>
    </wsse:Security>
  </soap:Header>

  <soap:Body>
    <requestMessage xmlns="urn:schemas-cybersource-com:transaction-data-1.61">
      <merchantID>obfuscated</merchantID>

      <merchantReferenceCode>404</merchantReferenceCode>
    </requestMessage>
  </soap:Body>
</soap:Envelope>

也許有人對我如何添加wsse標頭有所了解?

更新

我可以得到這種肥皂

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header><wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"/></SOAP-ENV:Header>

但是我嘗試放入wsse_Security都導致了如下錯誤:

mistake: tag `foo' not used at {http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security

foo等於我嘗試的任何標簽。

我在發行版中添加了示例,以演示如何執行此操作。 另外,我添加了一種方法,可以幫助您生成這種特定的登錄方式。 作為XML-Compile-WSS版本0.12發布

my $call     = $wsdl->compileClient($operation);
my $security = $wss->wsseBasicAuth($username, $password);

my ($answer, $trace) = $call->
( wsse_Security => $security
, %payload
);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM