- Регистрация
- 04.02.2017
- Сообщения
- 69
- Благодарностей
- 4
- Баллы
- 8
Не получается загрузить шаблон в админку. Что я делаю не так?
Конвертирование файла в base64 работает:
var file = @"B:\Test.xmlz";
var bytes = File.ReadAllBytes(file);
var base64 = Convert.ToBase64String(bytes);
return base64;
Затем отправляю делаю Пост-запрос. В урле -
https://userarea.zennolab.com/BotStore.asmx/UploadBotContent
В данных
[email protected]&password=Тут md5 хеш моего пароля&botId=9806&botContent={-Variable.base64-}&comment=
В ответ получаю
System.Security.XmlSyntaxException: Invalid syntax on line 1.
at System.Security.Util.Parser.GetRequiredSizes(TokenizerStream stream, Int32& index)
at System.Security.Util.Parser.ParseContents()
at System.Security.Util.Parser..ctor(Tokenizer t)
at System.Security.Cryptography.RSA.FromXmlString(String xmlString)
at activation.TemplateService.HasFullRights(Byte[] templateBytes, String requestor, String signer)
at activation.BotStore.UploadBotContent(String login, String password, Int32 botId, String botContent, String comment)
Конвертирование файла в base64 работает:
var file = @"B:\Test.xmlz";
var bytes = File.ReadAllBytes(file);
var base64 = Convert.ToBase64String(bytes);
return base64;
Затем отправляю делаю Пост-запрос. В урле -
https://userarea.zennolab.com/BotStore.asmx/UploadBotContent
В данных
[email protected]&password=Тут md5 хеш моего пароля&botId=9806&botContent={-Variable.base64-}&comment=
В ответ получаю
System.Security.XmlSyntaxException: Invalid syntax on line 1.
at System.Security.Util.Parser.GetRequiredSizes(TokenizerStream stream, Int32& index)
at System.Security.Util.Parser.ParseContents()
at System.Security.Util.Parser..ctor(Tokenizer t)
at System.Security.Cryptography.RSA.FromXmlString(String xmlString)
at activation.TemplateService.HasFullRights(Byte[] templateBytes, String requestor, String signer)
at activation.BotStore.UploadBotContent(String login, String password, Int32 botId, String botContent, String comment)