Skip to content Skip to sidebar Skip to footer

Connecting To An Https Service With Sproutcore

I'm building a web app that requires me to connect to a service (https) to get some data. The web app is to be built using SproutCore. Now, I'm super new to SproutCore, and haven't

Solution 1:

Change:

proxy '/path', :to =>"https://myWebService.com", :secure =>true

to

proxy '/', :to =>"myWebService.com", :secure =>true

then

SC.Request.getUrl('/path').notify(this, 'notifyMe').send();

should work

Post a Comment for "Connecting To An Https Service With Sproutcore"