chrisgh1
chrisgh1
@gpomykala or anyone else that has the same PCB. I'm trying to figure out the value of what I think is a resistor in the lower left corner of the...
Oh ok, I was under the assumption that the restore official lego firmware was doing the same thing I did just with the proper firmware file for the device you...
@levensailor Looks like you have a minor error in your readme.md file. authorization: "Basic: "+authToken" I think you wanted it to be: "Basic: " + authToken PS thanks for the...
Just wanted to also put this here that using the format http://username:[email protected] in the ctx json for the url element may be all that is needed for basic auth. still...
ok a little more information. so in ws.js in function getAttachment() I console logged the var prop. `function getAttachment(ctx, property, xpath) { var prop = eval("ctx." + property); console.log(prop); var...
Ok it seems like elem is not being set to anything from select(doc, xpath)[0] in this code in mtom.js `var parts = reader.parse_multipart(ctx.response.slice(2), boundary) if (parts.length==0) { console.log("warning: no mime...
So I added this block of code ` if(parts.length > 1){ ctx.file = parts[1].data; }` after ` for (var i in parts) { var p = parts[i] , id =...
Ok so I think I've got this figured out. My clue was in the following issue https://github.com/yaronn/ws.js/issues/11 look at yaronn comment on Mar 26, 2015 I had to also use...
@jbaris I'm not really fluent in xpath so I wasn't sure if this was an appropriate fix. However now that you have been able to verify that it's working for...
@integritybit I just ran into this error also wondering if you ever found a solution?