Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
See also: http://umbraco.codeplex.com/workitem/29898
RestExtensionMethod doesn't honour returnXml propertyIn 4.6.1 Juno - I have the following RestExtensionMethod class (attached)
namespace Level2Course.Base{ [RestExtension("SupportCase")] public class SupportCase { [RestExtensionMethod(returnXml = false)] public static int Count() { return 10; } }}
When I access: http://461.local/Base/SupportCase/Count
I have the same problem
Yes, same problem here.. Any solutions?
I have the same problem, guess its back to the restExtensions.config
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
4.6.1: RestExtensionMethod doesn't honour returnXml propertyJu
See also: http://umbraco.codeplex.com/workitem/29898
RestExtensionMethod doesn't honour returnXml property
In 4.6.1 Juno - I have the following RestExtensionMethod class (attached)
namespace Level2Course.Base
{
[RestExtension("SupportCase")]
public class SupportCase
{
[RestExtensionMethod(returnXml = false)]
public static int Count()
{
return 10;
}
}
}
When I access: http://461.local/Base/SupportCase/Count
The result is:
<value>10</value>
the returnXml property is being ignored.
I have the same problem
Yes, same problem here.. Any solutions?
I have the same problem, guess its back to the restExtensions.config
is working on a reply...