0

Google cloud print android implementation available in https://developers.google.com/cloud-print/docs/android

Google cloud print c# implementation available in Google Cloud Print using C#

The above methods does not work on windows phone 8.1. Please help.

Community
  • 1
  • 1
user3214224
  • 173
  • 1
  • 1
  • 13
  • 1
    Define "does not work". It looks like a pretty run-of-the-mill web request, but the namespaces/classes for doing this are different for windows store apps so you'll need to do a bit of translating. – Paul Abbott Sep 11 '15 at 18:24
  • Describe in more detail how it doesn't work. – ΩmegaMan Sep 11 '15 at 23:31

1 Answers1

0

I recommend that you create a console application and get the code working on that app to verify that, yes the code, works as expected. The failure exhibited may be due to factors outside of the phone's code.

Once satisfied that one is getting the proper results, port the code over to Windows Phone.


Keep in mind that the CLR used by console applications is different from the Silverlight CLR so some methods may not be available. So one may have to find alternates to the missing or incorrect functions.

ΩmegaMan
  • 29,542
  • 12
  • 100
  • 122