0
votes
0answers
19 views

JSON string requested using AJAX from WCF service mssing .d and __type attributes

I am using jQuery AJAX to call a WCF service. The service retuns a JSON string that represents an instance of a custom object. What I'm writing is meant to replace some current functionality in an ...
0
votes
1answer
28 views

Post array of object to WCF Rest service using JSON?

Need to send a complex object having nested IList from Iphone in JSON format to WCF REST service. The Complex Object is defined as following: public class BatchData { long BatchID; ...
0
votes
0answers
38 views

Trouble testing WebServices

I'm new to web services, and I'm trying to create a REST-ful service that returns a JSON element. But when I try tu run it on IIS express I got this message: Failed to add a service. Service ...
0
votes
1answer
20 views

The Contract Name 'MyCompany.CostReduction.EditInitiatives' could not found in the list of contract bt the service 'EditInitiatives'

I am getting above error for ajax based WCF serive. Code looks like below. Code <ServiceContract()> Public Interface IEditInitiatives <OperationContract()> _ ...
0
votes
3answers
47 views

WCF and ResponseFormat = WebMessageFormat.Json with inherited classes

I have run into another issue that apparently deals with inherited classes: I have for instance this super class. public class Person { public string Firstname { get; set; } public string ...
1
vote
2answers
25 views

JSON parsing error WCF

I am working on WCF application, I am invoking this operation [ServiceContract] public interface IAuditDataService { [OperationContract(Name = "UserAuthentication")] [WebInvoke(Method = ...
0
votes
0answers
33 views

How to return valid JSON array in WCF

Here is my webInvoke [WebInvoke( Method = "GET", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "{invoice}/{transtype}/" ...
0
votes
1answer
36 views

Android post a JSon object to WCF receiving null

I having a problem with my android client trying to post a JSON class to my wcf service. Wcf is receiving the post, but the parameter is null Here is the code for android client : private void ...
0
votes
1answer
17 views

Sending JSON to WCF with a file

How to send a file inside JSON to a service? [OperationContract] [WebInvoke(RequestFormat = WebMessageFormat.Json)] public string Upload(UploadRequest request) { return ...
1
vote
0answers
41 views

Completing the WCF implementation picture

I have seen many examples and even worked previously on some WCF code perhaps without fully understanding it. Now that I am trying to implement it on my own I cant seem to get it to work so im looking ...
0
votes
1answer
55 views

C# Json.NET WCF Rest DateTime Format

Take a look at the following example code, I would like the output to be a WCF date format "/Date(1237951967000)/" or the time zone variant. class Program { public class Test { public ...
0
votes
2answers
42 views

Error 415 cannot send json to wcf service

I have a problem - I need to send json over POST but my error is "error (415) cannot process the message because the content type application/xml", obviously there is some mismatch but I cannot find ...
-1
votes
1answer
36 views

How i can use the wcf service in Visual Studio 2010 and fetch data from database in the json format?

I am confused. How can I use WCF with a database to show results in json format? How i can use wcf service in Visual Studio 2010 and fetch data from the database and get the result in json format?
0
votes
1answer
32 views

WCF JSON Post Operation

I need to create a Post WCF operation. I need the user to pass in several parameters. All of the examples I see assumes users will only ever send in one parameter. How can I accomplish this? ...
0
votes
1answer
27 views

Does not return in a json format but instead in a xml format

I got issue in my wcf service library because I already set the webMessegeFormat to JSON format, but instead it returns the XML format. How can I fix this issue? Am i missing something? Thank you so ...
0
votes
2answers
37 views

Return Different JSON in WCF method on error

I have a method which return a class cono in Json format [DataContract] public class Cono { [DataMember(Order = 1)] public Companies[] companies; } public class Companies { ...
0
votes
2answers
72 views

How to save Handsontable to database

Is there a generally accepted pattern for saving the data in a handsontable back to a database? I'm using ajax and a WCF service to pull the data from my database to populate the table. The service ...
0
votes
0answers
18 views

Position of the key “__type” in a JSON WCF service being consumed on iPhone

I'm trying to consume a webservice made by my client on the iPhone. It was used, from what they told me, using WCF. The problem is that I need to send a bunch of parameters to a method, and one of ...
2
votes
2answers
102 views

Enable WCF Service to use with JSON

I have created a wcf service. That is working fine when i am using simply in .net by adding as a webservice. But i want to make it able to use for iPhone app as JSON call. For testing i have used it ...
0
votes
0answers
36 views

The underlying connection was closed: An unexpected error occurred on a send

I have a WCF service using a webHttpBinding that is returning JSON. The service makes a request to the Twitter API ver 1.1 to get tweets. The service works fine on my local machine and on our ...
0
votes
2answers
121 views

Using an ASP.Net class object (asp.net project is WCF service) from ajax (jquery)

I have a WCF service which sends string lists from client(jquery web pages).The wcf project runs perfect in visual studio when I run it with F5,a window is opening and I'm clicking Invoke after I can ...
0
votes
1answer
84 views

Format of JSON message for WCF Service

I have a wcf service. I need to save users with it and make a response. This is my method: [OperationContract] [WebInvoke(UriTemplate = "SaveUsersCode", Method = "POST", ResponseFormat = ...
0
votes
0answers
26 views

Is this true - we need ordered JSON?

I was trying to send following JSON Body { "ID": "3d7effda-8e3a-4254-bc4a-32c473ce473f", "Projects": [ { "__type": "ProductEvaluationReference:#abc.Think.Projects", ...
0
votes
0answers
66 views

Generate a Java REST proxy for a WCF service

I'm working on an Android client for a WCF web service. I must generate the client proxy, and I need that it makes REST requests and handles REST responses. My web service exposes a JSON endpoint: ...
0
votes
0answers
42 views

List object not created in WCF REST request from AJAX

My issue is a bit complex to explain in the title. But here it is: I have this method in my WCF service [OperationBehavior(TransactionScopeRequired = true, TransactionAutoComplete = true)] ...
0
votes
2answers
198 views

Android Value … of type java.lang.String cannot be converted to JSONArray

My project having a WCF to get records from database and return in JSON format like this: {"GetNotesResult":"[{\"ID\":1,\"Title\":\"Note 1\",\"Content\":\"Hello Vu Chien ...
0
votes
1answer
130 views

WCF Rest Service in JSON and jQuery

I'm getting some problems exposing a WCF REST Service in JSON and trying to consume it from jQuery. The first and desired approach I took was very similar to this. However I faced the problem that ...
0
votes
1answer
72 views

JSON requests and responses in WCF

I am trying to make request and receive response from a WCF web service (written in c#) in JSON format. This is the endpoint's configuration: <service behaviorConfiguration="UserServiceBehavior" ...
0
votes
0answers
115 views

Call wcf service from a html page using jquery and json

I am facing a problem when I call a WCF service from a simple HTML page using jQuery and JSON. I have tried all kinds of tutorials and for various reasons I can't get anything to work. My WCF ...
1
vote
0answers
48 views

Creating WCF Service for esri.layers.FeatureLayer(“url”) [Help]

I'm a student currently learning how to create a WCF Service for esri.layers.FeatureLayer("url") for my project on Geospatial Heatmap. However, even though I am able to generate the same Json format ...
0
votes
2answers
202 views

Android post request (JSON parameter) to the WCF restful WS

I am working on Android application and I have problem with my "POST" request (as usual) to my WCF Restful WS. Restful method: [OperationContract] [WebInvoke(Method = "POST", RequestFormat = ...
0
votes
1answer
38 views

WebInvoke POST stops service from installing

I'm TOTALLY new at c#. SORRY I'm trying to create a WCF Rest service to get and put files on a web server. The following operation works great: [OperationContract] [WebInvoke(Method = ...
0
votes
1answer
153 views

WCF data service not responding with json, only xml

I am trying to consume a data service function with a jquery ajax call, I've tried many ways of calling it, and setting up the Service Contract and Data Service, but no matter what it keeps giving me ...
0
votes
1answer
31 views

Reorder objects in a class

I am doing JSON parsing and I have the following results; { "alias": { "OUTLET_NAME": "OUTLET_NAME" }, "displayFieldName": "OUTLET_NAME", "feature": { "features": [ { ...
0
votes
0answers
255 views

HttpPost JSON from Android to WCF Service in Azure - response fails with 415

I am sending following request to WCF Service from Android application: try { HttpPost request = new HttpPost(Config.HELP_SERVICE_URL + "/GetAlarmData"); request.setHeader("Accept", ...
0
votes
2answers
41 views

json date returned from wcf service not consistent

I have a service that returns a date. The weird thing is that most of the time it comes back like this: /Date(1364227320000)/ but sometimes it returns the date like this /Date(1364050020139-0400)/ ...
2
votes
1answer
96 views

Generic return types with interface type params in WCF

How can I return interface types in generic type parameters from the OperationContracts in my WCF REST service? More specifically, it works for one operation but not when I add a second operation with ...
0
votes
0answers
113 views

WCF Unable to get Json array from Android client

I been figured out this since last friday. i have no idea why i cant get value in server when i send this data from android client. In the server i'm able to count number of records but when try to ...
0
votes
0answers
127 views

json wcf jquery phonegap work only in .html

My call in phonegap in WP8 to consuming service wcf works only in index.html file. If i call in the .js file i get error GetListaMunicipios was not called. my call: $.support.cors = true; ...
0
votes
1answer
58 views

JSON feed in UTF-8 without byte order marker

I have an WCF application written in C# that deliver my data in JSON or XML, depending on what the user asks for in the query string. Here is a quick snippet of my code that delivers the data: ...
1
vote
1answer
184 views

json callback error was not called wcf jquery

I have a WCF service: [ServiceContract] public interface IMunicipiosService { [OperationContract] [WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, BodyStyle ...
0
votes
0answers
53 views

How to get this Simple WCF REST client working?

I try to call this URI from inside my application: http://data.mtgox.com/api/1/BTCEUR/ticker?raw Using this code as ServiceContract: [ServiceContract(Namespace = "/api/1")] public interface ...
0
votes
4answers
221 views

WCF sending JSON, object in method always null

I want to send JSON data to my WCF Service, but in the Service there is my object always null. I have read so many articles but I can't solve my problem. [WebInvoke(UriTemplate = "/POST/PersonPost", ...
0
votes
1answer
67 views

WCF jQuery post data doesn't work

I have some trouble with an WCF Service: This Service should communicate with an AJAX Client, which is running on a other Server. So, I have a crossDomain problem. I search and work 2 days but I ...
0
votes
0answers
207 views

writing to WCF post json from Android client and saving data to sql server 2008

I am facing problem with POSTing to WCF service. I have hosted wcf service and working fine with my .net website but it is not working with my android client, I am unable to understand what is ...
1
vote
1answer
66 views

WCF: End of input at character 0 of

i am trying to call WCF service from android client and i got End of input at character 0 of error. the service working fine when i tested it with the WCF Client Test but when i tried it in android ...
1
vote
1answer
83 views

Unable to POST data WCF from android

I tried for a day still not able to post data to wcf. Here is my code on the server in .net . When i see log from android Logcat, it's always stop at response = httpClient.execute(request); and in the ...
0
votes
0answers
50 views

< was unexpected at this time. from curl command line when posting input data as an xml to rest service

when i post a raw string as an input to JSON REST Service call it is executing ex: curl -d "{\"input1\": \"as\", \"input2\": \"ad\"}" -i -X POST -H "Content-Type:application/json" ...
0
votes
1answer
241 views

Return JSON from self-hosted WCF 4.5 service?

How do I get JSON from a self-hosted WCF 4.5 service? I'm using Fiddler2 to send requests with "Content-Type: application/json" (also tried "Content-Type: application/javascript") but I keep getting ...
1
vote
2answers
421 views

Make a WCF Service Accept JSON Data from jQuery.AJAX()

I have been searching around for hours and trying different things to get this to work. I have tried so many articles on stackoverflow and either I am too stupid to get things working or I have some ...

1 2 3 4 5 17