Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
221 views

Webservice in GAE, call from a C# client

I have created a webapplication on Google App Engine that gets and sets data in datastore, using Python API and it's working fine. Now I want to access to that data from a client application, written ...
2
votes
1answer
365 views

Jquery fullcalendar not showing events

I was very excited to see a calendar plugin like fullcalendar. I am trying to use fullcalendar to display events for each month. But the events are not displayed on the calendar. My code is : ...
2
votes
2answers
5k views

jqGrid - How does one configure jsonreader (for use with Jayrock)?

I wondered if someone might have some insight into this. jqGrid is quite happy with this JSON string: {'page':'1','total':1,'records':'4','rows':[{'id':1,'title':'Story ...
2
votes
2answers
1k views

Json Import fails - C#

I have the following class structure public class AreaFields { public List<Fields> Fields { set; get; } } public class Fields { public string Name { set; get; } public string Value ...
1
vote
1answer
222 views

parsing json with jrock in vb.net

I am attempting to parse some json I am getting back from a service. For example it's returning { "error" : { "code" : 500, "message" : "Error Executing Task. Error executing ...
1
vote
1answer
373 views

VB.NET JSON Object Issue

UPDATE: So I've figured it out! All I had to do was use jQuery.parseJSON(); and it converted the JSON string into a JSON Object. Here is the updated code: $.ajax({ type: "POST", url: ...
0
votes
0answers
14 views

JayRock RPC communication to transmission-deamon

I am trying to code a plugin for "MediaPortal" to display stats from my transmission-deamon client running on a server. I am a real novice coder in C# and I am looking for a simple bit of code to ...
0
votes
0answers
25 views

tutorial extjs 4 with jayrock?

Hello I'm trying to find a tutorial to use jayrock with Extjs 4 the only one that I found was this one: http://www.sencha.com/learn/legacy/Tutorial:Jayrock_with_Ext It uses and old version of extjs ...
0
votes
1answer
27 views

Alternate to Jayrock's ExportToString

I am using Jayrock.Json.Conversion.JsonConvert.ExportToString(myObj); and the resulting string converts the first character of the property name to a lower case. So, if I had FirstName as the property ...
0
votes
0answers
37 views

Jayrock: web methods not exported

I'm trying to figure out what I'm doing wrong with a simple Jayrock JSON-RPC service. Basically, I'm writing a JSON proxy for a .NET WCF web service so that iPhones can use it. The SOAP service ...
0
votes
2answers
98 views

JSON calls not working after switching type to POST instead of GET

I have been using the JayRock framework with ASP.NET to return JSON being consume via javascript. Everything has worked fine until I changed the $.ajax call from a GET to a POST. Upon that change I ...
0
votes
1answer
92 views

Returning objects with Jayrock

I am using Jayrock to form a web service in .NET for my iOS app and I'm following this tutorial. This is all good and I can get it to work fine returning basic strings using code like this: ...
0
votes
2answers
2k views

load a tree : ExtJs - Jayrock

im trying to build a treepanel (or just a simple tree i just need it to work) and load it with data from database here is my code to build the tree var objHandler = new Interact(); var ...
0
votes
2answers
967 views

Convert JSON formated String to JsonObject with Jayrock

I have a request parameter in my ASP.NET app. that is in JSON format, and I was wondering if there is a good (quick and easy) way to convert a JSON string to a Jayrocks JsonObject, so I can easily ...
0
votes
2answers
462 views

JSON String formed improperly using Jayrock in .NET

I am trying to return a JSON object from an aspx page using Jayrock.JSON. My code for writing it out is this: using (JsonTextWriter writer = new JsonTextWriter(Response.Output)) { ...
0
votes
1answer
197 views

.NET Libraries to work with JSON

We are currently writing our ASP.NET pages using c# and .NET 2.0 framework and we are about 4 months out from upgrading to .NET 3.5 framework. Meanwhile we have a very client-side JS heavy page to ...
0
votes
1answer
1k views

Why doesn't Jayrock (.NET JSON-RPC Framework) like my request?

Hi quick question about Jayrock... I have a Jayrock JSON-RPC web service that generally works fine. However, when I try to post to my jqGrid editUrl, Jayrock throws an error. The web service works ...