Hi Stu, I think you have found one of the design choice I had to struggle with.
Some companies block https://localhost/cms on the cms server, and some company made it so https://cms.domin.com/cms is only resolvable externally, not from the cms server (local host). In CMS 11.x, I am using an .aspx connector to access the webservice locally from the web server. I have made the assumption that all companies block https://localhost/cms on the cms server, and https://cms.domin.com/cms is resolvable externally and internally. If you look at the code at LINE 57 https://github.com/jhuangsoftware/j-rql-connector-https/blob/master/rqlconnector/rqlactionwebservice.aspx I am simply grabbing whatever is in the user's browser URL. If localhost/cms, I grab localhost/cms. If cms.domin.com/cms, I grab cms.domin.com/cms. Now, in your case, you might want to hardcode that line of code to localhost. -Jian On Friday, February 21, 2014 3:44:00 AM UTC-5, Stu Wilson wrote: > > Case 2 appears to be IE only, so may be a user setting > > On Friday, 21 February 2014 08:41:20 UTC, Stu Wilson wrote: >> >> This is probably a Jian question, but I'm open to other solutions. >> >> On a new installation 11.2, I'm having issues running any plugins from a >> machine external to the server. >> >> In case 1, the plugin opens and appears to run, but time out when trying >> to retrieve data and return 0 results. I believe this is due to the >> http/https issue with the RQL Connector that Jian has been fixing recently. >> >> a) accessing the CMS and the plugin from the CMS server on >> https://localhost/cms and running the plugin works just fine. >> b) accessing the CMS and the plugin from an external machine on >> https://cms.domin.com/cms and running the plugin fails >> >> I have this issue with Check Multi Page Connection, Retroactive >> References 2, and Delete All Unlinked Pages 2. >> >> All the plugins are up to date from Jian's Git repository. >> >> >> >> In case 2, parts of plugins cause 403 errors when clicking events "(RQL >> Console" "session" button") >> >> This happens regardless of where I am accessing the Plugin from. I'm >> guessing that for some reason the session variables are not being shared >> across to the popup window. >> >> Thx for checkign this out >> >> Stu Wilson >> > -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/reddot-cms-users. For more options, visit https://groups.google.com/groups/opt_out.
