Git Product home page Git Product logo

Comments (6)

winnicki avatar winnicki commented on June 8, 2024

I just noticed that for the connection string, MultipleActiveResultsSets was set to False when publishing the back end. I set it to true and I'm testing now. Perhaps that is the issue.

from app-service-mobile-xamarin-android-quickstart.

winnicki avatar winnicki commented on June 8, 2024

That didn't fix the issue.

from app-service-mobile-xamarin-android-quickstart.

winnicki avatar winnicki commented on June 8, 2024

Microsoft.WindowsAzure.MobileServices.Sync.MobileServicePushFailedException:

screen shot 2017-02-23 at 10 48 10 am

Here is a failed push where I launched the app, hit Refresh, and then added this one item. Just inserting the new item fails even though the status code is an OK 200 (!?)

from app-service-mobile-xamarin-android-quickstart.

winnicki avatar winnicki commented on June 8, 2024

I also noticed during testing that if I just sync items down and update them (as in mark them as completed) I don't receive any errors. Errors only start to occur once you add items.

Still though, in Application Insights I don't see the PATCH getting hit when marking as completed.

from app-service-mobile-xamarin-android-quickstart.

adrianhall avatar adrianhall commented on June 8, 2024

Your POST code is wrong. You need to return a Created route. Something like the following is required:

        public async Task<IHttpActionResult> PostTodoItem(Green item)
        {
            Green current = await InsertAsync(item);
            return CreatedAtRoute("Tables", new { id = current.Id }, current);
        }

from app-service-mobile-xamarin-android-quickstart.

winnicki avatar winnicki commented on June 8, 2024

Thanks @adrianhall for the prompt response. It did dawn on me that the SDK needs the item back. I updated it to this and it works now but I'll look into your code so that I can use it if needed.

public async Task<TodoItem> PostTodoItem(TodoItem item)
{
     return await InsertAsync(item);
}

from app-service-mobile-xamarin-android-quickstart.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.