Security setting problems preventing a rerun of a form.

System Specifications:
Windows XP Professional with Microsoft Internet Explorer browser.
Enterprise Manager URL: http://dell9150:1158/em (there is no Domain Name)
Firewall is set to ON. I have no special software other than Windows XP Pro and
Internet Explorer handling my security. Oracle10g Database with Forms10g.
Sequence of Events:
1. Start OC4J Instance and Oracle Forms Builder
2. Open a previously debugged form, connect to database and run the form.
3. A sound like a pop-up blocker occurs and I am at the following address:
C:\Documents and Settings\Bob\Local Settings\Temp\s31o.htm
4. When I check the pop-up blocker it is ON. If I turn it OFF
the next time I come to this window it is set back to ON?
I can not add this current address to the pop up blocker exceptions;
however, “dell9150” is listed as an exception.
5. I also get the message “…Explorer has restricted this file from showing
active content…Click option here…”. When I select “Allow Blocked Content…”
I get a security warning “…run active content” to which I reply YES.
6. Now the form runs, the forms works just fine, and I am at the address: http://dell9150:8889/forms90/f90servlet
7. Once I close the form, go back to Builder and re-run the form I get the following
message without ever reaching the internet:
<html> <head> ORACLE FORMS.</head>
<body onload="document.pform.submit();" >
<form name="pform" action="http://dell9150:8889/forms90/f90servlet" method="POST">
<input type="hidden" name="form" value="C:\guest\forms\exercises\INSTRUCTOR_SECTION_ENROLLMENT.fmx">
<input type="hidden" name="userid" value="SCOTT/TIGER@orcl">
<input type="hidden" name="obr" value="yes">
<input type="hidden" name="array" value="YES">
</form> </body></html>
In order to re-run the form I must close out of everything and start from scratch.
I have tried several combinations of setting in the Internet Properties/Security Settings with no luck. If I RESET (I assume this resets all options to the default) the same thing occurs. Obviously, there has to be a way of setting my Internet Options so that I can run a form without this problem but I am lost and could really use some HELP! I am in no way a Windows expert nor a Oracle DBA but I can follow directions. Thanks.

Try the following solutions :
1) Check on in IE -> Tools -> Internet Options -> advanced -> allow active content to run in files on My Co
mputer
2) Make sure that you have in the Internet Explorer Tools -> Internet Options -> Advanced tab -> Check the check box
Enable third party Browser extensions. It will be under browsing.

