Is the source code of the uMobile Umbraco package available somewhere? I would really like to know what code is required on the Umbraco installation to support apps.
Yes, sure, you can download it here. it's just a simple REST interface comunication. We didn't published it because is in very alpha (buggy) status. We are planning to give continuity to this app soon but giving a different technical approach, mostly in the mobile app software.
Thanks for the source code of the Umbraco package. Any change you can also share the source of the mobile app? If not could you please give an example on how you call some of the methods. For example how do you login and than show the content nodes?
I debugged the Umbraco package and these methods are called:
[JsonRpcMethod("AuthenticateMember", Idempotent = true)]
public string AuthenticateMember(string username, string password)
[JsonRpcMethod("GetNodes", Idempotent = true)]
public IList<sDocument> GetNodes(string token, int parentId)
What happens in the app to call these methods and show it in the app?
FYI, we rebuilt all the package with a different approach (it took a while :\). Now is more a framework to extend functionalities in the App than a closed App. If you want to try it, download the new App and the package (0.9.0). Read also the new documentation to see how to extend it. A short "how to" video work: http://www.youtube.com/watch?v=JbzPfcLOLOQ. Hope you like it!
Source code of uMobile
Hello,
Is the source code of the uMobile Umbraco package available somewhere? I would really like to know what code is required on the Umbraco installation to support apps.
Jeroen
Yes, sure, you can download it here. it's just a simple REST interface comunication. We didn't published it because is in very alpha (buggy) status. We are planning to give continuity to this app soon but giving a different technical approach, mostly in the mobile app software.
Thanks for the source code of the Umbraco package. Any change you can also share the source of the mobile app? If not could you please give an example on how you call some of the methods. For example how do you login and than show the content nodes?
I debugged the Umbraco package and these methods are called:
What happens in the app to call these methods and show it in the app?
Jeroen
Jeroen,
FYI, we rebuilt all the package with a different approach (it took a while :\). Now is more a framework to extend functionalities in the App than a closed App. If you want to try it, download the new App and the package (0.9.0). Read also the new documentation to see how to extend it. A short "how to" video work: http://www.youtube.com/watch?v=JbzPfcLOLOQ. Hope you like it!
is working on a reply...