Software Archive
Read-only legacy content
17060 Diskussionen

Custom WebService Crashes XDK

Simon_T_
Einsteiger
1.140Aufrufe

Hi All

I am a newbie and have managed to bring in my Web Service but when I click on the TryIt button XDK crashes. The "Intel XDK encountered a problem and must restart" popup appears. I also receive a "Uncaught SyntaxError: Unexpected token ;("") I am not sure why it is crashing any ideas will be greatly appreciated.

Many Thanks

Webservice methed is getCols

apiconfig.json

{
  "AmplaData": {
    "name": "Ampla Data",
    "description": "Ampla Data API",
    "dashboardUrl": "http://xx.xx.xx.180/WSJSON/webservice1.asmx",
   
    "compatibleProjectTypes": [
      "com.intel.xdk.projecttype.jsapp",
      "com.intel.xdk.projecttype.webapp",
      "com.intel.xdk.projecttype.iotapp"
    ]
  }
}

AmplaData.js File

/*globals window, console, $*/
/*jshint -W068 */
(function () {
  var exports = {};

  /* Data Feed Function */
  exports.getCols = function (params) {
    var url = 'http://xx.xx.xx.180/WSJSON/webservice1.asmx/getCols';
 
      return $.ajax({url: url});
  };
  return exports;
});// jshint ignore:line

AmplaData.json File

{
  "endpoints": [
    {
      "name": "AmplaData",
      "dashboardUrl": "http://xx.xx.xx.180/WSJSON/webservice1.asmx",
      "methods": [
        {
          "MethodName": "getCols",
          "Synopsis": "Grabs information from the DB"
        }
       ]
    }
  ]
}

 

0 Kudos
8 Antworten
PaulF_IntelCorp
Mitarbeiter
1.140Aufrufe

I'll alert the appropriate engineer.

Anjali_G_Intel
Mitarbeiter
1.140Aufrufe

Hi,

Sorry that error message isn't too helpful. The first thing I would try is renaming the files to AmplaData.json and AmplaData.js. Essentially, the key value in the apiconfig.json file should match the name of the files. Can you post what happens after that change?

Simon_T_
Einsteiger
1.140Aufrufe

Hi

Thanks for the response, it was a typo from my end the files are AmplaData.js and AmplaData.json.

Thanks again for the help.

 

 

 

Simon_T_
Einsteiger
1.140Aufrufe

Hi

Just to confirm the typo was on the post not in the project, it is still crashing XDK. I am also getting alot of XDK crashes with Ver3900 when I drag items onto a page the same error pops up and restarts XDK.

Cheers

PaulF_IntelCorp
Mitarbeiter
1.140Aufrufe

We are working on a hotfix to address a variety of problems, including several of the crash issues.

Simon_T_
Einsteiger
1.140Aufrufe

Hi Paul

Thanks for the update.

Cheers

Simon_T_
Einsteiger
1.140Aufrufe

Hi Paul

Any idea when it will be released?

Cheers

PaulF_IntelCorp
Mitarbeiter
1.140Aufrufe

Sorry, not allowed to announce expected release dates, company policy. All I can say is we want to get it out there ASAP, so we're primarily targeting the most irritating issues, especially the ongoing login problem and several frequent crash issues.

Antworten