Arnaud Wetzel

Results 17 comments of Arnaud Wetzel

Hello Louis, Can you show me the code you use for streaming ? because yes, the memory footprint is mostly determined by the `xmerl` library of erlang when you do...

Hello, first of all, SweetXml is just a wrapper of Xmerl from erlang standard library. Here your issue seems to come from xmerl `yourstr |> to_char_list |> :xmerl_scan.string`. I will...

The error I found executing your command on first xml is because your xpath `//soapenv:Body/[1]/` is not correct. Maybe you mean : `//soapenv:Body/*[1]` ? (`*[1]` instead of [1] and do...

Hi :) ok I understand your issue. Again SweetXml is only a wrapper around xmerl, and xmerl make text() node list around xml entities. Still the string modifier of SweetXml...

thanks a lot to take it into consideration, your work is very helpful so happy to help a little. I missed it but there is an erlang implementation referenced in...

Not from me because I do not use Phoenix, bug @emilingerslev did make an example project : https://github.com/ingerslevio/reaxt-phoenix-example

I am very sorry for the late answer, yes of course it is possible, using webpack.config you can customize "entries" as you want. (see http://webpack.github.io/docs/multiple-entry-points.html) For instance replace `entry: "./index"`...

Yes exactly, to be clear, the entry `client_entry_addition.js` is added to every entries by reaxt. and this file contains `require("./../../components/"+module)` in order to make reaxt work. https://github.com/awetzel/reaxt/blob/master/priv/commonjs_reaxt/client_entry_addition.js#L8 So that makes...

Ooops :) , I have a lot of work this week, so unfortunatly I will only fix this next week.

Hello, Yes it is OK to require node.js 0.12, my projects actually use io.js on earlier versions, maybe you can also add the requirement to the package.json. Thank you very...