Click here to Skip to main content
15,881,248 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have this XML i am not able to get wsse:Security value like user name and pass.

XML
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="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:Header>
        <Header >
            <ResponseSentDateTime/>
            <!-- If calling system is storing the response, then they could populate  this field before saving -->
            <ResponseReceivedDateTime/>
            <!--Optional field to pass. This may contain any tracking Id of the calling system -->
            <SessionId>7556fetf68fa50-66d3-4fdb-93c1-3b56f66340bd</SessionId>
            <!-- This will not be sent in Reponse  -->
            <wsse:Security xmlns:wsse="http://schemas.xmlsoap.org/ws/2003/06/secext">
                <wsse:UsernameToken wsu:Id="sample" xmlns:wsu="http://schemas.xmlsoap.org/ws/2003/06/utility">
                    <!-- User Name was issued by Hub team. Please check with Hub team if you do not have it -->
                    <wsse:Username>test</wsse:Username>

                    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest">EVpXS/7yc/vDo+ZyIg+cc0fWderwrwer=</wsse:Password>

                    <wsse:Nonce>rwerwewrr=</wsse:Nonce>
                                        <wsu:Created>2003-07-16T01:24:32</wsu:Created>
                </wsse:UsernameToken>
            </wsse:Security>

            <Extensions xsi:nil="true"/>
        </Header>
    </soap:Header>

</soap:Envelope>
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900