WS-Addressing header: prefix

Hello,
Can anybody tell me the difference of the following ws-addressing headers? How is it handled inside the engine?
Working one - (this works)
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:add="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:sal="http://www.globalcompany.com/ns/sales">
<soapenv:Header>
<ReplyTo xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing">
<Address>http://localhost:8097/bpel/someWSACallBack</Address>
</ReplyTo>
<add:MessageID>MyFirstOutProgram17</add:MessageID>
</soapenv:Header>
Non-working one - (this one fails and CallBack is skipped, although I do not see the difference in terms of xml format)
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:add="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:sal="http://www.globalcompany.com/ns/sales">
<soapenv:Header>
<add:ReplyTo>
<add:Address>http://localhost:8097/bpel/someWSACallBack</add:Address>
</add:ReplyTo>
<add:MessageID>MyFirstOutProgram17</add:MessageID>
</soapenv:Header>
Any explanation is appreciated.
ey

Hi Chintan,
I started the obtunnel specified different listening port define that port in patnerlink.
all i see is WSDL of Asyn BPEL process in TCPMonitor.
When I do invoke BPEL process to do Request/Response i get nothing in TCPMonitor.
Is there anything else I need to set?
Thanks

Similar Messages

  • In Preview, how do I remove the web address header and foot?

    In Preview, how do I remove the web address header and foot?
    Thank you
    Peter

    If you are referring to the preview of a webpage that you printed then in Safari in the Print dialog box is a tick box labelled 'Print headers and footers', if you untick this then they will not be included in the printout and also not included in the PDF version viewed in Preview.
    PS. You have to have 'show details' enabled in the Print Dialog to see the above option.

  • Ws-addressing Header logging?

    Hi,
    I have BPEL web service which calls another BPEL Asynchronous web service. Is it possible to see Asynchronous web service call-back ws-addressing header anywhere in BPEL logging?
    Cheers
    Val

    Hi Chintan,
    I started the obtunnel specified different listening port define that port in patnerlink.
    all i see is WSDL of Asyn BPEL process in TCPMonitor.
    When I do invoke BPEL process to do Request/Response i get nothing in TCPMonitor.
    Is there anything else I need to set?
    Thanks

  • Change ReplyTo in WS-Addressing Header

    Hi,
    i have created an async webservice with JAX-WS and i want to consume this by using BPEL. All works fine with correlationSet. But in the SOAP-Header the ReplyTo-Address is wrong.
    <addr:ReplyTo xmlns:addr="http://www.w3.org/2005/08/addressing">
    <addr:Address>http://www.w3.org/2005/08/addressing/none</addr:Address>
    </addr:ReplyTo>
    Now i want to change this address to my callback endpoint. I have tried the following thing:
    <bpel:copy>
    <bpel:from>
    <bpel:literal>
    <wsa:EndpointReference>
    <wsa:Address>http://localhost:9999/AppWS-Project1-webapp/SayHelloService</wsa:Address>
    <wsa:ReferenceProperties>
    <wsa:To>http://localhost:9999/AppWS-Project1-webapp/SayHelloService</wsa:To>
    <wsa:Action>http://service.blablubb.de/SayHello/sayHello</wsa:Action>
    <wsa:ReplyTo>
    <wsa:Address>http://localhost:8082/ode/processes/SayHelloCallbackService</wsa:Address>
    </wsa:ReplyTo>
    </wsa:ReferenceProperties>
    </wsa:EndpointReference>
    </bpel:literal>
    </bpel:from>
    <bpel:to variable="partnerReference"></bpel:to>
    </bpel:copy>
    <bpel:copy>
    <bpel:from variable="partnerReference"></bpel:from>
    <bpel:to partnerLink="SayHelloPL"></bpel:to>
    </bpel:copy>
    But the header of the SOAP message looks like this:
    <soapenv:Header>
    <addr:To xmlns:addr="http://www.w3.org/2005/08/addressing">http://localhost:9999/AppWS-Project1-webapp/SayHelloService</addr:To>
    <addr:Action xmlns:addr="http://www.w3.org/2005/08/addressing">http://service.blablubb.de/SayHello/sayHello</addr:Action>
    <addr:ReplyTo xmlns:addr="http://www.w3.org/2005/08/addressing">
    <addr:Address>http://www.w3.org/2005/08/addressing/none</addr:Address>
    </addr:ReplyTo>
    <addr:MessageID xmlns:addr="http://www.w3.org/2005/08/addressing">urn:uuid:90B0298DB6676D41EE1285233228820</addr:MessageID>
    </soapenv:Header>
    Can anyone tell me whats wrong?
    greets spaxx86

    I solved it! There is a bug (included 11.1.1.6) in the Jdev-property dialog and documentation. You have to remove the prefix bpel.replyToAddress/wsa.replyToAddress in the bpel source code to bpelx:replyToAddress (see below). Additionally I set explicitly on the partnerlink reference the ws-addressing policy and disable the local optimization like this:
    <reference name="AsyncReplyMep"
    ui:wsdlLocation="http://si.com:7001/soa-infra/services/default/AsyncReplyMep/AsyncReplyBPELProcess.wsdl">
    <interface.wsdl interface="http://xmlns.oracle.com/AsyncReplyMep/AsyncReplyBPELProcess#wsdl.interface(AsyncReplyBPELProcess)"
    callbackInterface="http://xmlns.oracle.com/AsyncReplyMep/AsyncReplyBPELProcess#wsdl.interface(AsyncReplyBPELProcessCallback)"/>
    <binding.ws port="http://xmlns.oracle.com/AsyncReplyMep/AsyncReplyBPELProcess#wsdl.endpoint(asyncreplybpelprocess_client_ep/AsyncReplyBPELProcess_pt)"
    location="http://si.com:7001/soa-infra/services/default/AsyncReplyMep/asyncreplybpelprocess_client_ep?WSDL"
    soapVersion="1.1">
    <wsp:PolicyReference URI="*oracle/wsaddr_policy*"
    orawsp:category="addressing"
    orawsp:status="enabled"/>
    <property name="*oracle.webservices.local.optimization">false</property>*
    </binding.ws>
    Hint to resolve the bug is described under: http://docs.oracle.com/cd/E23549_01/doc.1111/e14771/bpel.htm
    20.1.5 Do Not Specify the wsa and bpel Property Prefixes with the bpelx:property
    Tables H-1 and H-2 of Appendix H, "Normalized Message Properties" of the Oracle Fusion Middleware Developer's Guide for Oracle SOA Suite describe the Oracle BPEL Process Manager and Oracle Web Services Addressing properties.To use these properties correctly with the bpelx:property in activities such as a receive activity, ensure that you do not include the wsa. or bpel. prefixes. For example:
    <receive name="receiveInput" partnerLink="bpelprocessb_client"
    portType="client:BPELProcessB" operation="process" variable="inputVariable"
    createInstance="yes">
    <bpelx:property name="action" variable="v1"/>
    <bpelx:property name="messageId" variable="v2"/>
    <bpelx:property name="relatesTo" variable="v3"/>
    *<bpelx:property name="replyToAddress"* variable="v4"/>
    <bpelx:property name="replyToPortType" variable="v5"/>
    <bpelx:property name="replyToService" variable="v6"/>
    </receive>
    Edited by: bmaier on Aug 27, 2012 12:08 AM

  • Full Email Address Header for Viruses and Spam?

    I have been googling all day and trying to find out a method to display the full email header to display on the iPhone.
    Most email clients (both web based and program based) have a method by which you can view the "original" message or the email header information. In the original message viewing one is able to see the entire mail header.
    Most of already know that a person can send an email from an email server and pretend to be anybody they want. They populate the "name" the "pretend email address" it is coming from, the same address as the "reply to" (so it looks legit) and so forth. What the email header also contains, which I am not able to see on the iPhone is where the email was actually sent from (the email server it originated from) which is KEY to identifying and dealing with spam/virus types of email.
    In the world of spam and virus laden emails, I have yet to find a way to display this information using the iPhone.
    As a prime example..... There is a trojan virus out there saying facebook has changed your password and for you to open their .zip file for your new password. You can click on the FROM address contact link (showing the sender is "The Team" in the iPhone email client and it will open up the information it has in a contact type window. In the example mentioned above, if you do this it just says it is coming from "The Facebook Team" and show an email address of: [email protected]. Seeing this information one must automatically assume the email is legit right??? Of course it isn't. The people sending out the email just put that information in there to make it appear as if it is a legit email from a legit person/organization/company. However if one can actually see the email header itself one would easily be able to see the email's origination server/email-server did not come from facebook itself.(therefore automatic spam)
    To help protect spam and potential virus laden emails from appearing to be coming from some "so-called valid email address" a method is needed in order to verify/validate who is actually sending the email itself so as to effectively and accurately identify these types of email and aid in the reporting of these emails to the appropriate organizations directly on our iPhones.
    Is there any way to view the full email content header on mails received from other accounts on our iPhone to deal with spam/virus related emails we receive on our iPhones via Push? Or are we to have to wait and launch our email client in order to handle this (seems silly to have to need a computer to handle this as the iPhone is a computer is many aspects running a real operating system)?
    Thanks in Advance for any replies.

    To my knowledge there is no way to get message headers or source in the iPhone’s mail application. Because of apple's restrictions on third party apps, I doubt you'll see an app that does this as well. As tedious as it is, using Safari is your only choice.
    You can make suggestions to apple here:
    http://www.apple.com/feedback/

  • Address card prefixs in Mail

    Is it possible to have Mail include the Address Card (name) prefix in the address fields of a new message? How? Thanks

    Sorry...Found the answer here
    https://discussions.apple.com/message/9835979#9835979

  • Return Secondary SMTP Addresses that prefix with SMTP

    I am running the following command which returns a few properties along with all the secondary addresses. The issue I need to resolve is to filter all secondary addresses which do not begin with "smtp". I also do not want to return
    the case sensitive version of smtp: "SMTP"
    Output Below:
    Get-Mailbox UnityVM -DomainController DC05-ResultSize Unlimited | Where {(!($_.RecipientTypeDetails -Match "RoomMailbox|SharedMailbox"))} | Select-Object DisplayName,alias,Identity,ServerName,RecipientTypeDetails,PrimarySmtpAddress, @{Name=“SecondaryAddresses”;Expression={$_.EmailAddresses
    -join "`n"}}

    This thread appears to be abandoned.  Here is the crux post by the OP.  I reformatted for clarity
    Get-Mailbox crusso -DomainController DC01 -ResultSize Unlimited |
    Where {(!($_.RecipientTypeDetails -Match "RoomMailbox|SharedMailbox"))} |
    Select-Object DisplayName,
    alias,
    Identity,
    ServerName,
    RecipientTypeDetails,
    PrimarySmtpAddress,
    Name="SecondaryAddresses";
    Expression={
    $mbx.EmailAddresses|Where {$_.ProxyAddressString -cmatch '^smtp:'}
    The OP asked a specific and narrow question but has added a convoluted and unstated complexity at the end. I suspect the thread was abandoned when the OP realized the problem.  In reality most of the solutions answer the original question.  The
    legerdemain actually alters the question.
    Look closely at the whole code snippet and note that the OP has no understanding of PS and has just blindly added the examples into code that was likely copied from yet another forum.
    Using PowerShell without the brain disengaged is foolish.  It is like flying an airplane blindfolded.  It can be done but often leads to a crash.
    Notice how I was able to adeptly slip in "the word of the day" and yesterday's "word of the day" and now tomorrow's "word of the day".  Pretty good, huh?
    Ciao..  a presto!
    ¯\_(ツ)_/¯

  • I am using Mail with OS 10.9.1...I used to be able to drag and drop contact addresses from my address book to an e-mail header.  Now I have to type all the names and can't drag and drop.  Is there a setting for this?  Thanks!

    I am using Mail with OS 10.9.1.  I used to be able drag and drop names from my address book into the address header, but can no longer do that.  I now have to type each name in.  Does anyone know if there is a setting for this or is it a feature of the updated software?  Thanks for any info!

    Yes, that appears how Mavericks works right now. However, you can open the Address Panel, select all your contacts, then click the To (or CC, or Bcc) buttons to move the selection to the address field.
    If it is not already in the Toolbar, right-click on the Toolbar and select Customize Toolbar…
    Then, drag the address panel up to wherever you want it.
    You may also want to add it to the New Message window in the same way.

  • Displaying icon in address bar

    Hi,
    please let me know how can we display an icon in the address bar (prefixed to the url)
    i am using tomcat , jsps with struts frame work.
    Thanks in Advance

    Just put following line to your page and point the href to your icon file.
    For additional information search google for favicon
    <head>
        <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"/>
    </head>

  • Invoice data repeating Address after page break

    Hello forum mebers,
    i have a problem to create a rtf template which prints invoice data with more than one address.
    The original data has more than one invoice to print all papers within one output.
    It is for repeat printing. I want to mark several invoices to print.
    The source data is splitting into header information (Address,Invoice number,summaries), invoice positions and company information (client).
    How to create the xml source ?
    How to create the word rtf template to repeat the invoice address on each page also if the first invoice has more than one page.
    I have tried the <?template feature, but this only repeats the first address of the data.
    I have tried the <?start:body feature, but this creates all addresses on the first page.
    I have tried the <?split-by-page-break feature, but this creates no repeating address header.
    I am clueless.
    Do you have any help or example for this problem ?
    Regards
    Frank

    Hallo Jorge,
    danke für die Antwort und das RTF, aber soweit war ich auch schon.
    Wenn mann jetzt noch sortiert nach ID und einen Header (template) und Footer hinzufügt, funktioniert es nicht mehr.
    Gruß
    Frank

  • Can I have Mail format the "From" field based on my Address book entries?

    I have most of my contacts in my address book, but Mail still displays the "From" field in the message list pane with the normal email address header.
    Here's an example:
    User A emails me a message from this address:
    "User A" <[email protected]>
    In my Address Book, I have User A's info as this:
    First Name: Bob
    Last Name: Marley
    Email Address: [email protected]
    In Mail, though, the "From" field in the message list view still says ...
    User A
    ... when I want it to say ...
    Bob Marley
    Does that make sense? How can I do this?

    All you need is a plug adaptor, if required. Apple sells an adapter kit:
    http://store.apple.com/us/product/MB974ZM/B?fnode=MTY1NDEwMQ&mco=MTA4NDE3MDQ

  • Mail, how can you remove an image that shows up in the header?

    I have no idea how this image got where it is, but I would like to remove it. When I open Mail, I see in the address area of the email as it displays in the message viewer, to the very right of that area, there is an image, that I have no idea how it got there or how to remove. The following is a link (I think) Mail/Users/alaska_juliens/Desktop/Picture 7.png ...... that shows what I am talking about. I have gone through my signatures and made sure that image isn't in there and it isn't. Please help, it is driving my husband nuts, we would love to change the image to his company logo if possible, but we don't know if that image even shows up when others receive email from us or not (we email ourselves and it is right there in the address header of the email). Thank you for your time and help.
    Mail/Users/alaska_juliens/Desktop/Picture 7.png

    Typically what shows up there is the address book picture for that contact. If they attach an image it will be added to the address book.
    So go to the contact in address book and change or delete the image.

  • IPv6 Address Management and Security Questions

    I'm trying to draft an IPv6-based version of our location's current routing configuration in anticipation of when our ISP will finally roll it out, and address management has been giving me the biggest headache - ironic, considering IPv6 was supposed to simplify address allocation.
    My first config draft was made assuming that I would be getting a static /56 or /60 prefix from the ISP, and I was just going to insert the prefix into my DHCP pools and there would be no issues. That was before reading around and discovering that some ISPs are considering prefix delegation (PD) for both residential and business accounts instead of static blocks. Now I have questions about how to stick as close to the current IPv4 configuration as possible.
    For the PD scenario, what I am looking at now are two addresses ranges for each network - a ULA /120 space that I want to control using stateful DHCPv6, and the global space which can be /64 and auto-configured. That way there will be a "private" address space for internal routing in the event of a prefix change or an extended outage. But I'm not sure how the config should look for such a scenario. What I have drafted so far is this:
    ipv6 dhcp pool DHCP6_INTERNAL
     address prefix FDAB::1:0/120
     domain-name whatever.net
     dns-server FDAB::1:1
    ipv6 dhcp pool DHCP6_DMZ-WIFI
     address prefix FDAB::2:0/120
     domain-name guest.whatever.net
     dns-server FDAB::2:1
    interface GigabitEthernet0
     description WAN-LINK
     ipv6 enable
     ipv6 address dhcp
     no ipv6 unreachables
     no ipv6 redirects
     ipv6 flow ingress
     ipv6 flow egress
     ipv6 virtual-reassembly in
     ipv6 nd autoconfig default-route
     ipv6 dhcp client pd hint ::/56
     ipv6 dhcp client pd ISP-PREFIX
     zone-member security OUTSIDE
     speed auto
     duplex auto
     no cdp enable
    interface FastEthernet8.1
     description VLAN_1-INTERNAL
     encapsulation dot1Q 1 native
     ipv6 enable
     ipv6 address FDAB::1:1/120
     ipv6 address ISP-PREFIX ::1:0:0:0:1/64
     ipv6 flow ingress
     ipv6 flow egress
     ipv6 virtual-reassembly in
     zone-member security INSIDE
     ip tcp adjust-mss 1300
     ipv6 dhcp server DHCP6_INTERNAL
     ipv6 nd managed-config-flag
     ipv6 nd other-config-flag
    interface FastEthernet8.2
     description VLAN_2-DMZ-WIFI
     encapsulation dot1Q 2
     ipv6 enable
     ipv6 address FDAB::2:1/120
     ipv6 address ISP-PREFIX ::2:0:0:0:1/64
     ipv6 flow ingress
     ipv6 flow egress
     ipv6 virtual-reassembly in
     zone-member security DMZ
     ip tcp adjust-mss 1300
     ipv6 dhcp server DHCP6_DMZ-WIFI
     ipv6 nd managed-config-flag
     ipv6 nd other-config-flag
    Will this config work? By which I mean: will the DHCPv6 servers provide ULA addresses, and will SLAAC work for global address allocation? If not, what needs to be changed?
    Also, another question. I found a few references to a prefix name (the "ISP-PREFIX") which can be used as part of a static IPv6 address on an interface, which is a good idea in case the prefix changes. But that brings up another concern - if the prefix changes, that will invalidate ACLs referencing the global addresses using the previous prefix. Is there anything similar to the prefix name string that can be used in ACLs to keep this from occurring?

    DHCPv6-PD is not necessarily dynamic the same way as DHCP was with the public IPv4 addresses in the IPv4 world.
    While the outside network (PPPoE, DHCPv6, anything) might be truly dynamic and changing with possibly every login session, the DHCPv6 delegated prefix might be tied to your login credentials or DHCPv6 client's DUID after the first connection. A bit like a DHCP lease reservation.
    If that is the case, there is some possibility that your ISP will run reverse route injection, and will always route your "fixed" prefix  to the currently active dynamic "outside" address.
    Talk to your ISP and have them confirm that, once the PD'd /48 or /56 is initially assigned, it won't change, and that the same prefix will be delegated every time. Then you can treat it as if it were fully static, and you won't have to go down the ULA path.
    I contacted one of our local ISPs, and they're doing it exactly that way: PPPoE for IPv4 and IPv6 (fully dynamic), and DHCPv6-PD with the /48 tied to the PPPoE login credentials. I might change to that ISP sooner or later.
    With my current ISP, my IPv6 access is 6RD based. I get a /60, with my current public ipv4 address (by DHCP) embedded into those 60 bits. Readressing is bound to happen sooner or later, and it happens every so often, and it breaks my IPv6 ACLs.
    I'm also looking for a way to write IPv6 ACLs with wildcard bits, not prefix/mask, so I can use them with ZBFW. So far, no sign of it.
    A few more comments:
    ULA addressing: 
    It may look tempting, plausible and intuitive to use dual global and ULA addressing. 
    I started this way as well. However, it turns out that Windows 7 has (had?) some issues with proper source address selection. The "longest common prefix" rule never seemed to work properly. In some cases, it would pick the global address to talk to ULA hosts, or stubbornly insist to use the ULA address to talk to an IPv6 internet host. It was a frustrating experience. Be sure to test this to the full extent (and back, and again and then some more) with every operating system you intend to use.
    Using /120:
    Be sure to test this as well, and very thoroughly. Subnet masks longer than /64 are sometimes called "uncharted territory" in IPv6. Longer subnet masks will break SLAAC, and there may be (embedded) devices that will not react benevolently to a subnet mask other than /64, or simply lack support for DHCPv6.
    adjust-mss
    I see you have "ip tcp adjust-mss 1300". While PMTUd may be mandatory with IPv6, I found it being broken already :-( . "ipv6 tcp adjust-mss .... " is now a separate command since IOS 15.4(1). I would suggest considering it, depending with your experience with PMTUd on IPv6.

  • Sca component wsa:Address different to SOAP Action

    Hi,
    i have developed an SCA component with SOA Suite 11.1.1.2 and JDeveloper 11.1.1.2. I have an outgoing service call behind a mediator. the soa suite sends a request to this service containing WS-Addressing information. These WS-Addressing information seem to be generated automatically by the SOA Suite. Did i get that right? The problem is, that the wsa:Action Element is generated and i have no idea how to influence the content of that element. I have to change the content of the wsa:Address, because it is different to the SOAP Address committed via the HTTP Header. This difference leads to an exception in my Axis2 Web Service. The SOAP Address in the HTTP Header is being determined from the wsdl soapAction Attribute in soap:operation element. But how is the wsa:Address being determined and how can i influence it?
    I hope someone can help me with that ... didn't find any solution after a lot of googling.
    thx
    Edited by: user12575721 on 08.02.2010 04:41

    Hi,
    I think i might have the same sort of issue with a very simple SCA: i have got an outgoing webservice with WS Security behind a mediator.
    I have exposed my mediator interface.
    I have defined a WSS username policy to my outgoing webservice and created appropriate key in the Credential Provider.
    I desperately try to call from the SOA Infra Test console this interface but I got the following error in my composite: "WS Addressing property is set in SOAP Header, the service cannot be proceeded".
    It seems related to some WS-Addressing header that the SOA 11g is adding automatically.
    I have googled this issue, but anyone except you seems to encounter this problem.
    Any idea ?

  • Adding WS-Addressing headers and signing them

    Let me begin by stating that I'm a .NET developer using WSE 3.0 to expose a variety of Web services to an external client. We are attempting to leverage WS-Security 1.0. Furthermore, while I know the Java language, I don't have a lot of background with the various frameworks and I have very little experience with Oracle.
    The client is using:
    Oracle iAS 10.1.3, j2ee 1.4, OC4J
    Essentially this is an interop issue. We are trying to get the client's app to communicate with our WSE 3 enabled Web service. At this point we are stumped on two things:
    1. The WSE framework recommends that a SOAP request message contain the WS-Addressing wsa:Action header and that this header is signed. I can disable this requirement but that can expose a minor security vulnerability. So I would prefer to have a wsa:Action header present and included in the signature.
    2. The client has configured their proxy XML file to only sign the Body of the SOAP message. When examining the SOAP message on the wire, it appears that, in addition to the SOAP Body, the signing certificate is referenced in the Signature block. This means the Body and signing BinarySecurityToken are included in the signature. WSE 3.0 doesn't have a built-in policy assertion for this, which means we'll need to create a custom security assertion.
    So my questions are:
    1a. Is there a way to add a WS-Addressing header to the SOAP message using the webservice proxy configuration file? If not, what is the standard procedure?
    1b. Once we add this WS-Addressing header, how do we include it in the signature for the SOAP message?
    2. Is there a way to disable the inclusion of the signing certificate during signature generation so that:
    <tbs-elements>
    <tbs-element local-part="Body" name-space="http://schemas.xmlsoap.org/soap/envelope/" />
    </tbs-elements>
    really just means "sign the Body".
    3. Lastly, where can I find a schema/configuration reference for the Web proxy configuration files? I've searched but must not be using the correct terms.
    Thank you very much in advance. Any help provided is truly appreciated.
    Joel

    Hello
    So my questions are:
    >
    1a. Is there a way to add a WS-Addressing header to
    the SOAP message using the webservice proxy
    configuration file? If not, what is the standard
    procedure?So to add the header the best way will be to use a JAX-RPC handler. You can take a look to The specified item was not found.
    1b. Once we add this WS-Addressing header, how do we
    include it in the signature for the SOAP message?For the signature you should be able to use the Oracle WS-Security implementation to sign the header. See Client configuration
    >
    2. Is there a way to disable the inclusion of the
    signing certificate during signature generation so
    that:
    <tbs-elements>
    <tbs-element local-part="Body"
    name-space="http://schemas.xmlsoap.org/soap/envelope/
    />
    /tbs-elements>
    really just means "sign the Body".I think you should also be able to do that with the/a handler, but I am not sure to follow in detail the process.
    3. Lastly, where can I find a schema/configuration
    reference for the Web proxy configuration files?
    I've searched but must not be using the correct
    terms.See documentation on the client configuration.
    Also I will be pleased to help you more directly since I am very interested with any advanced interoperability development, can you contact me directly: tugdual.grall[at]oracle.com
    regards
    Tugdual Grall

Maybe you are looking for

  • Memory on a nokia 6234

    Could someone give me some advice on the memory on nokia 6234 as my phone does not have much memory on ot even though i have saved everything to the memory card which is less than half full???

  • How to create a sparkChart (RichSparkChart or UISparkChart) in java bean?

    I'm creating a table in my bean. One of the columns needs to be a spark chart. I'm unable to create a spark chart which actually renders a chart. Here is a sample/simplified my code: this.adfColumn = new RichColumn (); RichSparkChart sparkChart = new

  • Iphoto slideshow Turned slides when exported to iDVD

    Some photos are turned after export to iDVD, how can that be? More importantly how to fix, the slide show looks fine in iPhoto. The image quality is another issue and I'll follow the iMovie thread because I have 353 slides using 19GB in iPhoto. Why a

  • Multiple text lines

    Newbie to Numbers! I'd like to have multiple lines of text in a single field - how do I create this?

  • Setting up a UIWebView delegate

    Ok, this should be simple, but for some reason I'm lost. Primarily, because the different objects are in different modules and there doesn't seem to be a clean way to tie them together. I start with a UIView in a simple ViewController. Next, I want t