Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Daniel 9 posts 29 karma points
    Dec 24, 2012 @ 22:35
    Daniel
    0

    Mobile app can't connect to my umbraco instance

    I installed the package on my umbraco instance.

    Connection info:

    Name: xxxxx

    Url: www.mrcarbon.net

    login: myusername (it is an administrator)

    pass: ********

     

    My umbraco instance is hosted on godaddy. It runs ok under medium trust. Is there any further step needed after installing the package on the server?

     

  • Enric León 19 posts 550 karma points c-trib
    Sep 09, 2013 @ 11:00
    Enric León
    0

    Daniel,

    We just released the next version of uMobile. This new version is fully personalizable and extendable. It still has all the features (and more) to manage your umbraco instance but it also includes the possibility for any programmer to make their own functionality blocks.

    In order to get started I recommend you to download the umbraco package (0.9.0), the Android application (https://market.android.com/details?id=LECOATI.uMobile) and I also recommend you to read the short documentation from here: http://our.umbraco.org/FileDownload?id=8943.

    If you want to start customizing uMobile for your umbraco instance, you should watch this video: http://www.youtube.com/watch?v=JbzPfcLOLOQ.

  • Daniel 9 posts 29 karma points
    Sep 09, 2013 @ 18:50
    Daniel
    0

    Link for umbraco package is broken. Also, is it working for medium trust?

  • Enric León 19 posts 550 karma points c-trib
    Sep 09, 2013 @ 19:02
    Enric León
    0

    Thanks for replying. We haven't tested it but it should work. The communication between the app and the server is made through umbraco /base.

  • Daniel 9 posts 29 karma points
    Sep 09, 2013 @ 21:12
    Daniel
    0

    How  can I test that the uMobile endpoints work correctly? Can I made a request from my browser to make sure it is working ok?

     

     

  • Enric León 19 posts 550 karma points c-trib
    Sep 10, 2013 @ 10:48
    Enric León
    0

    Yes. You can test your endpoints with the following methods:

    /base/uMobile/CallMethod/<method>/<param1>$<param2>$<param3>
    

    or

    /base/uMobile/CallMethodWithoutParameters/<method>
    

    In order to test your endpoints you have to set the property Authentication to false in the method attribute umMethod

    [umMethod(Authentication = false)]
    public static string myEndpoint() {
        MessageBox helloWorld = new MessageBox("HelloWorld");
    
        return helloWorld.umGo();
    }
    

    If you only want to know if uMobile is working correctly you can make the following request from the browser:

    /base/uMobile/Authenticate
    

    This should return the following message:

    {"type":"anonymous","header":"authtoken","element":{"message":"Username or password not valid"},"error":"validation"}
    
Please Sign in or register to post replies

Write your reply to:

Draft