Questions tagged as 'xml'

1
answer

REINF - Invalid Signature

I'm developing a messaging for reinf but I'm having trouble sending the first event. By sending a R1000 I'm getting the message: MS0017 Invalid event signature. Digital signature of XML document is invalid I am generating the event...
asked by 24.10.2017 / 14:06
3
answers

Enable 'Access-Control-Allow-Origin' in jQuery [xml]

I do not have access to the .htaccess server and need to enable cors in jQuery The code to access the WebService is: $(document).ready(function(){ jQuery.support.cors = true; $.ajax({ url: 'https://finance.yahoo.com/webse...
asked by 09.08.2017 / 18:04
1
answer

Handling XML Files in C # - Library Tips [closed]

I need to manipulate an XML file in C #. This is the first time I'm going to do this, and I wanted some tips. My algorithm is basically this: Fill an XML from my system data (DB Data) Ex: I have an entity from which my example data com...
asked by 13.07.2017 / 16:25
2
answers

Generate a JSON from a converted XML with Javascript [duplicate]

I was able to do a conversion from an xml to json using a solution that I found on the internet and it answered perfectly, it stores all the json in a string and shows on the screen, but I do not know how to play the contents of this string in...
asked by 01.09.2017 / 20:16
1
answer

Xml handling with ASPNET MVC Core?

I'm working with Xml upload using ASPNET MVC Core , I get in controller the file this way: public async Task<IActionResult> Upload(IFormFile param) { } But I need to check it out before finishing the code and uploa...
asked by 20.07.2017 / 22:41
1
answer

Repeated Nodes xml c #

Hello, I needed some help. I have this code: XmlNodeList xnList = doc.GetElementsByTagName("Line"); foreach (XmlNode xn in xnList) { string salescode = xn["ProductCode"].InnerText; if (salescode == code) { Console.WriteLine...
asked by 26.04.2017 / 16:44
1
answer

Error in the xml page of android

I'm very new to android and following strictly the example provided by my teacher and using a PC of the Faculty I copied and pasted and had no problems, using my notebook I have the following error:    Error: (1) No resource found that matche...
asked by 18.04.2017 / 22:39
1
answer

Error Reading XML with namespace in PHP

I need to access the value of the numeroCNS , dataAtribuicao , etc tags of the following XML file: <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"> <...
asked by 14.04.2017 / 03:04
1
answer

problem with integration with affinityassistance (curl + php + xml)

Well I'm with the curl up and running. I'm trying to integrate with the site: link method getplanos. I send the xml via curl and returns that the parameters were not informed Name: GetPlanos (available) Purpose: To return all availabl...
asked by 23.03.2017 / 16:15
1
answer

Converting a text file in XML with Python

Imagine that I have the following command: echo -e "'date'\n\n'free'\n\n'vmstat'\n" >> free_vmstat_output.txt The generated file (the output of the above command) would be (in TEXT mode): Fri Mar 31 22:19:55 -03 2017 t...
asked by 01.04.2017 / 08:54