Giter VIP home page Giter VIP logo

Comments (5)

doedje avatar doedje commented on May 14, 2024

thanx for pointing that out.... working on a fix, stay tuned!

from jquery.soap.

doedje avatar doedje commented on May 14, 2024

Hmm, the easy-peasy fix I had in mind is breaking stuff on another level now... I have to think this thru better and at the same time fix #13

But I am enjoying my summerbreak at the moment, so don't expect this to be happening soon...

from jquery.soap.

rsarvas avatar rsarvas commented on May 14, 2024

Not a problem, enjoy the rest of the summer. I've done a quick and dirty patch around line 340 that gets me by for the moment.

Change:

childObject = this.json2soap(prefix+name, params[x], prefix, parentNode);
parentNode.appendChild(childObject);

to:

//check if prefix is already embedded in name
if(name.substring(0, prefix.length)==prefix) { 
    childObject = this.json2soap(name, params[x], prefix, parentNode); //name already has the prefix, so don't add it again
} else {
    childObject = this.json2soap(prefix+name, params[x], prefix, parentNode); //orig line that adds the namespace twice - once in the prefix and once the name
} //end namespace check if
parentNode.appendChild(childObject);

Obviously, this is not the best way to handle the problem, but it does work without disturbing your code too much.

from jquery.soap.

doedje avatar doedje commented on May 14, 2024

I fixed the code... currently working on the ignoreQualifier as mentioned in #13 ... will push when that is finished too..

from jquery.soap.

doedje avatar doedje commented on May 14, 2024

published version 1.2.0 with fix for this issue...

from jquery.soap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.