I've resoved register issue.I can register local printer to google accout successfully.But it seems there still issue .I added one local virtual printer and printed one pdf file and saved file to one *.xps.But it display a blank page .So i logined into google and checked the job status .I found it displayed "Error".There's no other reason displayed.I hate google ....No enough example for google cloud print interface .Anyone can help me?
public CloudPrintersRegistered RegisterPrinterMultiRequest(string printer, string proxy, string capabilities, string defaults, string tag, string status, string description, string capsHash)
{
try
{
if (!FlagAuthorizationSuc)
return new CloudPrintersRegistered() { success = false, message = "Make authorization failed." };
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.google.com/cloudprint/register?output=json");
request.Method = "POST";
//string queryString = "printer=" + HttpUtility.UrlEncode(printer) + "&proxy=" + HttpUtility.UrlEncode(printer) + "&capabilities=" + HttpUtility.UrlEncode("") + "&defaults=" + HttpUtility.UrlEncode("") + "&description=" + HttpUtility.UrlEncode(description);
//string queryString = "printer=" + HttpUtility.UrlEncode(printer) + "&proxy=" + HttpUtility.UrlEncode(printer) + "&capabilities=" + HttpUtility.UrlEncode(Convert.ToBase64String(capabilities)) + "&defaults=" + HttpUtility.UrlEncode(Convert.ToBase64String(defaults)) + "&description=" + HttpUtility.UrlEncode(description);
//string queryString = "printer=" + HttpUtility.UrlEncode(printer) + "&proxy=" + HttpUtility.UrlEncode(printer) + "&description=" + HttpUtility.UrlEncode(description);
List<requestKeys> lstreqKeys = new List<requestKeys>();
lstreqKeys.Add(new requestKeys("printer",printer));
lstreqKeys.Add(new requestKeys("proxy", printer));
lstreqKeys.Add(new requestKeys("description", description));
lstreqKeys.Add(new requestKeys("status", status));
List<requestFile> lstreqFile = new List<requestFile>();
lstreqFile.Add(new requestFile("capabilities","capability",capabilities));
//lstreqFile.Add(new requestFile("defaults", "defcapability", defaults));
string queryString = EncodeMultiPart(lstreqKeys, lstreqFile,"application/xml");
byte[] data = new ASCIIEncoding().GetBytes(queryString);
request.Headers.Add("X-CloudPrint-Proxy", Source);
request.Headers.Add("Authorization", "GoogleLogin auth=" + AuthAccessToken);
request.ContentType = "multipart/form-data;boundary=" + BOUNDARY;
request.ContentLength = data.Length;
Stream stream = request.GetRequestStream();
stream.Write(data, 0, data.Length);
stream.Close();
// Get response
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
string responseContent = new StreamReader(response.GetResponseStream()).ReadToEnd();
DataContractJsonSerializer serializer = new DataContractJsonSerializer(typeof(CloudPrintersRegistered));
MemoryStream ms = new MemoryStream(Encoding.Unicode.GetBytes(responseContent));
CloudPrintersRegistered registeredPrinters = serializer.ReadObject(ms) as CloudPrintersRegistered;
return registeredPrinters;
}
catch (Exception ex)
{
string strError = ex.Message;
return new CloudPrintersRegistered() { success = false };
}
}
private string BOUNDARY = string.Empty;
private string CRLF = "\r\n";
private string EncodeMultiPart(List<requestKeys> lstFields, List<requestFile> lstFiles,string contentType )
{
BOUNDARY = "--QdosPrint_" + DateTime.Now.Ticks.ToString("x");
StringBuilder sbContent = new StringBuilder();
for (int i = 0; i < lstFields.Count; i++)
{
sbContent.Append("--" + BOUNDARY);
sbContent.Append(CRLF);
sbContent.Append(string.Format("Content-Disposition: form-data; name=\"{0}\"", lstFields[i].Key));
sbContent.Append(CRLF);
sbContent.Append(CRLF);
sbContent.Append(lstFields[i].Value);
sbContent.Append(CRLF);
}
for (int i = 0; i < lstFiles.Count; i++)
{
sbContent.Append("--" + BOUNDARY);
sbContent.Append(CRLF);
sbContent.Append(string.Format("Content-Disposition: form-data; name=\"{0}\"; filename=\"{1}\"", lstFiles[i].Key,lstFiles[i].FileName));
sbContent.Append(CRLF);
sbContent.Append(string.Format("Content-Type: \"{0}\"", contentType));
sbContent.Append(CRLF);
sbContent.Append(CRLF);
sbContent.Append(lstFiles[i].FileContent);
sbContent.Append(CRLF);
}
sbContent.Append("--" + BOUNDARY + "--");
sbContent.Append(CRLF);
sbContent.Append(CRLF);
return sbContent.ToString();
}