Forum

Forum Replies Created

  • mgerber
    Participant
      4 years, 8 months ago in reply to: Property Binding with Special Characters #24383
      Up
      1
      Down
      ::

      Problem solved:

      The data is coming from an XML input, so the Special characters ar replaced in XML. A simple BO with a function solved my problem…

       

      function replaceCharsFromXML(inpStr){
      var outStr = inpStr.replace(/&/g, ‘&’);
      outStr = outStr.replace(/"/g, ‘”‘);
      outStr = outStr.replace(/&lt;/g, ‘<‘);
      outStr = outStr.replace(/&gt;/g, ‘>’);
      outStr = outStr.replace(/&apos;/g, ‘\”);
      outStr = outStr.replace(/Ä/g, ‘Ä’);
      outStr = outStr.replace(/Ö/g, ‘Ö’);
      outStr = outStr.replace(/Ü/g, ‘Ü’);
      outStr = outStr.replace(/ä/g, ‘ä’);
      outStr = outStr.replace(/ö/g, ‘ö’);
      outStr = outStr.replace(/ü/g, ‘Ü’);
      outStr = outStr.replace(/ß/g, ‘ß’);
      return outStr;
      }

       

      mgerber
      Participant
        5 years, 5 months ago in reply to: Escaping user defined SQL Queries #19843
        Up
        0
        Down
        ::

        The same problem is here: FORMAT([Timestamp_Create], ‘dd.MM.yyyy hh:mm:ss’) AS Timestamp_Create

        This results in: “message”: “The index 2 is out of range.”

        mgerber
        Participant
          5 years, 6 months ago in reply to: Custom Widget #19639
          Up
          0
          Down
          ::

          Hello,

          worked – Thanks!!

          mgerber
          Participant
            5 years, 6 months ago in reply to: SOAP Parameters missing in envelope #19573
            Up
            0
            Down
            ::

            Meanwhile the Connector is routed to the productive Version of SOAP endpoint, the Connector works with Parameters.

            The WSDL file of the devolopment endpoint was (or still is) wrong. Taking the Productive Connector and changing the endpoint by Parameter also works….

            mgerber
            Participant
              5 years, 7 months ago in reply to: SOAP Parameters missing in envelope #19287
              Up
              0
              Down
              ::

              Here it is…

              mgerber
              Participant
                5 years, 7 months ago in reply to: SOAP Parameters missing in envelope #19285
                Up
                0
                Down
                ::

                This solution works…

                mgerber
                Participant
                  5 years, 7 months ago in reply to: SOAP Parameters missing in envelope #19277
                  Up
                  0
                  Down
                  ::

                  The Problem is still the same…

                  Attachments:
                  You must be logged in to view attached files.
                  mgerber
                  Participant
                    5 years, 7 months ago in reply to: SOAP Parameters missing in envelope #19271
                    Up
                    0
                    Down
                    ::

                    I put in all Parameters, but the result does not change…

                    Attachments:
                    You must be logged in to view attached files.
                    mgerber
                    Participant
                      5 years, 7 months ago in reply to: SOAP Parameters missing in envelope #19267
                      Up
                      0
                      Down
                      ::

                      The Parametername in the Picture is not completley visible…

                      The Name is /soap/SitrisDetailRequest/Root/MetaData/SourceSystemID

                      I tried the name with and without the “/” on the first position

                    Viewing 9 posts - 1 through 9 (of 9 total)