Problem This is from a C# library I’m writing that checks for updates through a PHP script. public bool CheckForUpdate(Request […]
Tag: web-services
ASP.NET Web API HTTP GET with optional parameters
Problem Writing my first ASP.NET Web API web service. Still learing the power of Linq as well. I feel like […]
Webservice methods using EclipseLink and database entities
Problem I am wondering if this is a good and correct way to write the implementation of two web service […]
Implementation of a singleton HttpClient with generic methods
Problem I need advice for this implementation that I made for a service access portable class library referenced to Xamarin.Android […]
Is this a good controller?
Problem <?php session_start(); include_once(“model/Model.php”); class Controller { public $model; public function __construct() { $this->model = new Model(); } public function […]
Web application response message API
Problem The following excerpt is part of a web application microservice framework. The goal of the provided module is to […]
Web Service implementation on the client
Problem I will be creating a web service as part of a group project for university, which will be developed […]
Model Implementation That Calls RESTful API
Problem I am working on a ground-up rebuild for an app that has a relatively simple purpose. Users can view/favorite […]
Simple web service call with retries
Problem This code is actually pretty basic. Basically, I’m doing a large number of web calls. I currently do up […]
Properly disposing of a WCF connection using IDisposable
Problem This is a follow up question to this question: https://stackoverflow.com/questions/4573526/what-could-be-causing-a-cannot-access-a-disposed-object-error-in-wcf I have created a WCF service and it is […]