Every object I return from a WebMethod of a ScriptService, is wrapped into a d JSON object. That's ok. But I don't want the additional __type property to be served to the client, since I do manual processing with jQuery.
Is it possible?
|
|
Well it's been a long time since you asked. I found that if I make the default constructor of my class that my webmethod returns anything other than public it will not serialize the __type:ClassName portion. You may want to declare your default constructor |
|||||||||||||||
|
|
John's solution didn't work for me as the type I'm returning is in a seperate DLL. I have full control over that DLL but I can't construct my return type if the constructor is internal (of course). I was wondering if the return type being a public type in a library might even be the cause; as I say I've been doing a lot of Ajax and not seen this one before. Quick tests:
The solution for me, however, was to leave my return type in the DLL but set the WebMethod return type to object, i.e.
instead of
Strangely I don't get __type with a generic return type:
If anyone can shed any light on this it would be appreciated. Not even sure it's by design tbh. |
||||
|
|
|
I've been trying some of these suggestions with a .NET 4 WCF service, and they don't seem to work - the JSON response still includes __type. The easiest way I've discovered to remove the type-hinting is to change the endpoint behaviour from enableWebScript to webHttp.
The default enableWebScript behaviour is required if you're using an ASP.NET AJAX client, but if you're manipulating the JSON with JavaScript or jQuery then the webHttp behaviour is probably a better choice. |
|||||||
|
|
If you're using ServiceStack.Text JSON Serializer you just need to:
This functionality was automatically added back in v2.28, but the code above keeps that out of the serialization. You can also change this behavior by
|
|||
|
|
|
In addition to John Morrison's advice on interal or protected internal constructor in your DataContract class, which works amazingly well for web services and majority of WCF, you might need to make an additional change in your web.config:
instead of
|
||||
|
|
|
Pass in null for the JavaScriptTypeResolver and the __type will not be serialized
|
|||
|
|
|
I think I have narrowed down the root cause of the mysterious appearing "__type" ! Here is an example where you can recreate the issue.
Here is the key part! Simply because MyMethodA() exists in this same .asmx file and takes the class Cat as a parameter.... the __type will be added to the JSON returned from calling the other method: MyMethodB(). Even though they are different methods!! My theory is as follows:
Important Take-Away Note You can avoid having the __type property appear in your generated JSON by avoiding taking in the class in question (Cat in my case) as a parameter to any of your WebMethods in your web service. So, in the above code, simply try modifying MyMethodA() to remove the Cat parameter. This causes the __type property to not be generated. |
|||||
|
|
Do not use the [Serializable] attribute. The following should just do it
|
|||
|
|
|
This should solve it. In the private SerializeValue method of JavaScriptSerializer in System.WebExtensions.dll, the __type is added to an internal dictionary if it can be resolved. From Reflector:
If the type can't be determined, serialization will still proceed, but the type will be ignored. The good news is that since anonymous types inherit getType() and the names returned are dynamically generated by the compiler, the TypeResolver returns null for ResolveTypeId and the "__type" attribute is subsequently ignored. I also took John Morrison's advice with the internal constructor just in case, though using just this method, I was still getting __type properties in my JSON response.
Note: I'm using an inherited JSON type converter that reads the XML Serialization attributes from serialized types to further compress the JSON. With thanks to CodeJournal. Works like a charm. |
|||
|
|
I not sure this a good solution , but if you use the Json.net library, you can ignore some properties by adding [JsonIgnore] attribute. |
||||
|
|
|
A bit late to the thread but here goes. We had the same issue when the property being added to the json string was a List<T>. What we did was add another property which was an array of T, something like. Before.
After.
While not an ideal solution, it does the trick. |
|||
|
|
|
This is a bit of a hack, but this worked for me (using C#):
Works with both |
|||||
|