David Connolly
David Connolly
Submitted PR: https://github.com/mrgamer/angular-media-player/pull/67 Work around in the meantime is to set: $scope.audioPlayer.$selective = false;
No worries, I think it works quite well! I'm using it right now for a WIP site I'm making for my brother: www.jonconnolly.ca This issue is resolved with that PR#67,...
Thanks for the explanation @cybey, were you ever able to get this working? I'm trying to generate a custom link to allow users to 'set' their passwords initially after our...
I'm also using the correct passwordCurrent value in the above example, although ideally I wouldn't need one at all
Thanks @cybey, I ended up using another somewhat hacky approach and just sidestepped devise altogether. Basically, I generate a link with a password reset token and just search my users...
Ya, that's what I was hoping to avoid but it may be the only way. It looks like I don't need WS password or token auth, just basic WSAuth to...
Ya, that's what I'm hoping, I'm just not familiar enough with XML/Soap in general to know where to put them. node-soap's docs [do mention WS-Security](https://github.com/vpulim/node-soap#wssecurity), however it looks like they...
Might also be worth mentioning how I've implemented node-soap: ``` // node-soap options var options = { connection: 'keep-alive', headers: { 'Connection': 'Keep-Alive', }, overrideRootElement: { namespace: 'bps', xmlnsAttributes: [{...
I figured it out! Thanks so much for the help @yaronn. I ended up getting it to work with node-soap alone. I ended up getting an example XML request working...