Receiving Json And Send Back Json On Server-side?

Jul 28, 2011

how to receive and send back json. Hope someone can help me on this. I understand by examples.

On my clientside, I am sending a ajax json string "name":"theName" to the server side and would like the server side to return a string saying "welcome &name ".

Client-side code
<!DOCTYPE html>
<html>

[Code]....

View 2 Replies


ADVERTISEMENT

How To Send Back Data From A JSON Request

Mar 25, 2011

I have an existing WSDL which returns information to remote devices using SOAP. However, I'm writing a new app with Android which doesn't support SOAP so I can't use the existing WSDL and have had to code a new app which looks for a querystring from the Android app and returns the data in a JSON packet. I've coded the module which receives the data okay but I'm unsure how to send the data back in JSON forma

View 1 Replies

Twitter Json - Unable To Convert To Jobject Or Jarray Using Json.net / Javascriptserializer?

May 9, 2012

I am been stuck on this for 3 days now...I have been accessing the twitter api to pull a user_timeline for a list of users and the json that comes back is impossible to work with. I tried to deserialize it using javascriptserializer and get an error:invalid object passed in , ':' or '}'

Now this is frustrating since I expect the json being returned to be error free. Then I tried json.net and split the posts using string.split and tried to convert each post to Jobject or jarray. for Jarray I get

'unexpected end of content while loading jArray

[Code]...

Now I have formatted the code here and not pasted the whole file but it does look like valid json to me and I do not alter anything after receiving the stream from the twitter api. Can someone please point me in the right direction? I really need to get this stuff parsed?

View 1 Replies

JSON.NET Deserialize - Next JSON String - Returns Always An Empty Result

Feb 21, 2011

I'm strugling the whole day with the next JSON string

{
"0":{"link":"afbeeldingenplaatje1.jpg"},
"1":{"link":"afbeeldingenplaatje2.jpg"},
"2":{"link":"afbeeldingenplaatje3.jpg"}
}

How can i deserialize this? What's wrong with the next code (vb.net)

Public Class DataString
Private m_link As String
Public Property link() As String
Get

[CODE]...

It returns always an empty result.

View 1 Replies

Deserializing JSON Into Byrefrence ParametrizedConstructor Object With Json?

Nov 12, 2010

Below is my JSON formated String

{"AliasName": "ysiCountryInfo", "DataClass": {"Description":"United States 111","Code":"usa","WriteOffTaxPointAdjustment":0,"IndexationRounding":6}}
I would like to deserialize object into below class

[code].....

View 1 Replies

Convert JSON String To JSON Object?

Jan 18, 2012

I have a JSON response from a web service that I need to be converted to an object then to an array. My response is similar to the one below:

