• Sai Madupu
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies
Hello, 

I'm using the triggered send from ET for the forgot password mail to a client. But for some reason the URL gets double encoded 
Created / Passed fromback-end (java)https://example.com/tools/resetpassword.reset.html?key=xuklHH9758Zny1zGDn0eG1kVuUvkUlgxLeV9hjKY7sg%3D
Stored in Marketing Cloudhttps://example.com/tools/resetpassword.reset.html?key=xuklHH9758Zny1zGDn0eG1kVuUvkUlgxLeV9hjKY7sg%3D
Presented in Email Linkhttps://example.com/tools/resetpassword.reset.html?key=xuklHH9758Zny1zGDn0eG1kVuUvkUlgxLeV9hjKY7sg%3D
After clicking link, the link from above loads in the browser and is then redirected to:https://www.example.com/tools/resetpassword.reset.html?key=xuklHH9758Zny1zGDn0eG1kVuUvkUlgxLeV9hjKY7sg%253D

Below is the HTML coed that I have used 

<a class="mcnButton" title="Password Reset"  decodeURIComponent(href="%%reset_url%%") target="_blank" style="font-weight: normal;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Reset Password</a>

As you can see I have used the DecodeURI, but that doesn't work either. Since the URL is broken it does take me to the page ,but it doesn't reset the password.  
Kindly help me. 
Hello All, 

Im working on integrating the triggered mails from java and using the s7 instance wsdl. (https://webservice.exacttarget.com/etframework.wsdl)
Can you tell to how to modify the wsdl so that I can include the authorization header in the SOAP XML that is genereated by the stubs ?? I know there is an OAUTH but we are not using that. Just the basic authorization. When I send the request from SOAP UI it says the triggered has been queued. So I'm hoping that my request is working fine. but I need to make Java side changes.   
Hello, 

I'm using the triggered send from ET for the forgot password mail to a client. But for some reason the URL gets double encoded 
Created / Passed fromback-end (java)https://example.com/tools/resetpassword.reset.html?key=xuklHH9758Zny1zGDn0eG1kVuUvkUlgxLeV9hjKY7sg%3D
Stored in Marketing Cloudhttps://example.com/tools/resetpassword.reset.html?key=xuklHH9758Zny1zGDn0eG1kVuUvkUlgxLeV9hjKY7sg%3D
Presented in Email Linkhttps://example.com/tools/resetpassword.reset.html?key=xuklHH9758Zny1zGDn0eG1kVuUvkUlgxLeV9hjKY7sg%3D
After clicking link, the link from above loads in the browser and is then redirected to:https://www.example.com/tools/resetpassword.reset.html?key=xuklHH9758Zny1zGDn0eG1kVuUvkUlgxLeV9hjKY7sg%253D

Below is the HTML coed that I have used 

<a class="mcnButton" title="Password Reset"  decodeURIComponent(href="%%reset_url%%") target="_blank" style="font-weight: normal;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Reset Password</a>

As you can see I have used the DecodeURI, but that doesn't work either. Since the URL is broken it does take me to the page ,but it doesn't reset the password.  
Kindly help me.