kony

KONY - IOException occurred while obtaining response: feed.foxnews: nodename nor servname provided, or not known

这一生的挚爱 提交于 2019-12-11 12:56:22
问题 I am newbie to Kony trying to do a sample service call and i am seeing the below error, Can you please help what could have possible gone wrong with this. When i click on the getResponse button in studio i see below error, I have checked project settings and kony server is selected and configured. thanks in advnace for all your help. Error :- IOException occurred while obtaining response: feed.foxnews: nodename nor servname provided, or not known 回答1: Delete existing service and configure the

Is it mandatory to use Kony middleware for Kony application?

早过忘川 提交于 2019-12-11 03:19:12
问题 I am creating a Cross platform application using Kony Studio. We are having our backend and web services ready. Can we consume same services with out accessing Kony middleware? If yes, can you please help with some sample code and tutorials. 回答1: We can call consume the services without using the middleware using the HTTPRequest API var request = new kony.net.HttpRequest(); request.onReadyStateChange = callbackHandler1; request.open(constants.HTTP_METHOD_GET, service_url); request.send(); You