Tag: web service

  • Some tips when creating WCF web service for iPad consumption

    Reading Time: < 1 minute

    Continuation of previous post.

    1) WCF get does not like “NULL” column in the query results

    2) // note the “id” should match in declaration and method
    (more…)

  • Creating WCF web service II

    Reading Time: < 1 minute

    A continuation of previous post.

    1) Visual Studio, publish web service: check destination IIS app
    Before the change, the error was “cannot show the content of the folder”.

    2) Add this line to the service.cs (service class C# file), to work around/avoid a problem, asp .net compatibility issue. Do something like this:

    [ServiceBehavior]
    [AspNetCompatibilityRequirements(RequirementsMode=
    AspNetCompatibilityRequirementsMode.Allowed)]
    class BarService : IHelloContract
    {
    // …
    }

    Refer to wenlong

    3) Bad request: it appears to be a class rename problem, Visual Studio has a “red” warning sign, follow it and accept “update”, rebuild.