{"status":{"error":"NO","code":"200","description":"none","message":"Request ok"},"geolocation":{"lat":"38.89515","lng":"-77.0310"},"stations":[{"country":"United States","regPrice":"0.00","midPrice":"0.00","prePrice":"0.00","streetAddress":"1401, I St[code]....

I am doing this is VB.NET within a console for now. Basically I am trying to create a simple way to test my API calls and output the information. What I am trying to accomplish is having to loop through the JSON array and list the stations.

View 3 Replies

Convert JSON To Array OR JSON To XML?

Jul 17, 2011

How can I convert a JSON string to an array OR a JSON string to XML in VB.NET? I know how to do this in C#, as I have read dozens of articles on it, however, I am unable to figure out how to achieve the same result in VB.NET.

I'm using the System.Web.Script namespace via System.Web.Extensions.dll (from Microsoft).

I'm willing to use an additional DLL file if needed.

View 1 Replies

Using JSON.NET To Parse JSON Generated Through PHP?

Mar 2, 2010

I'm sure this has been asked before but I'm not finding quite the information I'm needing so I thought I'd post this.

I've written a PHP script that returns a simple JSON object that looks like this:

{"status":"success","level":"admin"}

I'm doing a standard web request that submits the required data to the script over the internet and that's working fine.

Now, I want to use JSON.NET to pull out the individual variables so I can know what the values of "status" and "level" are. The problem is, I have no idea where to start.

I'm doing this in VB.NET (on the .NET Compact Framework).

View 1 Replies

Send JSON As Response From A WebService In .NET?

Jun 20, 2012

I'm building a Web Service in VB.NET and I want to answer using JSON.
Currently my answers looks like this

{"myVar1" : "From moscow", "myVar2" : "With love"}

I would like to be able to use " (and CarriageReturn), and have the reponse like this :

{"myVar1" : "From moscow", "myVar2" : "With love"}

How can I avoid this transcoding of the " in " ?

Here is my interface definition :

<OperationContract()>
<WebGet(UriTemplate:="/TemplateGet?ID={id}",
ResponseFormat:=WebMessageFormat.Json,

[Code]....

View 1 Replies

Send Resposne Using Json Object?

Sep 8, 2009

I am working on a project in which a server page is called through XMLHttp and now i want to retrieve response the called page in json object.and i never used json

View 2 Replies

Data To Json String And Send It To A Specific URL

May 3, 2011

this is the JSON string the data is required in to be sent using a given URL.[code]I am using VB.net and i need to create this string using VB.net. I tried using namevaluecollection and doing a POST. I also tried making a string and send data using GET. Both failed. how can i do this?

View 2 Replies

FQL MultiQuery - How To Send Result List To Browser In JSON

Feb 5, 2010

I am using the Facebook Toolkit and making a request using FQL.Multiquery. I am using the following code which returns the correct data:

Dim query1 As String = String.Format("SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id in (SELECT target_id FROM connection WHERE source_id={0}) AND is_hidden = 0", FBuserId)
Dim query2 As String = "SELECT pic FROM user WHERE uid IN (SELECT actor_id FROM #firstQuery)"
Dim queries = New Dictionary(Of String, String)
queries.Add("firstQuery", query1)
queries.Add("secondQuery", query2)
Dim result As List(Of Facebook.Schema.fql_result) = q.Multiquery(queries)

When I run this 'result' list is populated with the results of the two queries in XML but I am unsure how I can send this list to the browser in JSON. I am using asp.net MVC.

View 1 Replies

.net - JSON Parsing Using JSON.net?

Feb 15, 2011

I am accessing the facebook api and using the json.net library (newtonsoft.json.net)I declare a Jobject to parse the content and look for the specific elements and get their values. Everything works fine for the first few but then I get this unexplained nullexception error " (Object reference not set to an instance of an object)Now I took a look at the declaration but cannot see how to change it. Dim jobj as JObject = JObject.Parse(responseData) message = jobj("message").tostring

The error occurs at the last line above.I check to see if message is null and then look for the next desired field as follows

[Code]...

This is one example where "message" does not appear in the first few lines but appears later. So what I do is look for position of message and description and which ever is first go and get that and if I get an error or the fields do not return anything, I try and parse by regex and even that is not working right.

View 1 Replies

Asmx Json Serialization Versus Wcf Json Serialization?

Nov 24, 2011

I have two experimental web services. One is an asmx contained within a .net web application. The other is a WCF service library being invoked from the web application.The asmx basically does everything I need, but I think WCF would be better, except that it doesn't do anything as I would expect after fiddling with the asmx service.For example, the same method behaves differently in each:

' ASMX
<WebMethod(BufferResponse:=True, EnableSession:=False)>
Function Test(aObject as Object) as Object
' object will have been successfully serializaed into a dictionary

[code]...

View 3 Replies

C# - Send An Object From Client-side Javascript To Server-side Code Via ASP.NET?

May 23, 2011

Can I send an object from client-side javascript to server-side code via ASP.NET ?

View 5 Replies

Read JSON Data From A Server To A Dataset Object?

May 18, 2009

I am trying to read JSON data from a server to a dataset object, any idea on how this can be done. I have tried using the DataContractJsonSerializer class but it only seems to work for objects.

JSON Data
{
"firstName": "John",
"lastName": "Smith",

[code]....

The code above works to an object, but I want to parse the JSON data to a dataset object.

View 2 Replies

Server.htmlDecode() Returning A JSON String From Database

May 2, 2012

I have created a function which essentially enables me to output anything I need from my database in a similar method to Facebook's FQL querying method as a JSON text result. I can also use the same function to get the output as a Dictionary, or List of(Dictionary) to use with VB functions for other purposes.

[Code]...

View 1 Replies

Web Service To Deserilize JSON Http Request - Pass To Stored Procedure To Retrieve Data From SQL Server

Aug 23, 2011

I have a task to create a web service to receive client-side app's http request(with rpc={json data} in the end), deserilize it and put he parameter in stored Procedure in order to retrive data from sql server. the procedure query and client-side's app are already there and the return data to client-side app is JSON too

View 1 Replies

Translate PHP Json Webservice Request TO .Net Json Webservice Request?

Jun 13, 2011

I have to send a request to Webservice and I have a working PHP solution, that I have to translate in VB.net

Here's the code working in PHP

//fill in the details of the contacts.userId is obtained from loginResult.
$contactData = array('lastname'=>'Valiant', 'assigned_user_id'=>$userId);
//encode the object in JSON format to communicate with the server.

[code]....

Naturally I imported a reference to a Json library and Imported (Imports Newtonsoft.Json)?

View 1 Replies

Take A Screenshot = Turn It To Byte() - Send Through Tcp Connection Then Turn Back Into Image To Put In A Picture Box On Other Side?

Feb 11, 2012

My current code: Server: Imports System.IO Imports System.Text Imports System.Threading

[Code]...

View 9 Replies

C# - Using JSON In .Net?

Feb 5, 2010

What libraries are available to handle JSON in .Net? I've seen this: [URL]..but would prefer a native library, if possible.

View 3 Replies

Using JSON With .NET ASP.NET 2.0?

Nov 3, 2011

I'm trying to understand how to actually use, and create JSON data.

StringBuilder sb = new StringBuilder();
StringWriter sw = new StringWriter(sb);
using (JsonWriter jsonWriter = new JsonTextWriter(sw))

[code]....

and I am sure it does... but how do I view it? How do I turn that into an object that the browser can output.It seems to me that the first stage I need to resolve is "how to create" JSON files/strings, next stage will be how to actually use them. If it helps answer the question, what I'm aiming for initially is to be able to use AJAX Autocomplete from a search page generated from my MySQL database, I was hoping I could write a simple SQL query and have that returned using something similar to the above?

View 2 Replies

.net - JSON.Net Always Returns {}

May 17, 2011

[Code]...

I always get {} as answer. What's wrong?

View 1 Replies

Asp.net - SQL Dataset To JSON?

Nov 12, 2010

Alright I have been trying to figure this out and I read the MSDN page on the JavaScriptSerializer. However, I still can't figure out how to get this to work on an asp.net page. I want to convert my dataset into a json string so I can graph it using FLOT(graphing tool) imports System.Web.Script.Serialization

dim myObject = dataset.getxml()dim jsonString = new JavaScriptSerializer().Serialize(myObject)

View 4 Replies

Asp.net - SQL Queries Through .NET And JSON?

Feb 19, 2010

I'm trying to figure out how to do SQL queries towards an SQL 2005 Express server and format the return value to JSON. I got the queries working using this (perhaps very newbie-like) code;

Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Web.UI

[code]....

View 3 Replies

Asp.net Mvc - How To Serialize Json .NET?

Apr 26, 2012

I am trying to call a rest service..that service returns json object...I am able to send the request but unable to serialize the json...here is the code i am trying

[Code]...

View 1 Replies

Jquery - Use JSON With APS.NET?

Mar 15, 2012

I have an assigment where I must send queries to the database and the returns data. I would like to convert that data to a json and then use it with jQuery

My idea is make an array (żarrayList?) and then convert it to json.

How can i use json with asp.net vb? I'm not allowed to use a webservice yet

View 2 Replies

Read JSON With ASP.NET 2.0?

Jan 13, 2011

How can I read JSON with ASP.NET 2.0? Unfortunately we are unable to upgrade the application because of backward compatibility issues.

View 2 Replies

Timers On Server-side - From A Client-side Piece, Call Off To A Server-side Piece

Apr 22, 2011

I'm trying to, from a client-side piece, call off to a server-side piece. I need to do this synchronously. On my server-side code, though, I'm calling off to another piece of code, which I want to have a maximum of, say, 10 seconds to return a value. If I don't have a response within 10 seconds, I want to force my own server piece to set my result equal to 0, and return to the client.

Here's what I have on my server-side code so far:

Public Function GetWebResult(ByVal inputParameter As Object) As WebReturnObject Implements IWebInterface.GetWebResult
Dim result As New WebReturnObject
Dim webItem As WebItem = Nothing

[CODE]...

I realize this code is not functional. The problem is that I'm unsure how I would go about getting back into GetWebResult to set the appropriate return values before it is sent back to the client.

View 1 Replies

Deserialize A JSON String

Feb 25, 2012

I am trying to deserialize a JSON string using VB.net and cannot seem to pull the values out of the finished List.[code]I am told "Index was out of range. Must be non-negative and less than the size of the collection."

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved