This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"> | |
<s:Header> | |
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> | |
<u:Timestamp u:Id="uuid-548fbf32-9114-4e81-b11d-de6199497c37-1"> | |
<u:Created>2012-06-07T11:40:22.488Z</u:Created> | |
<u:Expires>2012-06-07T11:45:22.488Z</u:Expires> | |
</u:Timestamp> | |
<o:BinarySecurityToken u:Id="uuid-d305f392-1c11-4a82-bff6-151dedc22034-2" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary">MIIBxDCCAW6gAwIBAgIQYpjr4FOk3IFNSd3lJj6ItzANBgkqhkiG9w0BAQQFADAWMRQwEgYDVQQDEwtSb290IEFnZW5jeTAeFw0wMzA3MDgxODQ4MTBaFw0zOTEyMzEyMzU5NTlaMB8xHTAbBgNVBAMTFFdTRTJRdWlja1N0YXJ0U2VydmVyMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDLkqglArInukR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="ServiceReference1.SimpleServiceSoap", ProtectionLevel=System.Net.Security.ProtectionLevel.Sign)] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"> | |
<s:Header> | |
<VsDebuggerCausalityData xmlns="http://schemas.microsoft.com/vstudio/diagnostics/servicemodelsink">uIDPoy+E8yagEyJCs4I1Ca8GKX4AAAAA7ygFR3BFV0SoLPqFyQuvfdhhuzYv9dZKp8tKXMV1R88ACQAA</VsDebuggerCausalityData> | |
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"> | |
<u:Timestamp u:Id="uuid-162e5c78-b008-4cec-ba06-2640994e2742-2"> | |
<u:Created>2012-06-07T11:43:22.343Z</u:Created> | |
<u:Expires>2012-06-07T11:48:22.343Z</u:Expires> | |
</u:Timestamp> | |
<e:EncryptedKey Id="uuid-162e5c78-b008-4cec-ba06-2640994e2742-1" xmlns:e="http://www.w3.org/2001/04/xmlenc#"> | |
<e:EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<security authenticationMode="MutualCertificate" | |
messageSecurityVersion="WSSecurity10WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<security ... enableUnsecuredResponse="true" ... /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<customBinding> | |
<binding name="NewBinding0"> | |
<textMessageEncoding /> | |
<security enableUnsecuredResponse="true" authenticationMode="MutualCertificate" messageSecurityVersion="WSSecurity10WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11BasicSecurityProfile10"> | |
<secureConversationBootstrap /> | |
</security> | |
<httpsTransport /> | |
</binding> | |
</customBinding> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wcf = require 'wcf.js' | |
fs = require 'fs' | |
binding = new wcf.WSHttpBinding | |
SecurityMode: "Message" | |
MessageClientCredentialType: "Certificate" | |
MessageEncoding: "Mtom" | |
proxy = new wcf.Proxy binding, "http://localhost:7171/Service/" | |
proxy.ClientCredentials.ClientCertificate.Certificate = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wcf = require 'wcf.js' | |
fs = require 'fs' | |
sec = new wcf.SecurityBindingElement | |
AuthenticationMode: "MutualCertificate" | |
ValidateResponseSignature: true | |
binding = new wcf.CustomBinding [ | |
sec | |
new wcf.TextMessageEncodingBindingElement MessageVersion: "Soap11WSAddressing10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var binding = new WSHttpBinding( | |
{ MessageEncoding: "Mtom" | |
, SecurityMode:"TransportWithMessageCredential" | |
}) | |
, proxy = new Proxy(binding) | |
proxy.ClientCredentials.Username.Username = "yaron"; | |
proxy.ClientCredentials.Username.Password = "1234"; | |
proxy.send(message, function(response) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title>Mobile Patent Suits</title> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?1.29.1"></script> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.geom.js?1.29.1"></script> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.layout.js?1.29.1"></script> | |
<style type="text/css"> |