CSH API vs directly call topic URL

Well, people, I need help. I've worked with developers to two different employers, and each time I give them the CSH API and Instructions for developers, they look at me funny and ask why they can't simply call the correct subject for each context.

I understand that there are some functions, like calling a window named in webhelp, that would not work because they do not use the API. However, I use the reactive HTML5 release of new, great for my current project. According to WvanWeelden (http://www.wvanweelden.eu/articles/context-sensitivity-multiscreenresponsive-html5), it does not matter with sensitive HTML5 because you do not display specific provisions.

There are other features that I should be concerned to eliminate it if one chooses to call specific topics within the application rather than use the CSH API? I know I shouldn't change my topic name (URL), unless I want to dev to have to make the change within the application. Anything else?

Thank you, in advance, for your answers.

Becky Williams
RelayHealth

Do not change the url is the only thing I can think of. The CSH API for sensitive HTML5 is simply not very complex.

Tags: Adobe

Similar Questions

  • I have a bar appear at the bottom of the torch called topic page what is it and how can I get rid of him?

    Whenever I go on a site this bar appears at the bottom give me search suggestions according to the site, I'm. It is called topic torch and that appears when I click on the source. It says DOM source selections and it is the bar in the area.

    You have installed Yontoo layers? Try to uninstall unknown or unwanted modules (including Yontoo) How to disable or remove extensions. http://www.Yontoo.com/support.aspx#remove

    If this fails, reset Firefox. Refresh Firefox – reset the parameters and modules

  • java.io.IOException:Tunnel down in a call to url

    Hello

    I wrote a code that use HTTPConnection to call a url:

    HttpConnection conn = (HttpConnection), Connector.open (url);
    conn.setRequestMethod (HttpConnection.GET);
    int respCode = conn.getResponseCode ();
    ...

    It's ok in my Pearl and send the url correct, but on "BOLD" my friend, I caught this exception:
    java.io.IOException:Tunnel Failed

    I also test who call for help

    StreamConnection c = null;
    S InputStream = null;
    try {}
    c = Connector.open (url) (StreamConnection);
    s = c.openInputStream ();
    ...

    and

    ContentConnection c = null;
    DataInputStream tell = null;
    try {}
    c = Connector.open (url) (ContentConnection);
    int len = (int) c.getLength ();
    say = c.openDataInputStream ();
    ...

    but it's the same.

    Also, I can call the url by bb browser and it's ok.
    I tested the app by WIFI and Edge.
    It's really weird

    Thanks in advance

    You must understand the functioning of connections of BB.

    Please look at the sticky thread on communications at the top of this forum.

    BTW, this is a double post on the BB developer forum, where I also answered your question.

  • Directly call the movieclip of library items

    Hello

    Is it possible to directly call a movieclip it draws for HTML5 Canvas? I believe, in actionscript 3, he is supposed to have an affair of ActionScript, but it is disabled in HTML5 Canvas...

    It is not clear, but you click twice on the link column in the library and enter the name you want to use. Then you get one like this:

    var mc is new lib. MyMovieClipLinkage();

  • When you install adobe XI, this process re - direct to other URLS?  Please list all URLS.

    When you install adobe XI, is the process of installation re - direct to other URLS?

    Download and run the Installer http://get.adobe.com/reader/enterprise/ offline

    [subject moved to forum Adobe Reader]

  • Call a URL

    Hello

    I tried to create a new process which only needs to call a url with certain parameters (which makes some actions on another server). I thought "Invoke Web Service" is the right one. But unfortunately I failed.

    -Is "Summon the Web Service" action for my need?

    N ' is there not a howto so I can create a small process that simply call a url: http//host/face/action.url? Argued = 123 & ArgumentB = 456

    AgrumentA and ArgumentB are given by the input variable.

    I would be happy if there are for example so I can see how the process should look like.

    Floh Cu

    What do you expect to happen when you call this URL. Is it simply a web page that is supposed to appear? Is there a program on the URL that returns something? Maybe a little more explanations of your use of coase would be useful.

    Paul

  • Direct calls from FLEX client database

    Hi all

    is it possible to make direct calls to database to a MySQL database (or any database) of a FLEX, rather than calling via a service client? simply, I need to remove the middle layer.

    Thanks in advance.

    SajKK

    sajkk wrote:

    Thank you all,

    Other than MySQL does support other databases? entirely?

    A project office in Adobe Flex can support SQLite. That's all.

  • Help, please! Problem in the use of http to call the url?

    Hello

    I develop application for Blackberry 8830, which is the cdma device. I want to develop the application that uses the http protocol to call url and gets the response. To use http everything I read there about 5-6 ways. But the only one that fits my needs is direct TCP. But my service provider in India i.e. Auntie Indidcom says that there can be no adjustments to the AFN for CDMA phones. What should I do now. I don't really know if that's the only problem.  I have this thread

    Different ways to connect with Http.

    There are six ways mentioned below: -.

    1 blackberry Enterprise Server with Blackberry MDS - I have Blackberry Enterprise server, so this is not possible.

    2. blackberry Internet Service - for this, the Alliance with the RIM so still no thuought on this subject.

    3 order TCP - do not get the APN settings

    4 WiFi network - I'm not network Wi - Fi is also to the equation.

    5. WAP Gateway - not looked into this yet.

    The only way I thought direct TCP, but it requires settings APN, but the message that I received from the people of Auntie, it's that the APN settings is supported for GSM based phones and not for CDMA phones. So is it possible, if yes, then please let me know, its urgency.

    Here is the code that I use for the connection.

    HttpConnection httpConnection = null;
                DataInputStream dis = null;
                DataOutputStream dos = null;
                url = "http://mailonphone.com:8180/automaticlicensing/LicensingServlet?" +
                      "UserName=ilesh&Password=ilesh123&SiteCode=012345678901234567890&" +
                      "ScratchCard=05533978;deviceside=true";
                System.out.println("URL=>" + url);
                try
                {
                    httpConnection = (HttpConnection)Connector.open(url, Connector.READ_WRITE);
                    httpConnection.setRequestMethod(HttpConnection.POST);
                    InputStream istrm = httpConnection.openInputStream();
                    String resMsg = httpConnection.getResponseMessage();
                    System.out.println("REsponse Message=" + resMsg);
                    int length = (int)httpConnection.getLength();
                    String str;
                    if (length != -1)
                    {
                        byte servletData[] = new byte[length];
                        istrm.read(servletData);
                        str = new String(servletData);
                    }
                    else  // Length not available...
                    {
                        ByteArrayOutputStream bStrm = new ByteArrayOutputStream();
                        int ch;
                        while ((ch = istrm.read()) != -1)
                            bStrm.write(ch);
                        str = new String(bStrm.toByteArray());
                        bStrm.close();
                    }
                    System.out.println("Registeration Key=>"+str);
                    int in=str.indexOf("");
                    int en=str.indexOf("");
                    key=str.substring(in+6,en);
                    key=key.trim();
                    System.out.println("KEy="+key);
                }
                catch(Exception ex)
                {
                    System.out.println("Error while calling url");
                    key = "In catch while calling url";
                    //sendMenuItem.setText("Message not send");
                }
            }
    

    If there is a problem in the code then let me know also. I could not test this even on the MDS do not work on simulator emulator. Look into that, but if its related to another question please let me know.

    Thank you & best regards

    Sunil

    The exception it throws in wrestling, will give you an idea about the problem.  I suspect something is wrong with your data, for example, you have specified HttpConnection.POST, but you provide no post data, so I think that you really wanted to say HttpConnection.GET.

    WAP 2.0 does not work on the Simulator.

    I recommend that you get your code work using the Simulator (i.e. ";) deviceside = true') until you are exposed to problems trying to connect on a real device.

  • Query about the ADF task flows call using URL

    ADF Version: 12.1.3 and 11.1.7

    We have a scenario where we want to implement a Home Application and product Application deployed as separate web applications.

    Now the House must have the ability to call the Application of product using call URL delimited task flow.

    My query is whether the return of a stubborn workflow will work in this scenario, because it works with the delimited call task normal flow.

    What are the other alternatives if it won't?

    Also anyone provides me with examples of applications for the above scenario.

    Kind regards

    Nikhil

    Here's a nice article on this topic

    http://www.Oracle.com/technetwork/developer-tools/ADF/learnmore/43-remote-task-flow-169185.PDF

  • Direct call from Session Bean vs invoking the binding to call the SB

    This question is directed to a method to handle the call to the bean to support rather than using the input fields and the provided button by dragging the method on the data control.

    One is better than the other?

    It is better to think that...

    bean.getMyFinderMethod ("parm1", "parm2");

    Note: where getMyFinderMethod is the same value as getMyBinding in the comparison

    that whole...

    DCBindingContainer dcBindings = (DCBindingContainer) this.getBindings ();
    OperationBinding operationBinding = (OperationBinding) this.getBindings () .getOperationBinding ("getMyBinding");
    Map params = operationBinding.getParamsMap ();
    params.put ("parm1", parm1);
    params.put ("parm2", parm2);
    Object result = operationBinding.execute ();

    your opinion is welcome...

    Hello

    If you work with the ADF, then all calls should be through the ADF link layer, the OperationBinding class. If you bypass the link layer, then a State indicated on a view of the application related to the ADF may be out of synchronization with the State in business. In addition, you won't to anyone doing a favor by using two different API in your application and development instead of make your code hard to read

    Frank

  • With 33.0, why can not directly enter a URL in the box address?

    Until 32.0.3 (I am scrupulous on the explicitly download updates of Firefox manually), everything was more or less OK. I first encountered the problem w / my main PC under Windows 7, during the last week, I noticed that I could not type a URL in the box and go directly to this site. Now I did the updates on the other three PCs and two of them, I had the presence of mind to test this issue. On a PC Lubuntu (Linux) and another box of Windows 7, the address box becomes inert * after * the 33.0 update and NO OTHER CHANGES (for Adobe Flash, Firefox configuration, regardless.)

    To manually enter a URL, type the address in the box run that works in both environments. If the current tab is empty, then Firefox will use. Otherwise, Firefox opens a new tab to visit the site. This behavior has been confirmed on both platforms.

    Thank you also for making account with your findings,. m - roboto. I hope that this can also assist other affected users!

  • Huge topics (URL links) appearing in Google search results

    Since about a week or two ago (URL links) topics that appear in the Google search results I was huge.
    I don't think this inconvenience comes from Google, because it does not happen with Internet Explorer 8. Furthermore, I believe that Google would not leave this question open for so long. In addition, it is less obvious when Firefox opens Yahoo. In short, it is a matter of "Firefox with Google".

    I run Firefox 27.0.1

    Thank you.

    Alkis

    It's a good idea to test things in safe mode, but please be aware that not every change of setting will be reset in safe mode. So, reset can still solve the problem. Another thing you can try removes cookies (especially those estate of google), and the zoom reset, something could have with that before. Here's how to reset the zoom level: https://support.mozilla.org/en-US/kb/font-size-and-zoom-increase-size-of-web-pages

  • Skype Api for video calls using SKYPE4COM.dll in c#

    I want to integrate Skype video call on my Web site, is there any /API tutorial using SKYPE4COM.dll refer.

    Please help me give some mention the link to Skype video calls with asp.net c#. because most of the links that I checked is dead or cannot be found.

    Means im not able to use Skype call video integration in my Web site?

  • Direct call of blackBerry curve 8350i blackberry Smartphones

    Does anyone know if or how I can access the option to purchase on my 8350i curve. Not talk (PTT) direct. I need to be able to contact emergency personnel when the direct conversation cannot be operational

    I think you have your terms mixed up.

    'Direct Connect' - what Sprint calls their PTT functionality.

    'Direct Talk' - what Sprint calls their "push-to-talk off all digital network that works anywhere, anytime between compatible phones.» ¹ during emergencies or failures of network, or when you are in a remote area, Direct Talk provides a reliable backup communication tool when it matters most. "(taken from the Sprint Web site)

    If you are referring to where spend you your mode phone off cellular network to speak live, where you choose a channel and it turns into a walkie-talkie that can communicate with other phones on the same channel where there is no cell signal, then the answer is unfortunately no, you can't do that now.  I think that the only phones that offer this feature are manufactured by Motorola.  However, there is a chance that the feature can be added to the 8350i later via a software update.

  • How to limit navigation directly via the URL when the user tries to type the page number and access this page in ORACLE APEX 4.2

    Hi all

    I developed an application where I have 6 pages and 5 tabs and based on the user role I posted the tabs for the user to access these pages.

    But when the user, who doesn't have access to the particular page (say, page 2), but still the user can navigate to it directly by typing the page number in the URL.

    I want to avoid such scenarios.

    eg: http://Apex.Oracle.com/f?p=110:2 , when the user type this in the address bar, it navigates the user to this page even if this particular user does not have access to this page.

    How to prevent the user to navigate through the URL, if the user tries to navigate directly through URLS rather than tabs, I have to give the error message.

    Version: ORACLE APEX 4.2

    Thank you

    Good reading this recent post

    Re: Authentication at the Page level

    All links to a page and the page itself must be secure.

    You can also consider the protection of session state to prevent tampering of the URL.

Maybe you are looking for

  • Adapter for 5205-S503?

    Hello The my Satellite 5205-S503 AC adapter broken, and I need a compatible as soon as possible. Only the model of the laptop is not found in the product search on the Toshiba page (strangely, it is even not listed in the discontinued models). So, ho

  • What are the components of Windows XP and what is their purpose?

    What are the components of windows and what are their purpose?

  • Discovery of the SD card

    There is a method to find if the SD card is inserted or not to specify the default storage for files path TKS r.Soler

  • LifeChat with Windows 8

    Lifechat headset work with Windows 8?  I uninstalled and reinstalled the material included.

  • Export error using the size limit

    Everytime I try and export using the ' size limits to "I get an error saying that no photo rendering is on disk (1)I use windows 8.1 pro x 64Lightroom 5.7.1Any help will be greatly appreciated.Lee