For outbound web services requests, it is possible to add an X509 Certificate Token by constructing the correct header element and inserting it into the outbound SOAP request message. This can be done in IS 6.5.
If I were doing this in IS 6.5, I would attempt to use a WS-Security toolkit such as WSS4J to create the appropriate BinarySecurityToken from the desired X509 certificate, then convert that to a string and convert that string to a node to be inserted into the outbound SOAP request using the pub.soap.utils:addHeader service.
If WSS4J did not do what you needed, you could always create an IS doc type to hold the required elements of the desired token, populate those fields in the doc type and then convert to an XML string being sure to specify the expected namespaces in the nsDecls. The trick with this approach would be to get the initial IS doc type correct. If you had a valid token that the provider expects, then you might create your doc type from that XML instance document as a good starting point.
Some high-level information about the X509 security token profile can be found here.
Be sure to get example messages from the provider of your web service to ensure that you know what they’re really expecting. You might even ask them if they have a sample java client that demonstrates how the X509 security token can be added.
HTH,
Mark
#webMethods#soa#API-Management