Webhooks notification receive processing

Source: Internet
Author: User

For example, in Struts2, you can use other frameworks or servlets on your own.

Public string wxnotice ()  throws IOException{HttpServletResponse response =  Servletactioncontext.getresponse (); Httpservletrequest request = servletactioncontext.getrequest ();// ------- Accept Parameters-------------------------------------//stringbuilder buffer = new stringbuilder (); Bufferedreader reader = request.getreader (); string line;while  ((Line = reader.readline ())  != null)  {buffer.append (line) ;} String requestbody = buffer.tostring (); System.out.println ("Request boay:" + requestbody);// ------- Signature Verification-------------------------------------//string sign = request.getheader ("sign"); System.out.println ("header sign:"  + sign); Boolean signcheck = rsa.verify ( Requestbody, sign, signconfig.paymax_public_key);//The signature rules are based on your project//------- The processing state returns-----------------------------------//response.setcontenttype ("text/hTml;charset=utf-8 "); Response.setcharacterencoding (" UTF-8 ");//Prevent garbled information from output printwriter out = null;     out = response.getwriter ();    if  (!signCheck)  {//Signature Verification failed     out.print ("fail");} Else{out.print ("Success");}     out.flush ();     out.close (); return null;}


This article is from the "Art Morning Blog" blog, please be sure to keep this source http://ycgit.blog.51cto.com/8590215/1940886

Webhooks notification receive processing

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.