-
1. Re: Map ID call in RH11
Jeff_Coatsworth Nov 7, 2014 6:21 AM (in response to Cape Ops)What CSH method are you using?
-
2. Re: Map ID call in RH11
Cape Ops Nov 7, 2014 6:31 AM (in response to Jeff_Coatsworth)Jeff,
I am not sure. In RH7 I used the Map ID tool and have mapped 200+. These are called by a web application such as, http://<server<http://%3cserver> name>/roboapi.asp?context=Map ID
I have upgrade my RH7 projects to RH10 and then to RH11 and I need to be able to call the Map IDs. Also, when users call needing application support on a particular topic I will send them the above URL, with the appropriate Map ID, so they can click and get right to the topic.
Rich
-
3. Re: Map ID call in RH11
Jeff_Coatsworth Nov 7, 2014 6:45 AM (in response to Cape Ops)Check Peter’s site (grainge.org) and Willam’s site (wvanweelden.eu) on calling WebHelp
-
4. Re: Map ID call in RH11
Captiv8r Nov 7, 2014 7:01 AM (in response to Jeff_Coatsworth)HI folks
I stand to be corrected here, but I think the RoboAPI.ASP indicates RoboHelp Server being in use.
Perhaps John Daigle will pop in to confirm or deny that.
Cheers... Rick
-
5. Re: Map ID call in RH11
Cape Ops Nov 7, 2014 7:13 AM (in response to Captiv8r)Yes, I am using RoboHelp Sever. The MAP ID URL call was very simple in RH7, did this functionality become very complex with RoboHelp Server 9 & RH11?
-
6. Re: Map ID call in RH11
Jeff_Coatsworth Nov 7, 2014 7:32 AM (in response to Cape Ops)RH Server? I’m out – calling John or Colum (robocolumn.com)…
-
7. Re: Map ID call in RH11
hypertexas Nov 7, 2014 9:05 AM (in response to Jeff_Coatsworth)Hi, Cape Ops
Yes, that file supports the CSH calls. However, you and/or your developer should refer to these online help links for more specific details.
Adobe RoboHelp 11 * Program Help for web pages
Adobe RoboHelp 11 * Steps without using support files
Look for the sections that refer to "Webhelp Pro".
This is where to find the RoboHelp_CSH.js file in case your developer is looking for it.
C:\Program Files (x86)\Adobe\Adobe RoboHelp 11\CSH API\JavaScript\RoboHelp_CSH.js
John Daigle
-
8. Re: Map ID call in RH11
John Daigle Nov 7, 2014 9:05 AM (in response to Jeff_Coatsworth)Hi, Cape Ops
Yes, that file supports the CSH calls. However, you and/or your developer should refer to these online help links for more specific details.
Adobe RoboHelp 11 * Program Help for web pages
Adobe RoboHelp 11 * Steps without using support files
Look for the sections that refer to "Webhelp Pro".
This is where to find the RoboHelp_CSH.js file in case your developer is looking for it.
C:\Program Files (x86)\Adobe\Adobe RoboHelp 11\CSH API\JavaScript\RoboHelp_CSH.js
-
-
10. Re: Map ID call in RH11
Cape Ops Nov 7, 2014 9:21 AM (in response to John Daigle)John Thanks,
Thanks, We used the URL http://<RoboHelp server>/robohelp/rest/robowindow?wtype=ctx&context=<id>&project=<project name> and we get
<?xml Version = “1.0” encoding = “UTF-8”?>
<error>Error</error>
-
11. Re: Map ID call in RH11
John Daigle Nov 7, 2014 10:38 AM (in response to Cape Ops)Unfortunately, your post shows a generic string and I can't really grasp what you are asking. The error could be anything.
Perhaps it will help if I give some examples.
Here are some common CSH calls to show examples of the syntax:
Context Sensitive Help call with RoboHelp Server 9 (WebHelp Pro)
Here is the syntax of forming the help topic call to a Map ID number.
http://<servername>:<portnumber>/<contextname>/server?area=<areaname>&prj=<robohelpprojectname>&c txid=<Map ID>&wnd=<windowname>
Anything in angle brackets means you would substitute your actual project information.
Some assumptions in this scenario:
You are using the defaut "context" name, robohelp.
The <windowname> property is optional and created by the Author in the client app under Project Setup pod (Window). If not defined, the topic will appear in a default window.
So this is what a "real" string might look like:
http://localhost:8080/robohelp/server?area=general&prj=HumanResources&ctxid=1&wnd=CSHWindow
Finally, be sure you have all RoboHelp 11 client and RoboHelp Server 9 "updates" installed:
Adobe - Support : RoboHelp Support Center : Service Releases
RoboHelp Server Update 9.0.1 is here ! « TechComm Central by Adobe
John Daigle
Adobe Certified RoboHelp and Captivate Instructor
Evergreen, Colorado
-
12. Re: Map ID call in RH11
Cape Ops Nov 7, 2014 11:14 AM (in response to John Daigle)John,
Thanks so much for hanging in here. Here are the details. I have a web application used by 20,000+ users and for each web page I have a help document published in a RoboHelp WebHelp Pro merged project. If users need to access the help document for any web page in my application there is a link on the web page directing them to the particular RoboHelp Project help document. I am doing this currently in RH7, and the link for each document is defined by the Map. For example, http:/<RoboHelp Server>/roboapi.asp?context=143 (this URL works)
The server that houses my RoboHelp Server has reached end of life and with the new server refresh we are upgrading to RH11 and RoboServer 9. We installed RoboServer 9 and I upgraded my RH7 projects to RH10 and then to RH11, and we have installed the recent updates to both. We can access the RH11 merged projects on the new server, we are just trying to get the Map ID functionality to work as it did on RH7. I have tried the following URL, http://<New RoboServer>:8080/robohelp/server?project=WLI&area=WLIs&ctxid=143
and this does not work. My Project Name is WLI, the Area is WLIs and the Map ID is 143. This URL opens my RoboHelp merged Project to the Start page, and displays this URL in the IE address bar, http://<New RoboServer>:8080/robohelp/server?%26area%3Dwlis%26mgr%3Dagm%26agt%3Dwsm%26wnd%3DWLI%7CWor k%20Level%20Instructions%26tpc%3D%2Frobohelp%2Frobo%2Fserver%2FWLIs%2Fprojects%2FWLI%2FWLI0260.htm%26ctxid%3D143%2 6project%3DWLI
-
13. Re: Map ID call in RH11
Cape Ops Nov 11, 2014 8:52 AM (in response to Cape Ops)New Twist...I did some testing with Google Chrome and found if I turned off Pop-Up Blockers, the Map IDs (CSH) work. I tried this in IE11 and I get the message "The help page you are looking for can be found at here." (clicking on here will display the CSH). We only use IE so having the users switch to Google Chrome is out, and Pop-Up Blockers turned off is against company IE policy. Any ideas?
-
14. Re: Map ID call in RH11
Jeff_Coatsworth Nov 11, 2014 8:56 AM (in response to Cape Ops)What about having pop ups allowed for your site? How about adding the help as a “Trusted Location” in IE11?
-
15. Re: Map ID call in RH11
Cape Ops Nov 11, 2014 8:58 AM (in response to Jeff_Coatsworth)I tested that and it does partially resolve the problem in IE11. It still gives the message and the user must click the here link.




