.net - EntityEvent of Azure Resource Provider for Windows Azure Store -
i'm implementing azure store provider here https://github.com/metricshub/azurestorerp. i'm using sdk https://github.com/windowsazure/azure-resource-provider-sdk. there sample request in sdk on https://github.com/windowsazure/azure-resource-provider-sdk/blob/master/docs/api-subscription.md
<?xml version="1.0" encoding="utf-8"?> <entityevent> ... </entityevent> there class namespace sample https://github.com/metricshub/azurestorerp/blob/master/azurestorerp.data/contracts/entityevent.cs
[datacontract(namespace = "http://schemas.datacontract.org/2004/07/microsoft.cis.devexp.services.rdfe.servicemanagement")] public class entityevent : iextensibledataobject { ... } when send sdk sample's request, exception
<exceptionmessage>error in line 1 position 14. expecting element 'entityevent' namespace 'http://schemas.datacontract.org/2004/07/microsoft.cis.devexp.services.rdfe.servicemanagement'.. encountered 'element' name 'entityevent', namespace ''. </exceptionmessage> microsoft test rp in staging. don't know namespace should use. may someone's implemented it?
Comments
Post a Comment