Changing Application Availability_Status in runtime environment

I have a monthly process where team leaders review and approve some data.
I want to have the Apex Application (F200) with an Application Status of 'Unavailable' except during the brief period (three days) that the data is published for action.
I am considering use of the Application Availability_Status but I don't want to have to involve a DBA or Apex Developer into the process each month.
I have a second Application (F100) in this schema with access limited to the group responsiblefor the process. I would like to add a page where they can control availability of Application F200.
Is there a procedure that will toggle the application between Available and Unavailable? Any other thoughts?
Oracle 10g, Apex 3.2
--Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Thank you Iloon,
I was hopeful that the Apex Availability_Status would be available from within the Application to use for this purpose.
After searching the Web I could not find any information on the idea.
Seems silly to have to build/maintain an independent Authorization scheme when Apex has one. But then, if Oracle does not provide an API hook to use the feature, it would be best not to back-door the APEX_030xxx Schema and abuse it!
-Rob

Similar Messages

  • Is it possible to change Application Module at runtime?

    Hi all!
    I'm trying to change Application Module for my page at runtime. I've used such code:
      public void processRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processRequest(pageContext, webBean);
        OAWebBeanContainer webBeanContainer = (OAWebBeanContainer) webBean;
        webBeanContainer.setApplicationModuleDefinitionName("mypackage.MyAM");       
        webBeanContainer.setApplicationModuleUsageName("MyAM");
      }but I see that Application Module haven't been changed.
      public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
        super.processFormRequest(pageContext, webBean);
       System.out.println(pageContext.getApplicationModule(webBean).getFullName());
       System.out.println(pageContext.getApplicationModule(webBean).getDefFullName());   Is it possible to change Application Module at runtime?
    How can I do it properly?
    Pavel

    The AppModule for a page is configured in an attribute of the root element of that page. Maybe that attribute is available at the OAWebBean parameter in processRequest.

  • Change application parameter during runtime

    Hello,
    I have a WD application that expects a parameter: system_name.
    The parameter is defined in the application parameter field and is correctly interpreted by the handledefault function of the startup event default.
    The handledefault event handle sets a context parameter mdm_system_name to the value of this input parameter.
    On the other side,
    I have an input field, where the context parameter mdm_system_name can be changed by the user.
    I would like to change the application parameter value in the URL , whenever the input field value has changed.
    Do you know whether this is possible?
    kind regards,
          Sahla

    Yes,you can.Just assign the new source to the source property of swfloader.

  • Can i change application schema at runtime?

    I created a workspace with 3 schema (for instance three different customers).
    Just one application (starting with one of this three schema).
    I'd like to know if it is possible to choose (by code) at runtime the schema to associate to the application.
    thank you in advance to all.
    Francesco Galante

    Hi Seek78 !
    "Otherwise you can create 3 different home page in 3 different apps, that call directly the 4 "Main" app where the business logic in. Typically 1 app per schema."
    Let's say we have 2 applications : 100 et 101. I consider 101 is the main application.
    - 100 runs with schema SA, login page calls the 101 application page 1 after a successful logon
    - and 101 with schema SB, contains the business logic.
    When I login to application 100, schema SA, if login is successful then I get to application 101. But data displayed is the one of schema SB.
    This solution doesn't seem to work. Otherwise please indicate how I should implement the inheritance of the SA schema.
    As for the "ALTER SESSION", I tried it in the login process of my login page, writing it in an anonymous bloc. But I get the error ORA-06550. Here is the code :
    BEGIN
    wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':1'
    ALTER SESSION SET CURRENT_SCHEMA [MYSCHEMA];
    END;
    As APEX doesn't open a new database session when login a new user, where can we code this ALTER SESSION ?
    Thanks for your help,
    Fred.

  • Deploying an Application to a APEX 3.1.1 Runtime Environment

    Hello Everyone,
    I'm trying to work out how to deploy an application from a development to runtime environment but am facing a few issues / uncertainty and would appreciate any input/help on this. To begin with here is my environment:
    - Apex 3.1.1
    - Two Oracle 9i (9.2.0.8) instances running on different hosts (development environment on host AA and runtime environment on host BB)
    - Using the Oracle 9i HTTP Server with mod_plsql (on both hosts)
    - DEVLWS workspace +(on development env)+
    - DEVSCHEMA schema +(on development env)+
    - USER01 - non-developer & non-admin user +(on development env)+
    - DEV01 - developer and admin user +(on development env)+
    I'm performing this test deployment with the downloaded application Timesheets from apex.oracle.com with the application ID of 111 (when imported into my development environment).
    Situation:_
    I have no issues on the development environment. I can import the Timesheet app into it and run it using either the USER01 or DEV01 ID as it was imported into the DEVSCHEMA schema. However, when I try to deploy over to my runtime environment, here is where things gets sketchy on this.
    1) In order to get this application (Timesheets) to run properly on my runtime environment, I've to perform a Oracle9i EXP of my DEVSCHEMA objects and import this into my runtime environment using the IMP utility to get the proper workspace and associated objects over,
    --> I tried exporting the workspace on the development env but even after running it on the runtime env, I was not able to get the application to run (missing workspace schema, users etc).
    2) From my development environment, I export the Timesheet app with supporting objects option and on the runtime environment, I use SQL*Plus as such:
    SQL> alter session set current_schema=FLOWS_030100;
    SQL> @f111.sql
    Once the script completes, I use the http://hostBB:7776/pls/apex/f?p=111.1 url and was able to get in to the application, however I found things like the images are missing and I've to manually export these again from the development env and run the generated SQL script file on my runtime env.
    Is there a better (and documented step by step) way of doing this kind of deployment? The Apex User Guides talks about creating a packaged application but I didn't see this as a way to deploy specifically into a runtime environment as I followed it and still had missing images. When I did the export of the Timesheet application, I used the DEV01 id and made sure I selected the 'with supporting objects' option but yet I've to do most of the steps manually (i.e. build the schema, tablespace, application tables via exp/imp) and again the images were not included.
    Is there a document / note available that discusses this in better detail (deploy from Development env to Runtime env) so that I can do cut down the manual steps and making sure that my developers can effectively deploy our apps with minimal fuss and headaches? Appreciate any input.

    ...I've to perform a Oracle9i EXP of my DEVSCHEMA objects and import this into my runtime environment using the IMP utility to get the proper workspace and associated objects over,...
    EXP/IMP will not do workspaces. You can use the Application Express apex_admin application to export a workspace to a file. Then, in a runtime environment, you can install that workspace file using SQL*Plus. This way of
    creating the workspace also ensures that it will have the same workspace ID as it did in the original database, making possible the installation of exported applications from application export files from the original
    workspace into the new workspace having the same workspace ID and also where the installed applications are to have their original application IDs.
    ... and still had missing images. When I did the export of the Timesheet application, I used the DEV01 id and made sure I selected the 'with supporting objects' option but yet I've to do most of the steps manually (i.e. build the schema, tablespace, application tables via exp/imp) and again the images were not included.
    Images aren't part of application exports. Exporting the images to a file and then installing them using that file and SQL*Plus is the way to do it.
    As Patrick mentioned, running the application export file in SQL*Plus doesn't run the supporting objects script. It creates the script in the datbase. But in a runtime environment you can't run the script because the runtime environment lacks the Application Builder.
    SQL> alter session set current_schema=FLOWS_030100;
    SQL> @f111.sql
    You can install applications by connecting as a less privileged schema. Any schema assigned to the workspace into which the application is to be installed will do. To install workspace export files (or applications), you can also use a schema that has been granted the role APEX_ADMINISTRATOR_ROLE.
    Scott

  • Application Runtime Environment installation issue

    Hi,
    JDeveloper 11.1.1.3.0
    OS: Solaris SPARC
    I am trying to install the application runtime environment and I am getting the below error. Please advice me on how to resolve this issue.
    JAVA Version in Solaris SPARC :
    weblogic@comm1 ~/Installs $ java -version
    java version "1.5.0_24"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_24-b02)
    Java HotSpot(TM) Server VM (build 1.5.0_24-b02, mixed mode)
    Error:
    weblogic@comm1 ~/Installs $ cd Disk112/
    weblogic@comm1 ~/Installs/Disk112 $ cd Disk1/
    weblogic@comm1 ~/Installs/Disk112/Disk1 $ ./runInstaller
    ./runInstaller: /apps/wls/Installs/Disk112/Disk1/install/solaris/runInstaller: cannot execute
    ./runInstaller: syntax error at line 299: `count1=$' unexpected
    Thanks,
    Rajesh

    Hi,
    I have installed the jdk 64bit version and tried the application runtime environment installation but I am still getting the same old error. Here it is..
    weblogic@dwlsalescomm1-c2 ~/Installs/Disk112/Disk1 $ ./runInstaller -jreLoc /apps/wls/WL10/jdk1.6.0_21/
    ./runInstaller: /apps/wls/Installs/Disk112/Disk1/install/solaris/runInstaller: cannot execute
    ./runInstaller: syntax error at line 299: `count1=$' unexpected
    JDK Version:
    WL10/jdk1.6.0_21/bin $ ./java -d64 -version
    java version "1.6.0_21"
    Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 17.0-b16, mixed mode)
    Please advice me on how to resolve this installation issue.
    Thanks,
    Rajesh
    Edited by: Rajesh on Mar 15, 2011 8:28 AM

  • Removing Java 2 Runtime Environment, SE v1.4.2_04

    I'm having problems removing this from my pc. I tried using the Add/Remove Programs and get an error message. Basically it ells me that "The file 'C:\Documents and Settings\Administrator\Local Settings\Application Data\etc.......... is not a valid installation package for the product Java 2 Runtime Environment SE v1.4.2_04 etc.......... etc........
    However when I do a browse to that location I do see the .msi package it is looking for. I tried to reinstall the package but cannot because it tells me I already have a version installed. How can I remove this? I'm willing to go as far as doing it manually. Thanks.
    Allen

    The security enhancements are documented at http://java.sun.com/j2se/1.5.0/ReleaseNotes.html#150_06
    Changes in 1.5.0_06
    Prior to this update [1.5.0_06], an applet or [Java Web Start] application could specify the version of the JRE on which it would run. This has changed. All applets are executed with the latest JRE version. Unsigned Java Web Start applications that specify a version other than the latest trigger a warning, requiring explicit user permission before the application will run. Signed Java Web start applications are not affected.
    In other words, only Applets and unsigned Java Web Start applications are affected by the security enhancements. Standalone applications can select any JRE they want, even if it is the outdated 1.4.2_13.

  • Keep getting an error message that I need to download Java Runtime Environment

    I have a one year old iMac and just downloaded OS 10.10 (Yosemite).  Since doing this 2 weeks ago, I keep getting the same error message telling me that I need to download Java Runtime Environment in order for the webpage to run properly.  I have downloaded, installed and checked the installation 3x already.  The message goes away for a day or two and then returns.
    Any idea on what I have not done correctly or need to do further?
    Thanks for your he

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off by the complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can act on it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*genieo\* \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB ' com.adobe.fpsaud com.apple.AirPortBaseStationAgent com.apple.installer.osmessagetracing ' ' 1274181950 464843899 1233118628 ' 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' s/[0-9A-Za-z._]+@[0-9A-Za-z.]+\.[0-9A-Za-z]{2,4}/EMAIL/g;/\/Shared/!s/(\/Users\/)[^ /]+/\1USER/g;s/[-0-9A-Fa-f]{22,}/UUID/g;' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { split("'"${p[41]}"'",b);for(i in b) print b[i];if(n<10) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { split("'"${p[41]}"'",b);for(i in b) print b[i]".plist";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { split("'"${p[41]}"'",b);split("'"${p[42]}"'",c);for(i in b) print b[i]".plist\t"c[i];if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p);if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' s/^ ?n...://p;s/^ ?p...:/-'$'\t''/p;' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" ' BEGIN{FS="= "} /Path/{print $2} ' ' /^ *$/d;s/^ */   /;' '/\./p' '/\.appex\/Contents\/Info\.plist$/p' );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test osascript\ -e );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' "'tell app \"System Events\" to get properties of login items'|tr , \\\n" 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|corru|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:|suhel| VALI|ver-r|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cght] ! -name .?\* ! -name \*ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '/S*/*/Ca*/*xpc* >&- ||echo No' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,Ex}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,In{p,ter},iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,mach_i*/*,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t {/S*/,/,}L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" 'L*/P*/com.ap*.p*.ext*.*.*t -exec '"${c1[14]}"' :displayOrder" {} \;' );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents XPC\ cache Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors appexes );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0() { [[ "$v" ]]&&sed -E "$s"<<<"$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v"|sed -E "$s";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "${s[63]}"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;B3 4 0 65;A3 14 6 32 0;B4 0 16 11;A1 4 50 64;B7 16;C3 52;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D23 14 1 62 42;D12 34 43 53 44;D12 22 20 32 25;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 37 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Runtime environment for the production apex instance

    My first goal is to export a full application from a full development environment to a runtime environment.
    The two environments are on dedicated servers.
    From Oracle Application Express documentation and Oracle Application Express Forum, I realized that to install an exported application into a runtime installation, you must:
    1) Export the workspace from the Application Express instance where the application was developed. The export file created contains information about the workspace, all the users in the workspace, and any groups in the workspace (if applicable).
    2) Use SQL*Plus to import your workspace in to the runtime environment.
    3) Export and then import your application (with Supporting Objects) using SQLPlus in to the runtime environment. The related files
    This means that to be able to import an application via SQL*Plus from a development environment to a runtime environment, the workspace must exist (with the identical workspace ID) in the runtime environment. And the best way to ensure that the workspace IDs are the same is to export the workspace from the development apex instance and import it into the runtime apex instance.
    Also, you can't change the application ID through SQL*Plus - so if you're importing the application via SQL*Plus, either a) that application ID can't exist, or b) if it does exist, it will be overwritten by the import (of course, in case b we don't export/import also supporting objects).
    I know that there are some tricks, like editing the application export file just to import into a workspace with a different ID in the production runtime environment. But i wuold like to be official supported ;)
    So in my case i think i could, for the first export/import:
    1) Convert the production apex instance from runtime environment into a full development environment.
    2) Export the workspace from the development instance using the apex administration services (in a text file).
    3) Import the exported workspace into the production instance using the text file created and SQLPlus connect as APEX_030200.
    FOR THE NEXT POINT 4 I ASSUME THAT EXPORTING/IMPORTING A WORKSPACE DOES NOT INCLUDE THE SCHEMAS ASSOCIATED WITH THE WORKSPACE.
    4)
    a1) Create a new schema for the supporting objects of applications in the production instance with a DBA tool.
    a2) Assign the schema created in the production instance to the workspace imported from the development instance, using the apex administration services.
    or, if you want apex creating the schema for the supporting objects of applications:
    4)
    b1) Create a new workspace (with a new schema) in the production instance using the apex administration services.
    b2) Delete the workspace created in the production instance: the schema will not be removed.
    b3) Assign the schema created to the workspace imported from the development instance.
    5) Delete the users and eventually the groups in the imported workspace in the production instance, using the apex administration services.
    6) Change the name of the imported workspace in the production instance, using the apex administration services.
    7) Convert the production apex instance from full development environment to runtime environment.
    8) Export the application (with supporting objects) from development instance, using the export page.
    9) Import the application (with supporting objects) to the production instance using SQLPlus connect as APEX_030200.
    10) Export all associated files (related files) of the application (CSS, Images, Themes, ...) from developmente instance, using the tabs located at the top of the export page.
    11) Import the related files to the production instance using SQLPlus connect as APEX_030200.
    So, for next the next releases of the application i can again export the full application:
    1) Export the application (without supporting objects) from development instance, using the export page.
    2) Import the application (without supporting objects) to the production instance using SQLPlus connect as APEX_030200.
    3) Export all updated associated files (related files) of the application (CSS, Images, Themes, ...) from developmente instance, using the tabs located at the top of the export page.
    4) Import the exported related files to the production instance using SQLPlus connect as APEX_030200.
    or i can export and import single pages of the application.
    Excuse me for the long introduction, but the question is:
    what i have written is correct? Please let me know also your advice.
    Thanks a lot.
    Silvio

    HI,
    Thanks for responding.
    Should the APEX_ADMIN be available in a runtime environment?
    If so, we have missed a step in our installation.
    Keisha

  • Problems caused by J2 Runtime Environment, v1.5.0_02-b09

    I installed Java 2 Runtime Environment, v1.5.0_02-b09 on Windows XP (Dell computer purchased 4/05, so XP version is current). After installation:
    Everything on my desktop became tinyicons, fonts, and default sizes of windows.
    -- All fonts in every file or application I opened had changed--not just their size.
    I was able to resize icons and fonts on the desktop, but this did not carry
    over to other files, folders, & applications--e.g. text in Works Calendar
    remained tiny, with no option to resize. Only relevant item on Works Help
    suggested reinstalling Works, but I didn't bother, because of another problem:
    --My Mozilla Firefox bookmarks had been wiped out.
    The installation probably caused more unwanted changes, but I didn't hang around
    to find out; I just ran System Restore to undo the damage. My questions are:
    (1) Has anyone else experienced these problems?
    (2) Does anyone have a solution--meaning an easy way to universally restore fonts
    and object-sizes to their pre-installation values, rather than trying to do it one application at a time?
    (3) Now that I've undone the Java installation by System restore, my computer keeps reminding me that an update--namely Java 2 Runtime Environment, v1.5.0_02-b09--is ready to be installed. Does anyone know a way of getting rid
    of this annoying reminder without installing the update, or do I have to live with it for the rest of my computer's life (assuming nobody has an anwer to question 2 above)?

    (3) Now that I've undone the Java installation by
    n by System restore, my computer keeps reminding me
    that an update--namely Java 2 Runtime Environment,
    v1.5.0_02-b09--is ready to be installed. Does anyone
    know a way of getting rid
    of this annoying reminder without installing the
    update, or do I have to live with it for the rest of
    my computer's life (assuming nobody has an anwer to
    question 2 above)?Open Windows Control Panel | Java Control Panel | Update and uncheck the auto update.

  • Safari 8 error: "...you need to install the Java Runtime Environment"

    Ever since upgrading to Yosemite and Safari 8, I continually get the error "To view this web content, you need to install the Java Runtime Environment" and, although I did do so the first time I got the error, and Java tells me I do have the latest version installed and running, I continue to get this error constantly.
    Is there a way to stop this, or at least find out what content is causing it? I can't put my finger on any particular content that causes the error.

    This procedure is a diagnostic test. It makes no changes to your data.
    Please triple-click anywhere in the line below on this page to select it:
    java -version
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    If the Apple Java runtime is installed and up to date, you should get three lines of output below what you entered, the first of which is this:
    java version "1.6.0_65"
    Is that what you get? You can then quit Terminal.

  • Converting .java to .exe files  to run those without runtime environment

    i want to convert my java code to a windows application file so that when ever i have to take it to some place for description, i would not require to install java run time environment. and can show up the working of the code with the help of it..................

    Converting a Java application into an exe file
    This question is sometimes asked many times on a single day in the comp.lang.java.* newsgroups, and I always end up asking the same question: why do you want to? Most answers fall into one of four categories, and each prompts a different course of action. Most of the time, an exe file isn't actually required.
    Reason 1: Speed
    "Java is interpreted, so I want to make it native and make it faster." Well, very few modern desktop VMs actually spend much time interpreting Java bytecodes these days. Everyone and their dog has a JIT (Just In Time) compiler which will compile your code into native form before running it. Smart VMs will do this only when appropriate (ie if the code is going to be run more than once, or contains loops etc), and may recompile the code on the fly if the conditions change (eg if a subclass is loaded which invalidates some inlining optimisations, or if the code is run very frequently and therefore merits more aggressive optimisations). The bottom line is that for most applications, Java running on a VM is pretty fast these days. It's usually pretty close to the speed of a natively compiled and similar C/C++ application - certainly I've seen changing compiler (or compiler options) for C/C++ make more difference to speed than going between Java running on a VM and natively compiled Java.
    There are some situations where the speed difference is significant. If you're really desperate for that extra bit of performance, try evaluating one of the native compilers listed here with your particular application. Make sure you write some real benchmarks though - vague notions of "feeling faster" may well be down to preconceptions.
    Remember, too, that as new VMs come out, they tend to improve performance. That means that to get the best out of your application if it's running on a VM, the user only needs to download a later VM - no action is needed on your part. If they're using your natively compiled code, you'll probably need to recompile on a later version of the native compiler, if one is available.
    Reason 2: Being able to open an application by double-clicking on it
    If you can ask the user to install a JRE first, executable jar files are the way to go here. They're very simple to set up and use, and it won't cost you any money. See "Jar" in the Java Glossary for further information on how to create an executable jar file.
    Reason 3: Not having to distribute a jar file and the JRE
    Well, in some form or other, your users will need a runtime environment. Some native code compilers even require you to have a JRE installed as well! Chances are you're not going to be able to create a much smaller download, if that's the worry. However, there are other options here which make it easy to install your application. There's Java Web Start which also includes automatic upgrading of your software, but which will impose some restrictions (a bit like an applet, but slightly less restrictive) unless you sign your application. Alternatively, there are quite a few installers available, some of which are free (or free for personal use). See Installer in the Java Glossary for a list of some of them.
    Reason 4: Intellectual property protection
    Java byte-code can be decompiled pretty easily, and even obfuscators can only do so much. Here, native compilers really do make a difference. Obviously they won't make your code totally impossible to understand, but it'll be very difficult to get back to Java sources which could be modified and recompiled. The only further question to ask at this stage is whether the downsides of native compilation (eg it being a less-well-used (and therefore likely to be less solid) platform, being expensive etc) are worth the upside of the added protection. In some cases the answer will be yes, in some cases the answer will be no.
    What next?
    If, after reading through the above, you still want to try a native compiler, you can usually evaluate them before buying them. (Some are free, of course.) There's a list on Marco Schmidt's web-site, along with another view of the pros and cons.
    I go the above article in : http://www.yoda.arachsys.com/java/javaexe.html

  • Deploy Trusted Cert with the deployment  J2SE Runtime Environment 5.0

    I want to deploy J2SE Runtime Environment 5.0 Update 2.msi using active directory. I have tested my deployment and all is good, now I want to know how to deploy a trusted cert with the the deployment of J2SE Runtime Environment 5.0 Update 2.msi. I am using active directory for the deployment. I do not know much about Java or cert, but want my users not to have to grant permission to the only cert we have on ouir web page the first time they hit the page.
    Is there a way to pre-answer the Grant always box for the cert we have. I hope I have asked the question correctly. Thank in advance.

    Hello, I've inserted the following content
    #Thu Sep 15 11:36:07 CEST 2005
    deployment.system.security.trusted.certs=C\:\\temp\\SSL_applet\\client.com
    deployment.system.security.trusted.jssecerts=C\:\\temp\\SSL_applet\\client.com
    deployment.system.security.trusted.cacerts=C\:\\temp\\SSL_applet\\client.com
    deployment.system.security.trusted.jssecacerts=C\:\\temp\\SSL_applet\\client.com
    deployment.system.security.trusted.clientcerts=C\:\\temp\\SSL_applet\\client.com
    to the file:
    C:\Documents and Settings\UserName\Application Data\Sun\Java\Deployment\deployment.config
    When a signed applet is opened I get:
    security: Loading Root CA certificates from C:\PROGRA~1\Java\JRE15~1.0_0\lib\security\cacerts
    security: Loaded Root CA certificates from C:\PROGRA~1\Java\JRE15~1.0_0\lib\security\cacerts
    security: Loading Deployment certificates from C:\temp\SSL_applet\client.com
    java.io.IOException: Keystore was tampered with, or password was incorrect
         at sun.security.provider.JavaKeyStore.engineLoad(Unknown Source)
         at java.security.KeyStore.load(Unknown Source)
         at com.sun.deploy.security.DeploySigningCertStore$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.deploy.security.DeploySigningCertStore.load(Unknown Source)
         at com.sun.deploy.security.DeploySigningCertStore.load(Unknown Source)
         at com.sun.deploy.security.TrustDecider.isAllPermissionGranted(Unknown Source)
         at com.sun.deploy.security.TrustDecider.isAllPermissionGranted(Unknown Source)
         at sun.plugin.security.PluginClassLoader.getPermissions(Unknown Source)
         at java.security.SecureClassLoader.getProtectionDomain(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.access$100(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)All fine and dandy you can specify your own keystore to be used but no where
    to give it a storepass so you can use it.
    Can someone tell me how to use my own keystore for SSL auth, trust and
    signature trust that WILL work.
    Setting the system property in an applet won't auth and or trust SSL:
    System.setProperty("javax.net.ssl.keyStore", "file:/C:/temp/SSL_applet/client.com");
    System.setProperty("javax.net.ssl.keyStorePassword", "storepass");
    System.setProperty("javax.net.ssl.keyStoreType","JKS");
    System.setProperty("javax.net.ssl.trustStore", "file:/C:/temp/SSL_applet/client.com");
    System.setProperty("javax.net.ssl.trustStorePassword", "storepass");
    System.setProperty("javax.net.ssl.trustStoreType","JKS");Ends up with a trace telling me cacerts wil be opened, client.com is never used.
    C:\Documents and Settings\UserName\Application Data\Sun\Java\Deployment\security\trusted.jssecerts
    Googling for the combination of
    site:sun.com "deployment.system.security.trusted.certs" password
    will give me no results. Searching the entire web won't do much either.
    Anyway, assuming the password is changit will end up with an unpleasent
    surprise after installing a new version jre.
    Because SUN actually changed it in 1.5
    Anything short of the programmer loading a keystore when an applet is run
    will not work.
    This is not good enough, is there a way for administrators to use their own
    keystore and give it a password so a jre update won't screw up everything?

  • Change Tuxedo licence on runtime (Tuxedo 9.1)

    Hi,
    Is it possible to change the licence at runtime on Tuxedo 9.1 ?
    Indeed, on a live Tuxedo environment, the licence file (lic.txt) was modified to replace a wrong one (extension from 10 to 20 users) without rebooting Tuxedo on the machine.
    It seems this change is not taken into account by Tuxedo because the error CAT 4747 continues to be generated in the ULOG file.
    Best regards.

    Hi,
    I believe the Tuxedo license file is read at application boot time, so no, you won't be able to change the license on a running system. Please note that in recent versions of Tuxedo no license file is required (although obviously a license is still required!)
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • Managing App Exp Users in Runtime Environment

    How do I change the password of an App Exp user in a runtime environment??
    Since it is a runtime environment I donot have the GUI.
    Also how do I add and delete an App Exp user in the runtime enironment where I donot have the App Exp GUI?
    Thanks for the help...

    When running App Exp in runtime mode there is no admin login and there is no developer login. That's the way App Exp is designed to work. It's starting to sound like no one ever runs App Exp in runtime mode?? I guess my question is when should you be using runtime mode and how do you manage it without the GUI?? If no one uses runtime mode then how do you make sure App Exp is secure? Are App Exp user logins all that is needed and you keep developers seperate from regular end users of the application by setting them up as App Exp developer or App Exp regular user?

Maybe you are looking for

  • Display no longer functions correctly after update

    After updating this morning (the only package updated being wayland), the display on my main computer (laptop still works fine) no longer works properly. It is a bit difficult to describe the problem: there is a constantly changing display of symbols

  • Do Mac Mini installation CDs include iLife?

    I have a 2007 Mac Mini running OS X (10.5.7) Leopard. It has iLife 08, but I don't have an installation CD for iLife 08. I have the OS X (10.5.7) installation CDs, do they include iLife 08? I want to use the CDs to install the OS and iLife 08 onto a

  • Cannot Disable Correct Spelling Automatically

    I cannot disable the Correct Spelling Automatically feature.  Rather, I can, but once I close and reopen the application it will be reenabled.  I first noticed the issue when I upgraded from Trillian 1.2.20 to 1.2.40, but I just tested this in TextEd

  • Speeche to text on iPad 3

    When I chance the keybord to English a microphone icon must appear on the keybord display. It didn't. What could be the reason? Now I can't use the Speeche to text utility. How can I solve this?

  • Crashes since installing Security Update 2009-006

    Since installing 2009-006 this morning my iMac6,1 has crashed twice. The system.log shows:- Nov 11 12:48:12 merlin kernel[0]: NVDA(OpenGL): Channel exception! status = 0xffff info32 = 0x6 = Fifo: Parse Error Nov 11 12:48:12 merlin kernel[0]: 0000000b