* @throws ServiceException if the service is unable to handle the request.
* @throws IOException if there was an error communicating with the server.
*/
public static SitesEntry verifySite(WebmasterToolsService myService,
String siteUrl) throws IOException, ServiceException {
VerificationMethod method = new VerificationMethod();
method.setMethodType(VerificationMethod.MethodType.HTMLPAGE);
// Or method.setMethodType(VerificationMethod.MethodType.METATAG);
method.setInUse(true);
// Create the new SitesEntry to be verified
SitesEntry entry = new SitesEntry();
entry.addVerificationMethod(method);
String siteId = URLEncoder.encode(siteUrl, "UTF-8");