….. Coach ชิ่งงง !?!? …..

เอ็งต้อง ทำหยั่งงั้น
เอ็งต้อง ปรับปรุงจุดนี้
เอ็งต้อง พูดอย่างนั้น
เอ็งต้อง คิดอย่างนี้
เอ็งต้อง หายใจเข้าแบบนั้น
…เอ็งต้อง หายใจออก แบบนี้!!
———————————————
ถ้า Coach เก่งจริง รู้จริง …สำเร็จมาแล้วจริง ก็ดีไป
….ทว่าส่วนใหญ่นั้น ไม่!
———————————————
ฟังเสียงตัวเอง เยอะๆ คับ
จะมีใครรู้จักเราดี … เท่าตัวเราเอง?
———————————————
ช่างจุดอ่อนบ้างก็ได้ ของมันต้องมีกันทุกคน
… เน้นพัฒนา จุดแข็ง กันไปเลย

#ขวางโลก ^^
pic from : http://integralleadershipreview.com/category/issue-sections/leadership-cartoon/

Bypass SSL certificate check for Apache Axis2 client April 29, 2019

bypass-ssl-certificate-check-for-axis2
ref:
https://whatthepatch.blogspot.com/2019/04/bypass-ssl-certificate-check-for-axis2.html

  SSLContext sslCtx = SSLContext.getInstance("TLS");
             sslCtx.init(null, new TrustManager[] {new TrustAllTrustManager()}, null);

            APIStub client = new APIStub(url);
            client._getServiceClient().getOptions().setProperty(
                    HTTPConstants.CUSTOM_PROTOCOL_HANDLER,
                    new Protocol("https", (ProtocolSocketFactory) new SSLProtocolSocketFactory(sslCtx), 443));