Similar Messages

  • SendAndLoad fails in mac .app version - possible security setting problem?

    Hi all,
    I'm having trouble with sendAndLoad working on the .app version of a flash application I made. So far it's only happening on one computer, so it appears to be some sort of security setting.  Here's what's going on:
    I've built a flash application (Flash 9, AS2) that has three versions: an online version, a standalone  .exe version for PC, and a standalone .app version for mac. The user must log in to use the application. Online, this is handled by the portal hosting the flash. In the standalone versions, the user must login through the flash application. Through sendAndLoad, it accesses the same database of user info as the online version. The user just enters username/password, clicks "Submit," and if it finds the combination in the database, it lets the user in. If not, it gives them a message saying they entered the wrong username/password.
    This has tested fine across macs and pcs, but sadly one macbook can't use the .app version. It launches, they put in valid username/password, hit submit and it freezes. All I can tell is that it gets the httpStatus number 0. As you can see below, I've got it set up to spit out an error message if it fails to load (login_lv.onLoad = function(success)), but it doesn't even do that.
    I've put a crossdomain.xml file at the root level of the domain that's set to allow access from any domain.
    This computer can log in successfully to the online version of the course, but the .app version seems to be hampered by some sort of security setting. The problem computer's settings match the settings of a mac I've tested successfully. It has up-to-date Flash 10 and is running Leopard. Here are security settings:
    System Preferences>Security
         General
              Everything is unchecked
         FileVault
              Turned off
         Firewall
              "Allow all incoming connections" is selected
    I'd appreciate any ideas anyone has. I'm far from wise about the ins-and-outs of mac security, so I may be missing something. I'm happy to clarify anything.
    Code is below. It loads login_lv first, then bookmark_lv. It never gets far enough to load bookmark_lv. The severAppUrl is set to a placeholder for confidentiality's sake. The path is defintely right. It works on other computers.
    Thanks!
    Mike
    // create a LoadVars instance
    var login_lv:LoadVars = new LoadVars();
    // add the login variables to pass to the server
    login_lv.userid = "";
    login_lv.pwd = "";
    login_lv.modname = "a";
    // setup login urls
    var serverAppUrl = "http://myurlhere"; //this is just a placeholder. good ol' confidentiality agreements...
    var loginUrl = serverAppUrl+"login.asp";
    // setup bookmark urls
    var bookmarkUrl = serverAppUrl+"menu.asp";
    var bookmark_lv:LoadVars = new LoadVars();
    // add the bookmark variables to pass to the server
    bookmark_lv.studentid = "";
    bookmark_lv.isAdmin = "";
    bookmark_lv.modname = "A";
    _global.modnameTemp = bookmark_lv.modname;
    // setup login function
    function doLogin() {
    login_lv.userid = login_mc.user_txt.value;
    login_lv.pwd = login_mc.pwd_txt.value;
    login_lv.sendAndLoad(loginUrl,login_lv,"GET");
    // send the login info
    login_mc.continueBtn_mc.onRelease = function() {
    this.enabled = false;
    doLogin();
    // variables will appear in the login_lv object
    login_lv.onLoad = function(success) {
    if (success) {
    if (this.studentid == undefined) {
    login_mc._x = 0;
    trace("not logged in");
    debug_mc.body_txt.text+="\nnot logged in";
    if(this.reas == "Please Complete Overview and first 3 Module(s) with at least 70 score."){
    login_mc.loginBad_mc.gotoAndStop("r2");
    login_mc.loginBad_mc._visible = true;
    } else if(this.reas == "Please Complete Overview Module first."){
    login_mc.loginBad_mc.gotoAndStop("r3");
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc.loginBad_mc._visible = true;
    } else {
    login_mc._x = 800;
    trace("now logged in");
    debug_mc.body_txt.text+="\nnow logged in";
    trace("studentid: "+this.studentid);
    trace("isAdmin: "+this.isAdmin);
    //track variables for later use
    _global.studentidTemp = this.studentid;
    _global.isAdminTemp = this.isAdmin;
    bookmark_lv.studentid = ""+this.studentid+"";
    bookmark_lv.isAdmin = ""+this.isAdmin+"";
    bookmark_lv.sendAndLoad(bookmarkUrl,bookmark_lv,"GET");
    }else{
    debug_mc.body_txt+="\nlogin load error"
    login_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n login_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;
    //prepare bookmarkXML to receive returned info from bookmark_lv function
    var bookmarkXML = new XML();
    bookmarkXML.ignoreWhite = true;
    bookmarkXML.onLoad = bookmark_lv;
    // variables will appear in the bookmark_lv object
    bookmark_lv.onLoad = function(success) {
    if (success) {
    trace("bookmarked");
    debug_mc.body_txt.text+="\nbookmarked";
    trace("bookmarkXML: "+bookmarkXML);
    var bookmarkNode = mx.xpath.XPathAPI.selectNodeList(this.firstChild, "/bookmark");
    trace("bookmarkNode: "+bookmarkNode);
    var bookmarker:String = unescape(eval("bookmark_lv"));
    trace("bookmarker: "+bookmarker);
    bookmarker = bookmarker.split("<xml>").join("");
    bookmarker = bookmarker.split("<bookmark").join("");
    bookmarker = bookmarker.split("/bookmark>").join("");
    bookmarker = bookmarker.split("</xml>").join("");
    var startIndex:Number;
    var endIndex:Number;
    startIndex = bookmarker.indexOf(">");
    trace(startIndex);
    endIndex = bookmarker.indexOf("<");
    trace(endIndex);
    var bookFinally:String;
    bookFinally = bookmarker.substr(startIndex+1, endIndex-2);
    bookFinally = bookFinally.split("<").join("");
    setBookmarkStr = ""+bookFinally+"";
    trace("string: "+setBookmarkStr);
    _global.newBookmark = bookFinally;
    play();
    }else{
    debug_mc.body_txt+="\nbookmark load error"
    bookmark_lv.onHTTPStatus = function(httpStatus:Number) {
        this.httpStatus = httpStatus;
        if(httpStatus < 100) {
            this.httpStatusType = "flashError";
        else if(httpStatus < 200) {
            this.httpStatusType = "informational";
        else if(httpStatus < 300) {
            this.httpStatusType = "successful";
        else if(httpStatus < 400) {
            this.httpStatusType = "redirection";
        else if(httpStatus < 500) {
            this.httpStatusType = "clientError";
        else if(httpStatus < 600) {
            this.httpStatusType = "serverError";
    debug_mc.body_txt.text+="\n bookmark_lv HTTPStatus number="+httpStatus+" HTTPStatus type="+this.httpStatusType;

    try using different loadvars instances for your send loadvars and for your receive loadvars.

  • Is there a security setting that prevents .EXEs from being run from a Projector on a CD in Win7?

    I created a Flash Projector for a client and burned it to a CD.  There is a button on it that uses fscommand to run the Adobe Acrobat installer from the CD and also one that installs a screensaver to the computer.
    The client says they can't get either of those two buttons to work on a Windows 7 machine.
    I have Win7 64-bit on the computer that I created the Projector on and it works fine for me and I also have Win7 32-bit on my laptop and it works there as well.  The only thing I can think is that I turn a lot of the security setting in Windows 7 off such as "User Account Control".
    Would that be what is preventing the .EXEs from working on their Windows 7 machines?
    Thanks.

    Locking the phone via the lock screen does not prevent you from restoring the phone, you'll need to be able to do so if you forget the passcode: iPhone and iPod touch: Wrong passcode results in red disabled screen
    And I don't think that other smartphones offer that feature you're looking for.
    Let Apple know about it here: Apple - iPhone - Feedback

  • Security setting is preventing the browser working. its an alert message

    Could not initialise the application's security component. The most probable cause is problems with files in your browser's profile directory. Please check that this directory has no read/write restrictions and your hard drive is not full or close to full. It is recommended that you exit the browser and fix the problem. If you continue to use this browser session, you might see incorrect browser behaviour when accessing security features.

    This link shows things to check - https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • Security setting problem!! need help

    i m a designer ,once i done i need to email  the pdf file to cilent .But i wanted to make the file with security !! i just want my cilent just have a view but cant print and save on that file beacuse i scare the cilent use my design as a copyright .
    so anyone here can teach me how to set the security mode to cant pirnt and save?can teach me step by step? i using adobe reader X and normally i using powerpoint to covert to PDF...please help

    Adobe Reader can't set any security.

  • Airport Express not recognized by Utility after changing security setting.

    We use an Extreme with an Express to extend the network and run speakers. While trying to eradicate Airtunes dropouts I changed the security setting on the Express using the Airport Utility. After the update, the Express is no longer being recognized. Help!!! I've unplugged it and used the reset button to no avail. I'm a techno-dummy, so please be gentle. I really do appreciate any insight.

    Hi,
    It seems you have set a too strong security on the Extreme that is not supported on the Express.
    I don't know what model of Express you have so try to use a less strong security on the Extreme.
    (you can find the security specs of your express on Apple's website : http://support.apple.com/specs/#airport )
    As you have reset the Express... you will first have to set it up again...
    P.S. : Do the connection drop problems occur on the Express and / or on the extreme ?
    As security settings "should" not be the cause for WiFi connection drop, something else is.
    Can you give more info on what you already tried ? Ex : Multicast Rate, Transmit Power, Use wide channels, Closed network, Use interference robustness
    Kind regards,

  • When password security-setting dialogue box is opened, the bottom can't be seen or moved

    Using Acrobat XI Pro on my Dell PC, I was trying to add password protection to the document.  When I click on the "encrypt with password" button, the password security-setting dialogue box pops up, and I can enter the password.  However, the bottom of the page is not visible and I can't move it to click the "ok" button.  Any suggestions?

    Which Acrobat XI Pro are you using? I think you experience the same problem that was reported on this forum in the past. I believe this problem was fixed in one of the recent versions (11.0.07??). Upgrade to the latest version and the problem should go away.

  • Web Gallery security setting

    Hi,
    I have just created my gallery but run into a difficulty with the security setting. If I apply a password to my Album/Event, the Key Photo, number of photos, and scrolling feature is disabled in the My Gallery page. Is there a way of applying this security at the My Gallery level so that I do not loose this feature of the application?
    Thanks,
    Nick

    Nick:
    No, you can't have the gallery protected and still have the scrolling feature. Part of the protection is keeping the photos unavailable at that level as well as limiting access.
    Happy Holidays
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • High (Maximum) Security Setting for FIOS Firewall

    If you set the maximum security setting on the Verizon FIOS Firewall then whenever Verizon decides to swap its IP's you are screwed; the unit will not get the new IP.
    To compensage for the maximum settings I have enable all of the verizon unit (SBU's) to have unrestricted access aka ANY but this does not do the trick.
    Verizon in its ultimate wisdom has not bothered to document anywhere what are the minimum outbould settings should be that would enable this communication in the High (Maximum) security mode.
    Does anyone from Verizon read this stuff?

    So, I'm pretty much convinced now that the problem with low-quality LR previews seems to be mostly isolated to the previews that LR generates after you make edits in the 'Develop' module.
    Upon first import, this image looked fine in the 'Library' & 'Slideshow' modules. After making some edits (color, tone, etc.) in the 'Develop' module, I ended up getting this hideous preview in the 'Library' & 'Slideshow' modules:
    http://web.mac.com/rishisanyal/Lightroom/07-0310_BandingBlocking.jpg
    You people with LCDs will be able to see the JPEG artifacts better than those with CRTs, since LCDs tend to be sharper.
    So, the obvious question is this:
    Does LR, when *re-generating* previews for edited images, ignore the quality-setting for JPEG previews (which I have set to 'high')??

  • Web service: Cannot remove WSS security setting

    Hi,
    i have a problem about developing web service with jdeveloper 10.1.3.1
    The problem is that ---> once i have add the security to the web service
    (through the web service wizard .. i,e, right click the web service and
    select "Secure Web Service'), i CANNOT REMOVE the security setting using
    the web service wizard...
    call the web service always say missing wsse:Security SOAP header..
    do anybody have the solution?
    thank you...

    Hi,
    the issue is still there in 10.1.3.3, and it must be somewhere on JDeveloper or OC4J side. Moreover, it's not limited to removing security settings, as the situation (old settings remembered) is the same when editing security settings.
    lsp,
    before regenerating a web service and its xml files (editing security properties), make sure you have cleaned the project and then you can try deleting the oracle-webservices.xml file from your project directory, because JDeveloper does not seem to be willing to overwrite it during regeneration.
    If this does not help and you are using embedded OC4J, you can try the following steps before running the web service again:
    - delete the embedded-oc4j/application-deployments/current-workspace-app directory, because it contains an oracle-webservices.xml file which may be outdated,
    - empty the contents of embedded-oc4j/config/wsmgmt.xml, because it contains security settings for web services you have deployed so far, which also may be outdated,
    - restart JDeveloper :)
    Note that these are just guesses to solve the problem. Unfortunately doing all of these did not solve it for me.
    So if anybody has some more ideas, we'll be happy to hear them.
    Thanks,
    Patrik

  • HT204088 Itunes asks questions that I didn't answer in the original security set up

    I have just set up my new MacBook Pro and have not purchased anything from Itunes yet.
    When I try to make a purchase it insists on asking security questions. This normaly isn't a
    problem but Itunes is asking questions that I didn't give answers to in the original security
    set up.

    Check the AppleCare number for your country here:
    http://support.apple.com/kb/HE57
    Call them up, and let them know you would like to be transferred to the Account Security Team.

  • Keep Losing Airport Security Setting Password, What Could Be Wrong?

    My wireless security setting (wpa2personal)) password is gone whenever I start up, restart or wake from sleep. Airport security reads "none", and I have to reconfigure it with a password again.
    What could be the problem?
    Message was edited by: AnonyMouse

    Have you tried deleting that connection & making a new one?
    There a more than a few files that handle it, one may be corrupted, try dragging these to the desktop & reboot...
    /Users/YourUserName/Library/Preferences/ByHost/com.apple.networkConnect.<12 digit number>.plist
    /Users/YourUserName/Library/Preferences/com.apple.internetconnect.plist
    /Library/Preferences/SystemConfiguration/preferences.plist
    /Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist
    Lots of prefs in that b3rd one, so hang on to it in case you want to put it back.

  • No security set up yet it is asking for an encryption key

    I have the WRT54G wireless router.  I am running 3 pc's on the network.  I had some issues with the router the other day.  I restored to factory defaults and now 2 of the pc's can connect no problem but the third is listing the router as security enabled.  It has no security set up on it.  All three pc's are running xp.  Is there a setting on my pc to change?  Do I delete a temp file or something?  I have never set up a key on this router and this is getting to the frustration point.
    Thanks!

    I assume your router has a unique SSID, and you are not trying to connect to your neighbor's router.
    Try deleting all the "Preferred Networks" on the non-working computer.
    In the non-working computer, if you are running both Linksys wireless card management software, and WZC at the same time, turn one of them off.
    In the non-working computer, if you are running a software firewall, temporarily turn it off.  Note that some users have had difficulty turning off Zone Alarm, and they needed to uninstall it to get it turned off.
    Message Edited by toomanydonuts on 05-03-200701:20 AM
    Message Edited by toomanydonuts on 05-03-200703:36 AM

  • Can't set security setting to allow it to remember passwords.

    reset laptop to factory setting. win7 HE, firefox 36. Was working prior to reset. Now under the security setting the option to remember passwords is grayed out leaving using master password the only option to select. Does anyone know a fix for the problem.

    hello, firefox won't save your passwords when you've set it up to run in permanent private browsing mode ("never remember history" in the options > privacy panel).
    [[Settings for privacy, browsing history and do-not-track]]

  • Adobe flash security setting panel error

    Issue is the following page no longer works as of today flash security setting https://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.ht ml so went to instead https://www.adobe.com/support/documentation/en/flashplayer/help/settings_manager04.html however this does not function properly either, when I select the edit location and folder or files it closes and can't therefore set the setting. We use flash for a important application and users are currently affected as they can't get on as it doesn't work and can't get past this issue. Urgent issue.

    Hi, I guess this is (almost) the same for Windows 2000 users? I have several folders with older Adobe/Shockwave appdata in my German Windows 2000 installation, e.g. C:\Dokumente und Einstellungen\Hans-Jürgen Bardenha\Anwendungsdaten\Adobe\Flash Player and/or C:\Dokumente und Einstellungen\Hans-Jürgen Bardenha\Application Data\Adobe\Shockwave Player 11, created on the date or shortly after OS installation. So it's safe to simply delete them with all their content if you have this issue of a freezing Adobe Flash setting panel?
    By the way, I'm asking because I also experience freezing problems now with Flash content on sites that worked fine before the update to the latest plugin. Disabling hardware acceleration in v10.1. didn't help either, I'm using the newest Opera 10.60 final, but on a very old computer.

Maybe you are looking for

  • How to change proxy credentials in Firefox?

    Hello, One of our staff recently changed her password which is used for the proxy. I've updated the credentials in network preferences and it seems to work fine for other browsers (Chrome and Safari) but Firefox does not seem to work. All other setti

  • Printing all messages when WEBLOGIC starts in its log file

    Hello i am following all these steps Step 1. Copy log4j-1.2.9.jar & wllog4j.jar under domain_root/lib folder. Step 2. Create log4j.xml and drop it under domain_root folder. If you have log4j.xml inside the application(EAR/WAR), I would recommend to m

  • Control key stopped working in my tigervnc sessions [SOLVED]

    Recently, the ctrl key (for example ctrl+F) stopped working when I connect to a vncserver running tigervnc... anyone else?  Must be something recent package-wise because it has always worked in the past. On the server, I run simply: % cat ~/.vnc/xsta

  • Transction ivew for crm

    Hi Experts, I have to create one transaction iview in portal for crm. Please give me some details about the steps which i should complete before creating this ivew. What is the role of SSO in this and what type of system should create for this. Porta

  • How can I see all devices using my airport express?

    Is there any way to see all devices using my airport express for wifi connection?