I started to develop Cloud Printer using Google Cloud Print interface via C# framework 4.0 a few days ago. This url is the interface introduction of google cloud print. http://code.google.com/intl/zh-CN/apis/cloudprint/docs/proxyinterfaces.html

I'm blocked by this introduction as described in the document at:

Documentation -> Receiving Print Jobs -> Service Interfaces -> /register

The capabilities and defaults parameters can be in XPS (XML Paper Specification) or PPD (Postscript Printer Description) formats. Additional formats may be supported in the future to describe the printer capabilities and defaults.

Question:

There's function to get print capabilities to xml. But I have tried to using that but google interface response returns the error message "Unable to parse capabilities". So I think I've passed wrong format information - can I convert PrintCapabilities to XPS or PPD?

The follows is to get print capabilities code from .NET:

PrintQueue printQueue = GetPrintQueueFromPrinterByName(psForm.pSelectPritnerName);
MemoryStream msPrintQueueCapabilities = printQueue.GetPrintCapabilitiesAsXml();                
byte[] btPrintQueueCapabilitie = new byte[msPrintQueueCapabilities.Length];
msPrintQueueCapabilities.Read(btPrintQueueCapabilitie, 0, (int)msPrintQueueCapabilities.Length);
link|improve this question
feedback

1 Answer

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();
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.