It is possible to reuse the obfuscated password from a dads.conf in the apex listener?

Hello there,
Little by little we are moving to the APEX 2 listener, good! But the problem is that every time that somebody ask me for a new set up I have the same problem:
I go to one of our DBAs (nice guys by the way!) and ask, "may I have the password for the APEX_PUBLIC_USER of this DB"?
The password is obfuscated, so the answer is: it needs to be changed => delay in the setup => unhappy users...
I have tried a classic copy and paste, this is take the obfuscated password from the dad and put it in the <entry key="db.password">, but of course it did not work, sigh...
Any thoughts on this?
Thanks in advance,
Luis

If you are using adobe Flex Builder to develop SWF, please be sure using ExternalInterface class to expose the refresh() method.
then you can should be able to call this method in Javascript.

Similar Messages

  • Is the APEX Listener IPV6 Compatible ?

    Hi,
    Is the APEX Listener compatible with IPV6 ?
    Thanks
    Francis.

    Avi Miller wrote:
    user503699 wrote:
    I am trying to find out how the APEX Listener is configured to start when the machine is started. Following are the details of the APEX listener process:It starts from /etc/rc.d/init.d/oracle-xe most likely (if you're running the XE database), as it is configured to startup with the XE listener.Hello Avi,
    Thanks a lot for your help.
    I am not running Oracle XE but the pre-configured "Oracle Developer Days" database vm. However, your suggestion was spot-on and I was able to find the call to start the listener in /etc/rc.d/init.d/oracle.
    p.s. For some reason, I am not able to mark your answer as "Correct" or mark this question as "Answered". Probably something to do with the way moderator has created this thread.
    Edited by: user503699 on Feb 20, 2012 3:27 PM

  • Is it possible to reuse the Scanner instance in this case?

    I have a data file that gets updated by another process, and in my program I periodically read the file, and if there'S new data added I will update my data structure (contained in ArrayLists).
    The issue is for every read I have to re-create a Scanner instance and skips all the lines that have been read. Since the file could get really long, and to skip lines in the file we need still to call scanner.readLine() which might be expensive since it interacts with the hard disk, I'm trying to reuse the Scanner instance and count on the scanner.hasNextLine() to return true if new lines are inserted to the file by the other process:
    while (in.hasNextLine()) {
    String line = in.nextLine();
    // intepret th eline here
    This code is put in a Runnable that is executed periodically, and I was hoping that the next time it is called in.hasNextLine() would return true and we can happily start where we were left off.
    But the bloody method does NOT return true even though new lines have been added to the file. Does anyone know to make it recognize that the file has been updated? Or really there's no other way but to re-open the file and skip old lines as I'm doing now?
    Any suggestion would be highly appreciated!
    P.S: How could I add code tags to highlight my code portion? Thanks!

    808239 wrote:
    I have a data file that gets updated by another process, and in my program I periodically read the file, and if there'S new data added I will update my data structure (contained in ArrayLists).Is there any reason you can't use a Stream instead of a file? Unix has a nice little utility called 'tee' that allows you to write out to a file AND stdout, allowing you to connect other commands via a pipe. I'm sure you could write something similar for Java; however, if this is intended as a daemon process, you'd probably have to make it non-blocking, which might be an issue.
    Alternatively, have you considered using a database instead of a file?
    Winston

  • Is it possible to reuse the map file that was produced to map FrameMaker styles to RoboHelp when creating a PDF in RoboHelp?

    I'm using RoboHelp 11 to produce WebHelp. The documentation was previously written in FrameMaker and posted in PDF format, however it has undergone many releases since those days. I'm now being asked to create the help in PDF and WebHelp. Not really an issue except that the help format does not look particularly good in PDF (not designed for both).
    Ideally I'd like to just use the map file from the original Frame to RoboHelp conversion in reverse (with a little editing)--to convert the RoboHelp styles to the original FrameMaker formats when I create the PDF, however A) there doesn't seem to be an option for that, and B) the original FrameMaker to RoboHelp map file doesn't seem to have been preserved after that conversion.  Is it there and I'm just not seeing it?
    If necessary I can just create another CSS to redefine the styles, but if I don't have to, I rather not.

    I suspect that even if you could find the mapping information (pass as to where) it would simply tell you that Style A in Fm was mapped to Style B in Rh but not give you any information about how Style A was defined in Fm.
    I think your only options are to create a CSS as you suggest or, as I would, create redefine the Word Style Mapping Template to suit. By going to Word first, you can edit the output for better page breaks and other tweaking you might want.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Resetting expired password from JDBC

    Hi All,
    I would like to know if it is possible to change an expired password from a java client that uses JDBC (classes12.zip) "thin client" to connect to oracle database (8.1.7.4).
    Can we capture the "password expired" exception from the client and change the expired password from within the java client.
    The current connect string is --->
    Connection conn;
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    conn = DriverManager.getConnection("jdbc:oracle:thin:@host:port:sid",user,pass);
    Is it possible to do something like this ???
    try {
    conn = DriverManager.getConnection("jdbc:oracle:thin:@host:port:sid",user,pass);
    catch ( SQLException sqle ) {
    if ( sqle.getErrorCode() == 28001 ) // i.e. passwd expired
    //1. ask user to enter the new passwd &
    //2. change it in the database.
    Is there any other way of doing this ??
    Thanks in advance
    Arun

    I haven't tried this, but there some things to think about.
    1) Have you tried to capture the Exception? Is it a problem?
    2) Have you tried to alter a password through JDBC? Is it a problem? To execute other DDL you have to use executeUpdate() I would assum that if you can do this it will also require an executeUpdate().
    Now assuming #1 and #2 are OK
    3) How are you going to change a password when the you cannot connect because the password has expired? Are you going to hard code another non-expired userid/password in the code (bad idea). Are you going to ask the user to enter some type of administrative userid/password that will allow them to change their password?
    Just some thoughts, sorry I cannot help more...

  • How to export the Apex web page to PDF with click of a button?

    How to export the Apex web page to PDF with click of a button?
    Am looking at exporting the Form view on APEX to be exported to PDF.

    In order to get a PDF, you need to generate a Report....in PDF format.
    If you are using the APEX Listener, you can initiate the download of the PDF by calling APEX_UTILS.download_print_document()  (I normally place this in a Process)
    BUT -- You have to create the Report (under Shared Components) and a Template (also under Shared Components).
    The white paper in my first post gives you the HOWTO "[Create] Custom PDF Reports with Oracle Application Express and the APEX Listener".
    Start by creating a Report (in Shared Components, bottom right) that uses a simple SQL statement like:
    Select * from emp where empno = :P15_EMPNO
    You may need to hard code the parameter before you hit "Download XML" button.
    The XML that you get from clicking "Download XML" satisfies the "Step 1 - Create an XML Data Source" found on Page 11 of the document.
    The rest of the instructions is in that whitepaper.
    MK

  • How to change the location of Apex Listener?

    Dear all,
    after I changed the directory of location of Apex Listener, I got
    Internal Errorwhen tried to access Apex.
    How to fix this problem?
    regards,
    Val

    Hello Valerie,
    probably this problem is caused by the file/directory access rights on the apex.home (the place where the APEX Listener stores its configuration). The default location would be ${java.io.tmpdir} which again defaults to */tmp/apex* in most cases. However, this is mostly a global location, not a user specific one. On the other hand, the files are created with write acces limited to the owner and read access limited to owner and group. So if you try to start with a different user, the APEX Listener tries to use the same location, but cannot access the files as needed and hence fails. root obviously will not have this problem, but I would recommend not to use this account for any service you run.
    You can set a start option to make the APEX Listener use a different location for apex.home that is read-/writable for your current user. This could like
    java -Dapex.home=/home/user/apex -jar ./apex.warOf course you can change the directory to any place that fits to your system.
    For more information on start parameters, you could take a look into the APEX Listeners Install and Development Guide.
    -Udo

  • How do you change the port number for Apex Listener V2?

    I'm running Apex listener V2 in standalone mode on Linux.  I want to change the port number of the apex listener V2 (e.g 80 to 8080).  How do I do that without re-installing the whole listener again?
    thanks in advance
    PaulP

    Hi PPlatt,
    You can modify your_listener_home_directory/apex/apex.properties
    http.port=8080
    Stop & restart listener.
    HTH
    Zack

  • The URL from Apex Listener.

    Hi everybody!
    I set up my Apex Listener in a Standalone Mode
    How can I set up my URL with my words such as: http:/localhost:8585/myapplication/f?.......
    replace for the default URL: http:/localhost:8585/apex/f?.......
    I don't know where my DAD is, and how many steps should I do to complete this changes?
    And how about
    http://localhost:8585/apex" or "http://localhost:8585/apex/apex_admin?
    Thanks for any help.

    Hi,
    the APEX Listener has fixed (hard coded) contexts in Standalone Mode, so you can't do that. Either deploy the war file to a regular JEE server where you can choose the context, or put a HTTP (reverse) proxy in front to do the switch for you.
    Note that Standalone Mode is not intended to be used for productive deployments, but for testing and development purposes only.
    -Udo

  • What kind of resource demand does the standalone listener create?

    Hi all -
    I'm wondering what kind of resource load is consumed by the separating the listener off of the database. I guess I was under the impression the listener doesn't really do much at all other than handle the connections and calls to the database. Is it correct in assuming the majority of the resource consumption is still actually on the database or does the listener have a more impacting role?
    The question goes into determining what kind of processing power would be needed for a server that is only hosting the listener. Seeing as there really isn't anything that changes within the environment I'm wondering if it's really necessary to have multiple VM's setup for the sole purpose of hosting the listener. On that same note, is separating the listener onto a separate machine really removing any processing demand from the database?
    Thanks :)

    Hi,
    it seems you mixed up the database listener with APEX Listener. The APEX Listener is not an alternative for the database listener (you'll still need it when using the APEX Listener), but can be an alternative web server for the Embedded PL/SQL Gateway (EPG, using the database's internal XDB HTTP Server) or Oracle HTTP Server (OHS) to host your APEX instance.
    So as ALEX points out, it'll need about as much resources as one of the other web servers would. How much it will be depends on your usage scenario. Again, there is no immediate relation to the database listener.
    -Udo

  • Sychronisation AD - OID: Is it possible to read the user password from AD?

    Hi.
    We are using the Oracle Internet Directory shipped with the Oracle 9i Database Rel. 2 (9.2.0.1).
    I try to synchronise the user accounts from AD to OID using JAVA JNDI. I'm able to read all necessary user information except the user password (MD5 value). Even if I connect to the AD using SSL, it's not possible to read the attribute userPassword.
    Is anybody out there who got this work or knows a way (may also be by the use of another programming language or tool) to get the user password out of AD? Is this possible? How does the Oracle Integration Agents accomplish this?
    Thanks in advance.
    Hermann S.

    Hermann,
    I am working with this as well, though from AS10g, not RDBMS. According to the OID Administrator Guide chapter 43, page 43-52:
    <snip>
    Synchronizing passwords from Microsoft Active Directory to Oracle Internet Directory is not possible in the Oracle Application Server 10g release because passwords in Microsoft Active Directory are not accessible by LDAP clients. However, if a deployment requires passwords to be available in Oracle Internet Directory, then the following two methods are recommended:
    Build a custom plug-in for Microsoft Active Directory that captures a password change and synchronizes it with Oracle Internet Directory
    Manage Active Directory passwords from the Oracle environment. This enables passwords to be available in both Oracle Internet Directory and Microsoft Active Directory because the Active Directory connector can synchronize passwords from Oracle Internet Directory to Microsoft Active Directory.
    </snip>
    As10g can however look up the password in AD using the "Active Directory External Authentication Plug-In". This is documented in the same chapter.
    Hope this helps,
    Jens

  • [SOLVED] is it possible to retrieve the data available in my sync account as i have forgotten some password which my browser is still remembering?

    as i sign up with new websites with new user name and passwords, firefox offers me whether to remember the passwords or not.
    i have selected 'remember password' for so many sites and got my data synchronized with firefox sync. i am having an account and a sync key.
    but the problem is that i have forgotten some of the passwords which are still remembered in fire fox.
    though i am not facing any problem opening those sites as my browser automatically completes the password for me, i am unable to change the password with a new one as i have forgotten the old!
    so is it possible to retrieve the passwords remembered in my browser as well as in my sync account?
    plz do help.
    --regards

    i have sorted this out!
    must have tried it myself before posting a question!!
    simply go to TOOLS>OPTIONS>SECURITY>SAVED PASSWORDS
    and the select 'show passwords'.

  • Is it possible to change the wait time for when you enter an incorrect password on your iphone/ipad?

    I reaaally hate how anti-procrastination apps like ColdTurkey don't work for apple products, because what's the point of restricting internet usage on the computer when you can just access it from your apple device? There's no point in using the parental controls or setting passwords for obvious reasons, either.
    So I had an idea: from what I know, after guessing the password incorrectly 6 times, the device is locked for 1 min, 7 times, 5 min etc. So I was thinking, is it possible to change the settings, for example, to lock the phone for 60min after 3 wrong password attempts? This would be incredibly helpful!!
    (if you know a way but don't want to post it here, please email me instead!)

    Thanks a lot Rob. That works.
    "Rob Woollen" <[email protected]> wrote in message
    news:3f29b665$[email protected]..
    java -Djava.io.tmpdir=<tmpdir path> weblogic.appc
    -- Rob
    Bernhard Lenz wrote:
    I realized that weblogic.appc creates a working directory
    /var/tmp/appcgen
    when compiling ejbs. What happens if 2 developers run weblogic.appc atthe
    same time? Will they be using the same temp directory and therefore getin
    each others way? I'd rather like to create a temp directory which isunique
    for the machine. Our build scripts would be able to create such adirectory
    but I couldn't find anything in appc to set the temp directory.
    Do you have any advice?
    Thanks for your help.
    Greetings
    Bernie

  • Is it possible to lock my settings with a different password from the lock code

    Is it possible to lock my settings with a different password from the lock code

    To the best of my knowledge there is only one Pass Code per se
    You can check here  >  iPhone User Guide

  • Is it possible to change the LOCATION of stored passwords?

    I would like Firefox to store my passwords, but I dislike that anyone can just open up the browser to find all of my data. Yes, I have a master password, but I know it's not difficult for anyone to go into the data files and decrypt the password files.
    What I would like to do:
    1. Relocate the key3.db and logins.json files to a flash drive. Or the entire profile if absolutely necessary
    2. Change where Firefox pulls passwords from to my flashdrive
    3. Ultimately it will only be able to remember my passwords if my flashdrive is plugged in
    For a quick Q+A:
    1. Would I need to relocate just the two files, mentioned above, or the entire profile folder?
    2. What file directs Firefox to the current password location, to the AppData folder? Can I/what do I need to change this?
    3. Is this at all possible?
    I'm currently using Firefox 37.0.2, running on Windows 7.
    I'm not well versed on technical jargon, but I'm reasonably competent.
    Please let me know if more information is needed.

    Just a note, this doesn't really increase your security except in the case that someone comes into your house and sits down in front of your computer. That's the only real case that you need to be concerned about (or if you let someone have remote access over your computer).
    The better things that you can do to increase security are:
    * Keep Firefox up to date
    * Keep plugins such as Flash and Java up to date (or remove them if you don't use them)
    * Keep your operating system up to date (Make sure you check the Recommended updates, you might have a graphics driver update in there you should install)
    * Have a reputable anti-virus (for you I would suggest Microsoft Security Essentials) and run regular scans
    * Update to windows 10 when it comes out this Summer for increased security (If you update in the first year it's free!)
    * Don't install or download untrusted things from the internet

Maybe you are looking for

  • How do I change tempo (batch samples)?

    Hi, I have a bunch of loops - 2 to 4 bars in length - melodic... at 120 BPM. My project is at 70 BPM. The loops at 120 BPM are melodic - and even feel like halftime (60 bpm). I would like to get all the samples to my project tempo. The loops are .wav

  • Trouble installing ZFS in archlinux kernel 3.6.3-1-ARCH

    I've been trying to install ZFS on my system, and i can't get past a building error for SPL, here is my install output: ==> Downloading zfs PKGBUILD from AUR... x zfs_preempt.patch x zfs.install x PKGBUILD Comment by: modular on Wed, 24 Oct 2012 03:0

  • Video format supported - Nokia N95

    Hi, Maybe I can be wrong, but I think that I have moved a MPEG video into Nokia N95 and it worked fine. However, I tried to do the same thing with another video file (mpeg) and it didnt work, Nokia N95 didnt recognize the file. I dont know if the rea

  • Swing Screen size changing in 1.5

    we developed swing screen in jdk1.4 based on the JInternalFrame. The screen is fit well with in the MDI. But jdk1.5 it looks not fitting. Anybody have idea what is the issue.

  • Adding tabstrip in MIR7

    Hi Gurus, Is there any BAdI or user exit for adding tabstrip to header in MIR7 tcode or do i have to make enhancement for the same? Regards, PS