I'm trying to consume a service but gives the error:
An unhandled exception of type 'System.InvalidOperationException'
occurred in System.ServiceModel.dll
And the message:
"Could not find the default endpoint element
which ref...
I'm developing a service that will provide some functions for external access, using REST architecture. It is the beginning of a RestAPI for the company.
But let's get into the problem. I need to update some punctual data for a particular produc...
I have the following return in json:
{
"ConsultarRegistroPorCodigoResult": {
"Codigo": 2,
"CodigoSetor": 1,
"Login": "ednilson1",
"Nome": "Ednilson",
"RegistroAtivo": true,
"Senha": "123456",...
I'm studying WCF and all the starting material I find all comes down to very basic things, exposing methods that get some parameters and return some value.
I need to create a web service that will be the interface between the database and ext...
I'm having a date conversion problem in WCF.
I get a Json a DateTime in Unix format
"\/Date(1477320927000)\/" - 24-10-2016 12:55:27.
Wcf receives this date as 24-10-2016 14:55:27. It gives a difference of 2 hours.
I tried to u...
I'm developing a WCF service that will convert files.
I will upload and then download the files. The files are not large.
What is preferred in the case of sending and receiving, returning an array of bytes or a stream? Any other more speciali...
I'm getting a record whose content is below (in HTML):
<p style="text-align: justify;"><span style="font-family: times new roman,times;"><span style="font-size: medium;"><strong>EDECPJE N&o...
I'm having trouble referencing WCF services in Visual Studio.
It does not generate any reference to the service classes to reference, the Reference.vb file is almost empty:
'--------------------------------------------------------------...
I'm trying to implement a system where I need to have a local database (SQL Compact) and a cloud (MSSQL) database that can be synchronized. The form I found and followed is the one specified in this link .
But I have some problems when I hos...