I've downloaded appengine-api-sdk-1.6.2.1 and am still getting the NoClassDefFoundError javax.net.ssl.SSLHandshakeException error with the following code:
URLFetchService fetcher = URLFetchServiceFactory.getURLFetchService(); FetchOptions fo = FetchOptions.Builder.doNotValidateCertificate(); HTTPRequest request = new HTTPRequest(url, HTTPMethod.GET,fo); HTTPResponse fetchedResponse = fetcher.fetch(request); I thought the doNotValidateCertificate() fetchoption would turn off the certificate validation. I'm running in a Helios eclipse environment building with Java 1.6. In one of the blog posts Ikai Lan stated that this was fixed with the lastest version of appengine which I'm assuming is 1.6.2.1. Any suggestions on how I can fix my problem? -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to google-appengine-java@googlegroups.com. To unsubscribe from this group, send email to google-appengine-java+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.