I’m having one (and ONLY) ticket of general seating arrangement entry to Unfair Advantage up for sale. It’s selling in Groupon for RM 197 (expired now but up for preorder) and i’m letting it go at RM 150. If you’re keen and interested, please leave a comment here.
Deal last till it’s sold.
Details of event: May 29, 2012 – May 31, 2012 (3-day continuous).
Speakers include: Robert Kiyosaki (author of Rich Dad Poor Dad), Kim Kiyosaki, Ken McElroy, Tom Wheelwright and more.
Held at: Sunway Pyramid Convention Centre.
Seating arrangement: General
Written by admin on May 14th, 2012 with no comments.
Read more articles on For Sale.
Was trying to develop a test app. that interfaces to webservice hosted under SSL but prompted error as stated in topic. There wasn’t any issue if the app. connects to function hosted by webservice without SSL. A further checking, the certificate used by the webservice has already expired (since the certificate was generated as test during initial setup) and no longer being updated. Thinking not to touch the web server on the SSL configuration, I thought I should come up with a workaround instead since normal web browser access works just fine even if the certificate is expired or invalid.
One workaround which I can find in Microsoft forum, to overwrites the handler function of when accepting certificate from the server through (ServicePointManager.ServerCertificateValidationCallback). A snippet of the code as below:
Private Function ValidateCertificate(ByVal sender As Object, ByVal certificate As X509Certificate, ByVal chain As X509Chain, ByVal sslPolicyErrors As SslPolicyErrors) As Boolean
‘Return True to force the certificate to be accepted.
Return True
End Function
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
ServicePointManager.ServerCertificateValidationCallback = New RemoteCertificateValidationCallback(AddressOf ValidateCertificate)
End Sub
For more in-depth explanation, refer to Microsoft Support.
Written by admin on May 14th, 2012 with no comments.
Read more articles on Programming and Web.