Bad link on Collaboration Suite page

On http://www.oracle.com/technology/products/cs/index.html
in the Learn More box on the right, is a link to "Network Planning for Oracle Collaboration Suite (HTML)".
I click on this and the page begins to redraw and then blows me out of Internet Explorer.

The referenced link is actually broadband content; if you have a popup blocker in effect it will not display properly.
Cheers, OTN

Similar Messages

  • Orcladmin can no longer access Collaboration Suite pages with SSO enabled

    I can no longer use the orcladmin account to access Collaboration Suite pages when SSO is enabled. I have the plug-ins listed in OID and have set the one property to exclude orcladmin (and other admin level accounts) from being authenticated using the external authentication connector with ADS. And yet despite that orcladmin still can't authenticate. I can see in the OC4J log that the authentication in IE is falling back to NTLM authentication but is still failing. What the heck am I missing?

    Swipe between pages stopped working for  me as well completely out of the blue. I haven't installed anything / updated anything lately, and it just stopped working about an hour ago.
    My issue isn't with Mission Control, it's with my browsers:
    In Safari, if I try to swipe to go back a page, it freezes the entire page. I can't scroll anywhere.
    In Chrome, swiping to go back pages just doesn't work at all. But no freezing occurs

  • Bad link in JDeveloper download page

    In http://www.oracle.com/technology/software/products/jdev/index.html page, I can't download Oracle JDeveloper 10g (Version 9.0.5.2, build 1618) because it's link (http://www.oracle.com/go/?&Src=1952635&Act=33) is not working.

    This link works fine for me. Please clear your browser cache and re-try...
    Regards, OTN

  • Forbidden portal front page after viewing webmail (Collaboration Suite rel 1)

    Collaboration Suite rel 1 (Same problem existed on 9iAS rel2)
    After logging into the portal, I am able to go to the webmail page, and it logs me in, setting a cookie OHS-SERVERNAME-PORT#. When I click on the return to portal link, a 403: Forbidden is returned. If I go in and manually delete the cookie (which is a mod_osso cookie), I am able to the view the page fine. Anyone have any luck with this, having both portal and webmail on the same system? Thanks.
    Jj

    Hi,
    I am facing the exact problem, just that my application is running on Windows platform.
    The cause of this problem as I understand is, because the Portal server with which we wish to register the producer is not WSRP enabled.
    The producer and the Portal Server communicate using the WSDL protocol, hence the URL
    http://mac.ultralab.net:8888/hotseatPortlet/portlets?WSDL, is the one that we woule have to provide with WSRP standard enabled Portal Server.
    Regards,
    Mukta

  • No Link to download Collaboration Suite for AIX

    Hello,
    there is no link to download Collaboration Suite for AIX on OTN.
    Any helps ?
    Pierre

    Any news for this ?
    We need to get OCS asap ?
    Thanks in advance,
    Pierre

  • Java Collaboration Suite API - Common Problems......and Solutions!

    , Hi all,
    I'd just like to share some of the issues I've come across in my first try at using the Java Collaboration Suite API (including the Accelerator Kit).
    In short,
    The Good: I've succeeded in getting a working application, and the code doesn't look half bad.
    The Bad: Man was it a pain to get to this point.
    Here are a few notes about what I've found, what can be improved by oracle, and hopefully it will help others.
    1. The initial setup went smoothly. I included the Jar's from the web kit, and was able to successfully connect using OCDConnectionFactory.CreateConnection. This first attempt didn't use the Accelerator Kit, as at the time I didn't even know it existed. As soon as I started to try any examples from Oracle, code snippets wouldn't even compile (usually due to FDKUtils and FDKSession) and I couldn't find out why. After exhaustive research, I found that the Accelerator Kit here (http://www.oracle.com/technology/products/cs/developer/contentservicesdev/contenservicesdevkit.html), but it is not a library in the lib. After even further research, I found a very interesting thing. If you click on the link I've shown, you will see 2 versions of the Accelerator Kit: The recent link just includes the kit as a bunch of classes. I found it kind of ugly to include those in my project. However, if you click on the older link you will find a jar called "content-ws-helper.jar". This is actually the Accelerator Kit in a JAR (yet without any documentation anywhere on this).
    2. When using the accelerator toolkit, the connection string you use to connect changes. It no longer should have "ws" at the end. Don't believe this is documented anywhere! So if your connection string is http://server:8888/content/ws it should be changed to http://server:8888/content/
    <strong>
    </strong>3. Most of the examples given are appreciated, but they are also impossible to read. Methods should not be hundreds of lines of code long! Here is a handy method that I seem to be using quite often (at least in my use cases).
    private Item getFolder(String path) throws OCSServiceException {
    try {
    FileManager fm = Managers.getFileManager(fdkSession);
    Item workspace = fm.resolvePath(path, null);
    CommonManager commonM = Managers.getCommonManager(fdkSession);
    workspace = commonM.getItem(workspace.getId(), attributeRequest);
    return workspace;
    } catch (Exception e) {
    LOGGER.error(e.getMessage(), e);
    throw new OCSServiceException("Exception getting folder");
    The key is the attributeRequest class variable. This is the object that changes depending on what properties I want to retreive regarding that folder. A commonly used one for getting categories is:
    attributeRequest = FdkUtils.newAttributeRequestArray(Attributes.CATEGORY_CONFIGURATION,
    FdkUtils.newAttributeRequestArray(Attributes.ATTRIBUTE_OVERRIDES,
    new AttributeRequest[]{
    FdkUtils.newAttributeRequest(Attributes.ATTRIBUTE_OVERRIDE_ATTRIBUTE),
    FdkUtils.newAttributeRequest(Attributes.ATTRIBUTE_OVERRIDE_DEFAULT),
    FdkUtils.newAttributeRequest(Attributes.ATTRIBUTE_OVERRIDE_CATEGORY_CLASS)
    By seperating this out, It gets rid of a ton of the speghetti like code that you see in most of the examples and on the forums.
    For example, this thread helped me in category updates for folders http://kr.forums.oracle.com/forums/thread.jspa?threadID=495959
    , but as the post at the bottom states, this should not be the difficult. My method, which performs a similar method, is as follows:
    public void updateFolderCategory(String path, String categoryName, String categoryAttributeName, Object value ) throws OCSServiceException {
    try {
    CategoryService cs = new CategoryServiceImpl();
    long categoryId = cs.getCustomCategory(categoryName).getId();
    long attributeId = cs.getCustomAttribute(categoryName, categoryAttributeName).getId();
    NamedValue[] attOverride = new NamedValue[]{
    new NamedValue(Attributes.ATTRIBUTE_OVERRIDE_ATTRIBUTE, new Long(attributeId)),
    new NamedValue(Attributes.ATTRIBUTE_OVERRIDE_CATEGORY_CLASS, new Long(categoryId)),
    new NamedValue(Attributes.ATTRIBUTE_OVERRIDE_DEFAULT, value),
    new NamedValue(Attributes.ATTRIBUTE_OVERRIDE_REQUIRED, DEFAULT_REQUIRED),
    new NamedValue(Attributes.ATTRIBUTE_OVERRIDE_SETTABLE, DEFAULT_SETTABLE),
    new NamedValue(Attributes.ATTRIBUTE_OVERRIDE_PROMPT, DEFAULT_PROMPT),
    NamedValue[] categoryConfigurationAttributes = new NamedValue[]{
    new NamedValue(Attributes.ATTRIBUTE_OVERRIDE, attOverride)
    connect();
    Item folder = getFolder(path);
    Managers.getCategoryManager(fdkSession).setCategoryConfiguration(folder.getId(), categoryConfigurationAttributes);
    LOGGER.info("Updated folder category definition");
    } catch (Exception e) {
    LOGGER.error(e.getMessage(), e);
    throw new OCSServiceException("Exception updating category");
    } finally {
    disconnect();
    I hope this information helps someone, and I'd appreciate if anyone can also add input or critique my approach. I also hope that there is someone else out there who is still using the API and hasn't given up yet!

    I was also looking for something like this..I did not get any response.
    Did you tried to add bpel:exec ? you can call OCS api in the java blockc within BPEL. I am using this and creating folder from BPEL.

  • Oracle Collaboration Suite system compatibility error on Red Hat 3.0 ES

    Hello,
    I have installed Oracle Collaboration Suite on Red Hat 3.0 Es.i can view the home page of Oracle Real-Time Collaboration ,But during system Compatilbility check, it is showing me the error message as "your system is not compatible with Oracle Web Conferencing. Please look at your system details for more information."
    Can anyone please help?
    Regards,

    What clients are you trying to use to for web conferencing. It sounds like you are trying to use redhat to view. Only windows will work with web conferencing and it has to be the latest and greatest? version of internet explorer.
    Ben

  • Oracle Collaboration Suite download disappear

    Hi,
    Where can I download the Oracle Collaboration Suite. Few weeks back I was able to see the download page, now they are nowhere to find.
    Thank you.

    Hello
    We found your details on Oracle forums.
    We are Experts Computer Consulting, company based in Abu Dhabi, UAE
    Currently we are looking for Oracle Collaboration consultant, someone who has good knowledge in installation, configuration of oracle collaboration suite.
    We would like to know if you are interested to work in United Arab Emirates. If yes then send us your resume along with your salary expectations.
    Thanks
    Experts Computer Consulting
    P.O. Box: 27635, Abu Dhabi, UAE
    Tel: 00971-2-6765722
    Fax:00971-2-6765799
    Email: [email protected]

  • "Open an Adobe Connect case" link leads to 404 Page Not Found error

    From the "Adobe Connect Help / Adobe Connect Support" page at:
    http://helpx.adobe.com/adobe-connect/connect-support.html
    Click on "Open an Adobe Connect case".
    See 404 error page.
    That bad link points to:
    https://www.adobe.com/account/sign-in.supportenterpriseportal.html
    ... which does not exist.
    Does Adobe Connect still let customers open support cases?  I know they still use a support case system, since one was opened for me a couple of months ago, but IIRC, they opened it on their side.  Maybe customers can no longer directly submit cases.  In any event, the broken link obviously should be fixed -- either corrected to point to a valid support case entry page, or deleted if customers are no longer allowed to open cases.

    I would recommend bringing this up with Adobe Support, as it will get a more useful response than on the user forums here.
    A good place to start: Adobe Connect Chat Support

  • Dead links on the Download Page

    I noticed a few of the downloads on the Flex page were not working... couldn't figure out a better place to mention this so I decided to post here. Anyone know a better spot? Anywho, the two links I tried to hit were:
    http://opensource.adobe.com/wiki/display/flexsdk/download?build=3.0.1.1092&pkgtype=2
    http://opensource.adobe.com/wiki/display/flexsdk/download?build=3.2.0.3794&pkgtype=2
    They are the two sdk's supported for the FlexCover project.
    -Steve

    Dave Pulaski (guest) wrote:
    : As it turns out, the links on the download page ARE wrong...
    they
    : point to the correct directory, but the filenames themselves
    are
    : wrong. The seven individual files are named "805shipX.tar",
    : where X is a number 1 - 7. If the webmaster for this site is
    : watching this group, please take note and fix the page!
    : In the meantime, you can still get the files by going directly
    to
    : ftp.oracle.com. Too bad it's agonizingly slow...
    : -Dave
    hey,
    you can just buy the trial software for $5.95, it also comes
    with documentation !!!!!! YEAH BABY !!!
    -Alex
    null

  • Portfolios, bad links & splash screens

    (using acrobat 9 pro, XP, firefox) A bad internal link (page, document or folder) within a portfolio often results in the splash screen "For the best experience update your Acrobat Reader..." or words to that effect.  I need to prevent this and provide for one or all of the following alternatives when hitting a bad link:
    1. redirect to another page (without a splash screen, of course);
    2. do nothing.
    (better yet, if it can inform me by email of  the bad-link and its location along with the above alternatives)
    In any case, I do not wish to show the built in splash screen either during portfolio editing or when viewed online. Entirely unacceptable.  Any thoughts/methods to remove this annoyance?
    (sorry if this should be posted to another forum.  please inform me if there is a better place to ask this type of ?)  - thank you.

    It is obviously a bug. But if there is an internal bad link, the problem is with the document. Acrobat/Reader is just not handling the corrupted pdf file gracefully. The best you can do is ask Adobe to fix the problem:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Problems to change color Portlets in the Collaboration Suite

    Hello:
    I have one problem I need Customizing Fonts Color but I follow the steps in the Oracle® Collaboration Suite Administrator's Guide customizations to the logos, colors, and fonts used in various Oracle Collaboration Suite interfaces.
    But when I change the font color to the "porlet header page" and click apply only change this color in some portlets but not in all the portlets....
    How I fix That
    Thanks
    Karla .

    I use the portlet style in the builder. Where I find the .xss .
    Olso I follow the steps in the administrator guide:
    Use the Portal style editor tool to customize the appearance of the Por
    tal home page:
    a. Use the “Style Element Type” drop-down list to view style settings for various style elements (Common, Portlets, Tabs, and Items).
    b. Within each style element type, use the Style Element Properties tool to customize style properties.
    c. Click the Apply button to apply your changes and preview the result in the Preview section.
    Thanks
    KB

  • Links Palette Showing for Page Number

    I can't find anything about this on these forums or in a Google search, so I'm not sure what's happening.
    We publish a dozen 300-page catalogs a year with several thousand images. Each catalog is comprised of sections. Once in a while (probably more often than not), instead of the page number on which it appears, one or more of the linked images shows < > in the page number column of the links palette. If we click on it (to show the image), nothing happens.
    Has anyone encountered this before? We're using CS4 for Windows.
    Thanks in advance,
    Lloyd

    Steve,
    I will as soon as we see one again, which shouldn't be long. We exported the section as XML from the "structure" pane then imported it as XML and those bad links were gone, which is kind of a band-aid for now. I'd like to know what's causing it, though.
    I'll attach a screen capture as soon as I can. Thanks.
    Lloyd

  • Add a OBIEE Dashboard Link  in EBS Suite

    Hi
    How can i add an OBIEE URL link in EBS Suite application so that when a user
    clicks on it it takes them to the dasboard page in OBIEE.
    Thanks

    As you said directly with read permissions the dashboard link doesnt appear because that is rendered through administartor.
    You have got it when you added to "Presentation Administrator group" i.e because the server side will handle all the possibilities and the permissions on it.
    create your own catalog group again and name it and then after that checkout you have given the right dashboard name and dont leave the dashboard builder empty..Fill it up with Administrator and the user you want to give access then add members to the group and give them the neccessary permissions so that would give them access.
    Hope it helps you.
    Best Wishes,
    Kranthi.

  • Workflow & Oracle Collaboration Suite 10GR10.12 - documentation

    Is there any good documentation for admin about Workflow in Oracle Collaboration Suite 10 R10.12 ?

    Daniela,
    The Workflow Home page is a simple PL/SQL Web tool kit based UI and there have been customizations done to it in the past.
    Cheers,
    Raja

Maybe you are looking for

  • How to save the data present in the description box?

    HI friends,                I have got a requirement where i am having one description box (custom_container) in one screen and the line length is 250. Code is like this... DATA: CUSTOM_CONTAINER TYPE REF TO     CL_GUI_CUSTOM_CONTAINER, EDITOR TYPE RE

  • Chrome Create PDF Extension Doesn't Convert Secure Web-pages (Acrobat XI)

    I still cannot convert secure webpages in Google Chrome using the Acrobat XI Create PDF Extension.  This is annoying when for example I checkout from a site and I want to convert my receipt to a PDF, however it simply does not work.  see other posts

  • Every time I send a message it says error not delivers :(

    I have all ready tried to turn it off and on in the setting and turn on and off the wifi nothing works people have been tailing me to reset  my iPad mini but I don't won't to.

  • JDK version vs IDE - Doesn't this make sense?

    If a particular update of Java (update 4), doesn't work properly with a specific IDE, doesn't it make sense to ditch the IDE in question? The IDE only functions well with a previous version of Java (update 3). Isn't the version of JDK more important

  • TREE --Context binding of property TEXT cannot be resolved:

    I have the following Error Adapter error in &VIEW_ELEMENT_TYPE& "OBJID" of view "YFIDOA_YEAR_EVAL.MAIN": Context binding of property TEXT cannot be resolved: Node MAIN.1.TREE_NODE.1.MAIN_ORGEH.1.ORGEH.1.PERNR does not contain any elements Requirement