How do I enable capability to run applets?

I was trying to access and online course from a site I had success with a few weeks ago (February, 2014).  Today, March 3, 2014, I was unable to load the course from the course menu. 
I used the site system requirements check and all was well except capability to run applets.
I am running OSX version 10.6.8, Safari 5.1.10, Java SE 6 version 1.6.0_65-b14-462.
How do I enable capability to run applets?
I read related support community items but they did not help. 

hello, lower the security level within the java settings in the system control panel: http://www.java.com/en/download/help/jcp_security.xml

Similar Messages

  • How can I enable embedded pl/sql gateway to run on port 80

    I have a new 11G install on OEL 4.0, database created. I would like to be
    able to access the instance using the pl/sql gateway. Works fine with
    port 8080, the default. How to I enable it to run on port 80?
    I found this statement in the following docuementation:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb22pro.htm#ADXDB2500
    Using HTTP(S) on Nonstandard Ports
    By default, HTTP listens on a nonstandard, unprotected port: 8080. To use HTTP(S) on
    the standard port, such as 80, your DBA must chown the TNS listener to setuid ROOT
    rather than setuid ORACLE, and configure the port number in the Oracle XML DB
    configuration file /xdbconfig.xml.I have root priviledges on the box.
    I've tried setting the listener file permissions:
    chown root:dba /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    chmod 6775 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    Also put root in the dba group.
    The permissions turn out like this:
    -rwsr-sr-x 1 root dba 830854 Jun 17 21:04 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    I stopped the listener, bounced the database, and started the listener again.
    But it still shows the process being owned by oracle:
    oracle 29682 1 0 21:08 ? 00:00:00 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr LISTENER -inherit
    Changing the port is easy:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    8080 2100
    At this point, I can access the apex home page with the following url:
    http://hostname:8080/apex/f?p=4550:10:1454849288245548
    I can than change it to port 80:
    SYS>begin
    dbms_xdb.sethttpport('80');
    dbms_xdb.setftpport('2100');
    end;
    2 3 4 5
    PL/SQL procedure successfully completed.
    SYS>SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    80 2100
    When I try to access apex with the following url:
    http://rmdcopslnx1.us.oracle.com/apex/f?p=4550:10:1454849288245548
    I get the following:
    Failed to Connect
    Firefox can't establish a connection to the server at hostname.com.
    Though the site seems valid, the browser was unable to establish a connection.
    * Could the site be temporarily unavailable? Try again later.
    * Are you unable to browse other sites? Check the computer's network connection.
    * Is your computer or network protected by a firewall or proxy? Incorrect settings
    * can interfere with Web browsing.I can set the port. Just can't talk to it.
    This is the entry from the listener log:
    <msg time='2008-07-03T15:40:09.741-06:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='hostname'
    host_addr='xxx.xxx.xxx.xxx'>
    <txt>TNS-12546: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
    TNS-00516: Permission denied
    Linux Error: 13: Permission denied
    </txt>
    </msg>
    So this looks like an permissions problem. But where? I posted
    this on the apex forum here:
    Re: How can I enable embedded pl/sql gateway to run on port 80
    They suggested asking here.

    No, that thread did not provide the information that I need. Some more data:
    I have the port set to 8080:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    8080 2100
    At this point, I can access the apex home page with the following url:
    http://hostname:8080/apex/f?p=4550:10:1454849288245548
    I can than change it to port 80:
    SYS>begin
    dbms_xdb.sethttpport('80');
    dbms_xdb.setftpport('2100');
    end;
    2 3 4 5
    PL/SQL procedure successfully completed.
    SYS>SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    80 2100
    When I try to access apex with the following url:
    http://rmdcopslnx1.us.oracle.com/apex/f?p=4550:10:1454849288245548
    I get the following:
    Failed to Connect
    Firefox can't establish a connection to the server at hostname.com.
    Though the site seems valid, the browser was unable to establish a connection.
    * Could the site be temporarily unavailable? Try again later.
    * Are you unable to browse other sites? Check the computer's network connection.
    * Is your computer or network protected by a firewall or proxy? Incorrect settings can interfere with Web browsing.
    I can set the port. Just can't talk to it.

  • How to run applet within packages in tomcat

    I have servlet packages and applet packages in my application. I can successfully called my servlet packages by using:
    http://localhost/servlet/mypackage1.mypackage2.myServlet
    However, I can't call my applet packages by using:
    http://localhost/myapplet.html
    <Applet
    CODE = "myApplet.class"
    BASECODE = "mypackage1.mypackage2/"
    </Applet>
    I am currently using tomcat default web services directory structure as follows:
    webapps\ROOT\WEB-INF\classes\mypackage1\mypackage2\myServlet.class
    webapps\ROOT\mypackage1\mypackage2\myApplet.class
    I received the following error:
    noClassDefFoundError:myApplet (wrongname: mypackage1\mypackage2\myApplet)
    Thanks in advance for any helps.

    This doesn't have anything do with servlets. Your
    problem, as you said, is how to write the HTML to run
    an applet. Whatever is trying to load that HTML
    doesn't know anything about your servlets and doesn't
    care. I think it is complaining because you did or
    didn't put your applet in the (badly-named) package
    mypackage1.mypackage2.The package names I used was just an example. My real package names were really long and 10 levels deep so I didn't want to use it. I finally figured out how to tell the browser to find my applet class package. Using my original example (with the bad package names):
    <Applet
    CODE = "mypackage1.mypackage2/myApplet.class"
    </Applet>
    I removed the codebase and just put the package class file in the root directory.
    I am sure there are more than one way to make this thing work but this is how I got my to work. Thanks.

  • HOw to run Applet in browser.

    Hi guys. I've got 2 problems.
    1. In Window, I've got Java installed (and using NetBean IDE as Java editor), so of course I've got j2sdk_nb-1.4.2 installed as well. But I couldn't run any applet in IE, for example, in games.yahoo.com, I couldn't join any game because applet always failed to load. But yesterday, I've got a pop up asking to install jre1.4.2 and after install this JRE, everything works fine. My point here is, when I have SDK1.4.2 which contains JRE, why should I have to install new JRE to run applets ?
    2. Could anyone tell me how to run applet in Mozilla, Linux. I'm using Linux RedHat 9 as well. And in Redhat, I've got J2sdk_nb-1.4.2 installed with NetBeans IDE. It said that I need appropriate Plugs-in, but in my Java directory, I also found Plugsin directory. So how to configure Mozilla to run applet.
    Thanks for reading.

    Just to let you guys know that I sorted it out already. Well, the problem lies in I'm confused between two directory /usr/lib/Mozilla and /usr/lib/Mozilla and two Java plugs-in available in nsc60 and nsc60-gcc (don't remember exactly)
    For my Linux (Red Hat 9), I've got to create symbol link from nsc60 directory to /usr/lib/Mozilla, not any other way.
    Thanks

  • Upgraded to Lion, now Virtualization has been disabled - how do I enable this so I can run VMs?

    Prior to Lion, I was able to run with Parallels Virtual Machines but now after upgrading to Lion, Virtualization has been disabled.
    How do I enable Virtualization?
    Thanks for your help in advanced.
    Dumteedoo.

    While I was typing that I updated and it was fixed, you sent through the answer :-)
    Thanks for your help tonefox.
    Much appreciated.
    Dumteedoo.

  • How can I enable Mac OS 10.6.4 to run OS Classic scanning software?

    Hi there.
    Just wondering how I can enable Mac OS 10.6.4 to run an OS Classic compatible scanning program?
    Is this at all possible?
    (I have a scanner that I've used for years, and the software to run it, however, it's Classic OS software, which I've been able to run on OS 10.4. But since upgrading to OS 10.6, I'm not sure I can use it.)
    Cheers.

    Basically, you can't: Intel Macs and Leopard don't support Classic. There is a program called Sheepshaver which is in effect an OS9 emulator: but it's a major hassle to get it working, not least because you have to find a PowerMac ROM image and you may find that difficult.
    You would do better to try to find some compatible scanner software. Try Image Capture (in your Applications folder) for a start - it might recognize the scanner. Otherwise try VueScan.

  • When my Itunes diagnostic's finishes running it says Itunes not running in safe mode. What is that and how do I enable it?

    My Itunes diagnostic's say's that my Itunes is not running in safe mode. What is this and how do I enable it? I have the latest version of Itunes.

    you cannot update this software because you have not owned the major version of this software
    Shouldn't give away the secret of how easy it is.....

  • How do I enable JSR 168 portlet capability on Weblogic?

    How do I enable JSR 168 portlet capability on Weblogic?
    To enable JSR 168 portlet capability on Weblogic:
    1. Open one of the files listed below in a text editor:
    Windows: &lt;drive&gt;:\bea\weblogic81\common\bin\commEnv.cmd
    Unix: /apps/bea/weblgic81/common/bin/commEnv.sh
    2. Modify the file so that file qname.jar appears ahead of the weblogic.jar file in the system classpath. For example:
    CLASSPATH=%WL_HOME%\newscale_drivers\
    qname.jar;%WEBLOGIC_CLASSPATH%;%POINTBASE_CLASSPATH%;%JAVA_HOME%\jre\lib\rt.jar;%WL_HOME%\server\lib\webservices.jar ;%CLASSPATH%
    3. Copy the qname.jar file from &lt;newscale_installed_dir&gt; folder to ${WL_HOME}/newscale_drivers folder.
    For more information about newScale portlets, please see the JSR 168 Portlet Guide.

    Betreffend telnet und RV180:
    Unter dem Menü-Punkt:
    "Administration" - "Management Interface" - "Web Access"
    kann man "Remote Management" auf "enable" setzen
    und weiter unten auch den Punkt "Port" auswählen (Standardmässig HTTPS 443)
    Wofür steht diese "Remote Management" Einstellung, wenn nur HTTPS funktioniert?
    Das Problem ist, dass der RV180 zwar "no-ip.com" ergänzt hat, aber andere Seiten wie die hier beschriebene und weit umfangreichere nicht:
    http://www.blindhog.net/cisco-routers-and-dynamic-dns/
    Die Anleitung würde eine Konfiguration anderer dyndns Seiten zeigen, die per SSH oder Telnet  konfiguriert werden könnten.... 

  • How to get info on whether the server is enabled and/or running,

    I'm posting this for a customer who  has been testing the capabilities of Business Intelligence Platform RESTful Web Service.
    We're currently at 4.1 SP2 Patch09. But it seems that we're not being able to get the information that we need. For example a call to http://myBIserver:6405/biprws/infostore/16/children is giving us information about servers such as name or description but  it is not telling us whether the server is enabled and/or running, what is the process ID etc.. The JSON response for the above request is:
    {"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/16\/children?page=1&pageSize=50"},"first":{"__deferred":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/16\/children?page=1&pageSize=50"}},"next":{"__deferred":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/16\/children?page=2&pageSize=50"}},"last":{"__deferred":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/16\/children?page=2&pageSize=50"}},"entries":[{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1207"},"id":1207,"cuid":"Aeodv.WAuUhDjuLGQvxTyHw","description":"Adaptive Job Server","name":"PHLBOBIT01.AdaptiveJobServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7581"},"id":7581,"cuid":"AZGIF9vdegFFvk5MZNe._qU","description":"Adaptive Processing Server - Analysis","name":"PHLBOBIT01.APS.Analysis","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/4388704"},"id":4388704,"cuid":"AZL..77cHkhBh1gDQowM.fE","description":"","name":"PHLBOBIT01.APS.AnalysisApplication","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7478"},"id":7478,"cuid":"AYctUCKuCVBHn4oSDhQPQb4","description":"Adaptive Processing Server - Auditing","name":"PHLBOBIT01.APS.Auditing","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7477"},"id":7477,"cuid":"AaEMaMZd2AdMhm8z0qkrTnM","description":"Adaptive Processing Server - Core Services","name":"PHLBOBIT01.APS.Core","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7583"},"id":7583,"cuid":"AVp8Kq3mrYNCrWB83j2PEvQ","description":"Adaptive Processing Server - Data Access","name":"PHLBOBIT01.APS.DataAccess","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7580"},"id":7580,"cuid":"AXWBe54kOCpOg_mbxUr8Ivo","description":"Adaptive Processing Server - Lifecycle Management","name":"PHLBOBIT01.APS.LCM","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7479"},"id":7479,"cuid":"Af7OI9uF6O5JtR9n1oSO0wc","description":"Adaptive Processing Server - Search","name":"PHLBOBIT01.APS.Search","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7582"},"id":7582,"cuid":"AW1EMWgpDfFImvzDF.Iqwik","description":"Adaptive Processing Server - Web Intelligence","name":"PHLBOBIT01.APS.WebI","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/791"},"id":791,"cuid":"AST6mA7FF.VDvrKpYQACO.E","description":"Central Management Server","name":"PHLBOBIT01.CentralManagementServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/3917458"},"id":3917458,"cuid":"Aeo5YKWfzgVKo5DwN4NaG9A","description":"Connection Server","name":"PHLBOBIT01.ConnectionServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/3917459"},"id":3917459,"cuid":"AZ3w6cEAUWlEiB5j6mB0CWw","description":"Connection Server (32-bit)","name":"PHLBOBIT01.ConnectionServer32","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1178"},"id":1178,"cuid":"AaMjzl.x749MhIyS.DEXoY0","description":"Crystal Reports 2013 Processing Server","name":"PHLBOBIT01.CrystalReports2013ProcessingServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1247"},"id":1247,"cuid":"AYWI6VC.J8BBvFqSj2JMyyY","description":"Crystal Reports 2013 Report Application Server","name":"PHLBOBIT01.CrystalReports2013ReportApplicationServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1172"},"id":1172,"cuid":"AZL.2iX_DXZAspTawsvOhH0","description":"Crystal Reports Cache Server","name":"PHLBOBIT01.CrystalReportsCacheServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1281"},"id":1281,"cuid":"AbWBEFGNJGxCjNK1DY2b2yM","description":"Crystal Reports Processing Server","name":"PHLBOBIT01.CrystalReportsProcessingServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1228"},"id":1228,"cuid":"AVDRV00HfORMkMkl55KMo7c","description":"Dashboards Cache Server","name":"PHLBOBIT01.DashboardsCacheServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1264"},"id":1264,"cuid":"ATJuZregTz1Ck3YJY1eMmW4","description":"Dashboards Processing Server","name":"PHLBOBIT01.DashboardsProcessingServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1184"},"id":1184,"cuid":"ASOm.SrtU7pInQBRZiUewdQ","description":"Event Server","name":"PHLBOBIT01.EventServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7277"},"id":7277,"cuid":"AZDQYV3Q7f5EkTWnc6bSlw0","description":"Explorer Exploration Server","name":"PHLBOBIT01.ExplorerExplorationServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7263"},"id":7263,"cuid":"AatQWEVsQdtHj1u2_SidyKM","description":"Explorer Indexing Server","name":"PHLBOBIT01.ExplorerIndexingServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7284"},"id":7284,"cuid":"Ab11DBefLJRIuEfZJ5XQ7Wk","description":"Explorer Master Server","name":"PHLBOBIT01.ExplorerMasterServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7270"},"id":7270,"cuid":"AWSPc8Mmv3dDvDBYVSxiiq4","description":"Explorer Search Server","name":"PHLBOBIT01.ExplorerSearchServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1212"},"id":1212,"cuid":"AdePU2NkVzVGkCHc.je2P5k","description":"Input File Repository Server","name":"PHLBOBIT01.InputFileRepository","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1275"},"id":1275,"cuid":"Acxi23qKCy1FiGBoFzBXEtc","description":"Output File Repository Server","name":"PHLBOBIT01.OutputFileRepository","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/1258"},"id":1258,"cuid":"AS4fT9dzIuBBv6nFMbdaisA","description":"Web Application Container Server","name":"PHLBOBIT01.WebApplicationContainerServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/5090617"},"id":5090617,"cuid":"AW5jSqL.F1hOtiwZpk5CAZs","description":"","name":"PHLBOBIT01.WebIntelligenceProcessingServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6541"},"id":6541,"cuid":"AXn6vPIEispHjYAf5tuaEF8","description":"Adaptive Job Server","name":"PHLBOBIT02.AdaptiveJobServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7588"},"id":7588,"cuid":"AQgPfs_1WhlKvTQl0w1NT2k","description":"Adaptive Processing Server - Analysis","name":"PHLBOBIT02.APS.Analysis","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/4388705"},"id":4388705,"cuid":"ARtodu06Xj5FizlyqZMoV6A","description":"","name":"PHLBOBIT02.APS.AnalysisApplication","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7585"},"id":7585,"cuid":"AT4mRrAirvFPv.LhQkzqN5Q","description":"Adaptive Processing Server - Auditing","name":"PHLBOBIT02.APS.Auditing","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7584"},"id":7584,"cuid":"AdEGqTBYhm5AsYlC1wNGxaQ","description":"Adaptive Processing Server - Core Services","name":"PHLBOBIT02.APS.Core","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7590"},"id":7590,"cuid":"AUrLQ_szs9VMmU84qLOHmfw","description":"Adaptive Processing Server - Data Access","name":"PHLBOBIT02.APS.DataAccess","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7587"},"id":7587,"cuid":"ASUVQFFRAKRFvfQWfJsoIJA","description":"Adaptive Processing Server - Lifecycle Management","name":"PHLBOBIT02.APS.LCM","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7586"},"id":7586,"cuid":"ARcHLmjTRyhMjWn.y_onJxI","description":"Adaptive Processing Server - Search","name":"PHLBOBIT02.APS.Search","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/7589"},"id":7589,"cuid":"AY1s2.BeMbxEsF05cYPCLpc","description":"Adaptive Processing Server - Web Intelligence","name":"PHLBOBIT02.APS.WebI","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6301"},"id":6301,"cuid":"AU7SRyRyd1hKgH3TbRF5EYM","description":"Central Management Server","name":"PHLBOBIT02.CentralManagementServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6568"},"id":6568,"cuid":"AYhb6lnbKJFKn4WVnoFVnt4","description":"Connection Server","name":"PHLBOBIT02.ConnectionServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6574"},"id":6574,"cuid":"ARKezeTmhh5Iu4F.7.fvByk","description":"Connection Server (32-bit)","name":"PHLBOBIT02.ConnectionServer32","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6512"},"id":6512,"cuid":"Abv17tsXCStKpnJw7jeTguY","description":"Crystal Reports 2013 Processing Server","name":"PHLBOBIT02.CrystalReports2013ProcessingServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6581"},"id":6581,"cuid":"AWwWhkIpwc9CoAybOLeQtog","description":"Crystal Reports 2013 Report Application Server","name":"PHLBOBIT02.CrystalReports2013ReportApplicationServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6506"},"id":6506,"cuid":"AQIjnkiIYvROsApDkY24S7Y","description":"Crystal Reports Cache Server","name":"PHLBOBIT02.CrystalReportsCacheServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6615"},"id":6615,"cuid":"Ac70E5GxHX9GhnO335_zkpw","description":"Crystal Reports Processing Server","name":"PHLBOBIT02.CrystalReportsProcessingServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6562"},"id":6562,"cuid":"ATD9BYLbU2xGgL0dQc.HwEY","description":"Dashboards Cache Server","name":"PHLBOBIT02.DashboardsCacheServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6598"},"id":6598,"cuid":"Ab1VZJehgWFEkCl0f3EqJNY","description":"Dashboards Processing Server","name":"PHLBOBIT02.DashboardsProcessingServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/6518"},"id":6518,"cuid":"AXpYgpIDDtlLnNzkprKrIK4","description":"Event Server","name":"PHLBOBIT02.EventServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/9033"},"id":9033,"cuid":"AUGWvt8N6gREukWGWmmxvHE","description":"Explorer Exploration Server","name":"PHLBOBIT02.ExplorerExplorationServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/9019"},"id":9019,"cuid":"AQePEipM3nhPsArG5mVbpR0","description":"Explorer Indexing Server","name":"PHLBOBIT02.ExplorerIndexingServer","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/5108034"},"id":5108034,"cuid":"ARZ7obbOLYdIpPx431uK2nI","description":"Explorer Master Server","name":"PHLBOBIT02.ExplorerMasterServer2","type":"Server"},{"__metadata":{"uri":"http:\/\/phlbobit01:6405\/biprws\/infostore\/9026"},"id":9026,"cuid":"AZHGDhiY7MpCsMMUqSf3AMs","description":"Explorer Search Server","name":"PHLBOBIT02.ExplorerSearchServer","type":"Server"}]}

    Hi Tom,
    As Anthony pointed out, currently it is not possible to get server details like the server state, PID etc. through BIP REST calls. Only prelimnary information about the infostore object is returned. You would need to use the BIP JAVA SDK to retrieve server details. However, we are in the process of enhancing BIP REST SDK. Can you please raise this on idea place under BIP>>SDK category?
    Regards
    Sumitesh Ranjan Srivastava
    Product Manager, BI SDK & OEMs
    SAP Labs India

  • How to run Applet programe in IE

    I' am beginner in java & i want to run applet in IE.But when i tried to do it in IE,"page can not displayed" error is shown.
    why this is so?
    which steps to follow?

    which JVM is used by IE? The 1.1.8JVM from IE is very old so you should use a Java2 JVM or a Swing-Plugin for IE

  • CHUD enabler Leopard - How can I get it to run automatically?

    Hello everyone.
    My question is whether I can get CHUD Enabler leopard to run automatically at startup under 10.5.8. Using login items, I have set it to open automatically, but it doesn't actually run as it does under 10.4.11 (script appears at desktop, but I have to hit the "run" button). Thanks.

    Save it as an application, turning off the option to show the startup screen.
    (69490)

  • Best IDE and how-to create HTML for a swing Applet

    Can you help me out? I've been using, and teaching with the old Symantec VisualCafe product from long, long, ago. It still works fine & I can even use it to build JFC/Swing Applets etc. But a few things have occurred. For one, a way back, Symantec sold VisualCafe to WEBGAIN - who now has gone out of business and sold it to a company called TOGETHERSOFT - who doesn't support it any longer.
    This isn't really a big deal to me, because I can still build and deploy applets that are pre-swing easily enough. (as can my students)
    HOWEVER... I'd like to be running with the LATEST Java (I think it's 1.4.01) and I'd LIKE to use whatever is the best development environment I can use - especially one I can recommend to my students. Do you know what that should be?
    What's more, I'd still like to take some JFC/Swing created applets (even if compiled with the older VisualCafe IDE) and generate the HTML to allow 1.4 enabled browsers to run them (this is the case for the schools versions of Explorer and Netscape). Now, the HTML I have INSTALLED for the students used the HTML converter - back in 1.2 to produce the HTML at the bottom of this. This code no longer works now with current browsers. Do you know HOW one makes a jfc/swing compiled applet run on the latest browsers?
    Any help or direction you can give would be appreciated.
    thanks,
    Bobby Berns
    [email protected]
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    WIDTH = 756 HEIGHT = 396 codebase="http://java.sun.com/products/plugin/1.2/jinstall-12-win32.cab#Version=1,2,0,0">
    <PARAM NAME = CODE VALUE = "lottery.class" >
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.2">
    <COMMENT>
    <EMBED type="application/x-java-applet;version=1.2" java_CODE = "lottery.class" WIDTH = 756 HEIGHT = 396 pluginspage="http://java.sun.com/products/plugin/1.2/plugin-install.html"><NOEMBED></COMMENT>
    </NOEMBED></EMBED>
    </OBJECT>
    <!--
    <APPLET CODE = "lottery.class" WIDTH = 756 HEIGHT = 396 >
    </APPLET>
    -->
    <!--"END_CONVERTED_APPLET"-->

    Bobby,
    It's been a while since I've used the HTML Converter, but if I had to guess I'd say you need a newer version than what you have. Also, doesn't the converter allow you to choose which JDK you want to use (in which case you could select 1.4)? Again it's been a while so bear with me. Another option would be to put all the Swing classes into a .jar file (typically called swingall.jar) on your server and include that file as an attribute in your applet tag like this:
    <APPLET CODE="yourApplet.class" ARCHIVE="swingall.jar">
    This way you don't have to use the Java Plug-in, however the initial download time of the .jar file can be significant.
    As for an IDE, I've always been happy using a text editor like UltraEdit. However, I've heard good things about Forte, and hey, it's free!
    Regarding Christina's post, that solution will only work if the Applet does not use Swing components (and Bobby specifically said it does). By using the <OBJECT> and <EMBED> tags, rather than the <APPLET> tag, you force the browser to use the Java Plug-in (rather than the browser's default JVM).
    Hope that helps,
    - Sheepy

  • How to schedule the job to run evry Sunday at 12 P.M IST.

    Hi Experts,
    I want to schedule a job which will run evry Sunday at 12 P.M IST.
    I have written the below script.
    [code]BEGIN
      SYS.DBMS_SCHEDULER.CREATE_JOB
           job_name        => 'SERVICE_SAL_FS.SAL_MESSAGE_BUFFER_PURGE_JOB'
          ,start_date      =>  SYSTIMESTAMP
          ,repeat_interval => 'FREQ=WEEKLY; BYDAY=SUN; BYHOUR=12;BYMINUTE=0; BYSECOND=0;'
          ,end_date        =>  NULL
          ,job_class       => 'DEFAULT_JOB_CLASS'
          ,job_type        => 'STORED_PROCEDURE'
          ,job_action      => 'SERVICE_SAL_FS.SAL_MESSAGE_BUFFER_PURGE_PROC'
          ,comments        => 'Run at 12 P.M.IST every Sunday'
          ,enabled            => TRUE
    END;[/code]
    But the server in US.
    [code]SELECT sysdate from Dual;
    6/11/2013 3:58:58 AM
    --But the time in India is 02:28 PM [/code]
    How to convert the timezone to IST.
    Please help me how to schedule the job to run evry Sunday at 12 P.M IST.
    Thanks.

    Did you read DBMS_SCHEDULER docs:
      The calendaring syntax does not allow you to specify a time zone. Instead the Scheduler retrieves the time zone from the start_date argument. If jobs must follow daylight savings adjustments you must make sure that you specify a region name for the time zone of the start_date. For example specifying the start_date time zone as 'US/Eastern' in New York will make sure that daylight saving adjustments are automatically applied. If instead the time zone of the start_date is set to an absolute offset, such as '-5:00', daylight savings adjustments are not followed and your job execution will be off by an hour half of the year.
      When start_date is NULL, the Scheduler will determine the time zone for the repeat interval as follows: 
    It will check whether the session time zone is a region name. The session time zone can be set by either:
    Issuing an ALTER SESSION statement, for example:
    SQL> ALTER SESSION SET time_zone = 'Asia/Shanghai'; 
      Setting the ORA_SDTZ environment variable.
      If the session time zone is an absolute offset instead of a region name, the Scheduler will use the value of the DEFAULT_TIMEZONE Scheduler attribute. For more information, see the SET_SCHEDULER_ATTRIBUTE Procedure.
      If the DEFAULT_TIMEZONE attribute is NULL, the Scheduler will use the time zone of systimestamp when the job or window is enabled.
    SY.

  • How can I enable SuperFetch?

    Hi,
    I downloaded Java from Java.com (free download) to be able to open a file I received as email attachment. After the download something happened to my laptop pc (Windows 7). I received pop up messages that said something like "Your computer got infected
    you need to install Windows Defender 2015. And they started to pop up almost every second and also the screen view changed. It got upside down or windows messages moved and seemed to be multiplied, very unusual things kept going...
    I stopped it and went online on my tablet pc and looked for what to do if my computer got infected with virus (because that's what I thought happened). From what I read online I made sure that all Microsoft windows experts were all recommending to start
    my pc in safe mode and I found some instructions such as going to Task Manager and ending processes and also to clear some files and folders in Registry Editor. I wasn't able to clear files and folder in Registry Editor. To make short, I came to the conclusion
    that I needed live help from a Microsoft expert. I chatted online with some MS Support Desk techs and followed their instructions but it didn't help at all. When I click on the little flag icon with a red cross sign on it(the one that says Open Action Center)
    it says 1 important message-Turn on Windows Security Center service(Important) I tried to turn it on (I don't know how many times!) but I get the message "The Windows Security Center can't be started"
    I went to Troubleshooting and clicked on Check of Performance issues (under System and Security) it did checking and I got the message "Problems Found- SuperFetch is not running. Not Fixed. 
    My question is: HOW CAN I GET SuperFetch running? or How can I enable SuperFetch?
    Thank you.
    Elif YILDIRIM

    Hi Temur, ok. I do the above procedure and it worked fine
    Now, I have other question?
    How can I reproduce any file (for example: a video, an url page, an image), that is in the flash of DMP?
    Índice de ftp://172.17.15.22/tmp/ftproot/tmp/ftproot/tmp/ftproot/usb_1/
    Subir al directorio superior.
    Nombre Tamaño Última modificación
    Sample Videos.lnk
    1 KB
    17/06/2011
    06:25:00 a.m.
    deployment
    29/06/2010
    04:14:00 a.m.
    lost+found
    25/02/2010
    12:00:00 a.m.
    video futbol en la playa.mp4
    1390 KB
    29/06/2010
    01:08:00 a.m.
    videofutbol.mp4
    1390 KB
    29/06/2010
    01:38:00 a.m.
    I like, that el DMP when loss conectivity with DMM, It display at the LCD screen, the video named videofutbol.mp4, this video As I show in the picture above, already in the flash of DMP.
    I appreciate your early response.
    Thanks

  • How do I enable ACL on an external unit in Mavericks?

    I have an external hard disk via FW 800 on a Mac Mini Server running Mavericks. I can not enter any settings in the ACL because every time I get an error message saying that I can not enter anything in the ACL because the ACL is not enabled on the unit.
    How do I enable ACL on an external drive in Mavericks?
    Regards
    Jonas Möller Nielsen

    The problem is solved.

Maybe you are looking for

  • Is it possible to chroma key a moving laptop/phone screen in Motion 5?

    Hi, I recently downloaded Motion 5, and I've been experimenting with it. What I'd like to know is if it's possible to chroma key the screen of a phone (the screen will be green.) I've managed to chroma key out the green, and it works perfectly, excep

  • Installing Flash trial on Windows Vista

    Hi, I want to try out Flash and have downloaded the free 30 day trial onto my PC (Windows Vista). There were no errors when I downloaded and then the files were extracted but when I click on the icon on my screen it just gives me a list of files, non

  • How to get the read input file name in bpel process using File Adapter.

    Hi, I am reading a .txt file from configured directory using File Adapter. I had configured file adapter to read file with naming pattern "SalesOrder.*\.txt". Now I had requirement to access the actual file name in bpel process eg: "SalesOrder123.txt

  • How to create a Video Podcast?

    Hi, I have a question about how to create a Video Podcast. What I like to do is record what I can see ON my screen. And I don't want to use a Video Cam to make Videos of it. If anyone knows how to to that or if there is an application I could use it

  • Variable selection issue can we use variable exit for the below problem

    Hi experts, i have query in which i have an infoobject which is a characterstic i have even set the sort property for that infoobject but when the variable screen comes up and when we go into the selection screen all the help values are not sorted in