|
Post by Vihaan on Feb 4, 2018 11:28:42 GMT
Hi,
I am getting this error while making api calls. This used to work well till early this week. API calls are all the same but getting this error.
2018-02-04 16:53:34.543134+0530 rhorunner[1162:323046] [] nw_endpoint_flow_service_writes [1.1 54.92.197.202:80 ready socket-flow (satisfied)] Write request has 4294967295 frame count, 0 byte count
2018-02-04 16:53:34.975081+0530 rhorunner[1162:322984] [] nw_endpoint_flow_service_writes [1.1 54.92.197.202:80 ready socket-flow (satisfied)] Write request has 4294967295 frame count, 0 byte count
2018-02-04 16:53:34.976111+0530 rhorunner[1162:323100] [] tcp_connection_write_eof_block_invoke Write close callback received error: [89] Operation canceled Please advice.
|
|
|
Post by Dmitry Soldatenkov on Feb 5, 2018 4:49:14 GMT
please provide more details : iOS version, SDk version, XCode version, Rhodes version, device, your build.yml and rhoconfig.txt files
|
|
|
Post by Vihaan on Feb 5, 2018 8:54:49 GMT
IOS Version: 10.3 SDK Version: 10.3 Xcode Version: 8.3.1 Rhodes: 5.5.0.61 Device: iphone 5S
Build.yml
sdkversion: "5.5.0.61" name: "###" version: 1.5 vendor: "###" build: "debug" applog: "rholog.txt" iphone: configuration: "debug" sdk: "iphonesimulator10.3" orientation: "portrait" provisionprofile: codesignidentity: "iPhone Developer" entitlements: BundleIdentifier: "com.###.###" BundleURLScheme: "###" emulatortarget: "iphone" wp8: productid: "f97ea280-9999-0132-428f-589d67d0f6ef" android: package_name: "#.###.###" android_title: "0" orientation: "portrait" version: "5.1.1" no_compression: - pdf capabilities: production: certificate: "##" password: "##" alias: "##" extensions: - json - fileutils - coreapi capabilities: - vibrate - rhodes_translator sdk: "/Users/vihaan/.rvm/gems/ruby-2.3.3/gems/rhodes-5.5.0.61"
rhoconfig.txt
# startup page for your application start_path = '/app/User/decider_page' #start_path = '/app/Settings/index' # path to the options page (in this case handled by javascript) options_path = '/app/Settings'
# location of bundle url (i.e. from rhohub.com); used by desktop win32 simulator rhobundle_zip_url = ''
# optional password to access bundle (usually not required); used by desktop win32 simulator rhobundle_zip_pwd = nil
# Rhodes log properties # log level # 0-trace, 1-info(app level), 2-warnings, 3-errors # for production set to 3 MinSeverity = 1
# enable copy log messages to standard output, useful for debugging LogToOutput = 1
# '*' means all categories, otherwise list them : Cat1, Cat2 LogCategories = *
# what categories to exclude ExcludeLogCategories =
# max log file size in Bytes, set 0 to unlimited size; when limit is reached, log wraps to beginning of file MaxLogFileSize=50000000
# turn on local http server traces, off by default net_trace = 0
# timeout of network requests in seconds (30 by default) net_timeout = 60
# where log will be posted by RhoConf.send_log or from the log menu # source is also open and up on http://github.com/rhomobile/rhologs, so you can deploy your own logserver logserver = 'http://rhologs.heroku.com'
# log file prefix - contain human-readable text logname='mustache_widget'
# Keep track of the last visited page KeepTrackOfLastVisitedPage = 0 LastVisitedPage = ''
syncserver = 'http://172.16.18.241:9292' Push.rhoconnect.pushServer = 'http://172.16.18.241:8675' Push.rhoconnect.pushAppName = 'L3Ethics'
# sync server url, typically this will look like 'http://<hostname>:<port>' # for example: 'http://localhost:9292' #syncserver = '' #sync_poll_interval=0
# geo location inactivity timeout (in seconds) #geo_location_inactivity_timeout = 30
# open rhodes app in full screen mode # default 1 for Android up to Rhodes 2.2.5. # on all other platforms and on Android from Rhodes >2.2.5 default 0
full_screen = 0
# show top menu on Windows desktop in full screen mode (default is 0=don't show top menu) #w32_fullscreen_menu = 1
# disable the Android page loading progress bar disable_loading_indication = 1
# Port of the local (embedded) HTTP server. This parameter is mainly for debug purposes. # If not specified, application will use dynamically selected one. # WARNING!!! Remove this parameter before put application to production. # local_server_port = 8080
# show status bar on windows mobile. default 1 #wm_show_statusbar = 1
# disable screen rotation (enabled by default) - disable possible for ANDROID and iPhone ONLY disable_screen_rotation = 1
# disable close app when pressing back on home screen on blackberry #bb_disable_closebyback = 0
# load images in background, this improve reaction speed on user actions, 0 by default #bb_loadimages_async = 0
# set to 0 to reset the bulksync_state and trigger a bulk sync the next time rhodes synchronizes #bulksync_state = 1
# hides forward button and animates back button transition jqtouch_mode=1
splash_screen='delay=120;hcenter;hzoom;vzoom' splash_screen='zoom' splash_screen='none', android = no effect splash_screen='hzoom', android = no effect splash_screen='vzoom', android = no effect splash_screen='hcenter', android = no effect splash_screen='vcenter', android = no effect
use_bb_full_browser=6
|
|
|
Post by Dmitry Soldatenkov on Feb 6, 2018 2:26:24 GMT
Hm... Please build application with next rhoconfig.txt values:
MinSeverity = 0 MaxLogFileSize=0 net_trace = 1
reinstall application
and send me _complete_ rholog.txt (it will contain error output and other other useful info)
My mail is dsoldatenkov@tau-technologies.com
|
|