Flex flow error

Hello, I've been killed my head trying to understand this, I tried many ways, but I can't seem to load a sound I do a Radio Player, I you http source, but it did not work so I tried first with the most basic that loads a sound from my project, here is my code:

<? XML version = "1.0" encoding = "utf-8"? >

" < = xmlns:fx s:View ' http://ns.Adobe.com/MXML/2009 "

xmlns:s = "library://ns.adobe.com/flex/spark" title = "HomeView" >

< fx:Script >

<! [CDATA]

Import adobe.utils.CustomActions;

Import air.net.URLMonitor;

import flash.media.Sound;

import flash.media.ID3Info;

import flash.net.URLRequest;

var sound: Sound = new Sound (new URLRequest ("Remains.mp3")); It's in the views folder, I tried to move to another folder and change its respective trajectory, but nothing.

var my_channel:SoundChannel;

var pausePos:int = 0;

protected function play(event:MouseEvent):void

{

my_channel = sound.play().

}

[]] >

< / fx:Script >

< s:Button click = "play (event)" >

< / s:Button >

< / s:View >

I get this:

Error #2044: Unmanaged by the IOErrorEvent:. Text = Error #2032: error flow.
I also tried to do as a Flex Web application, but it is not no longer works, I don't know that if it has to do with run it via localhost or something, please help me, I'm new on this.

I could work around this error by doing this:

<? XML version = "1.0" encoding = "utf-8"? >

" < = xmlns:fx s:Application ' http://ns.Adobe.com/MXML/2009 "

xmlns:s = "library://ns.adobe.com/flex/spark".

xmlns:MX = "library://ns.adobe.com/flex/mx" minWidth = "955" = "600" minHeight >

< fx:Script >

<! [CDATA]

import flash.media. *;

[Embed(source="music/Remains.mp3")]

[Bindable]

public var sndCls: Class;

public var snd:Sound = sndCls() new sound;

public var sndChannel:SoundChannel;

public function playSound (): void {}

sndChannel = snd.play ();

}

public function stopSound (): void {}

sndChannel.stop ();

}

[]] >

< / fx:Script >

< s:HGroup >

< s:Button label = "play" click = "playSound (); "/ >

< s:Button label = "arrΩter" click = "stopSound (); "/ >

< / s:HGroup >

< / s:Application >

However the sound is never played.

It's there, I made sure, actually if I'm moving to another place and try to run the application, a warning appears sayimg that the file could not be found. Let me try this

Tags: Flex

Similar Questions

  • unique index on flow error

    Hi gurus,

    One of my work in ODI 10.1.3.5 fails to step: create a unique index on the flow table
    and
    throw this error: ORA-02158: invalid CREATE INDEX option

    in previous places of employment, he executed successfully but now his failure to get...

    I'm looking:

    1. What can be the reason of this failure.
    2. can I I skip this step by changing a setting in the flow control tab / (without checking the step by IKM (ignoring the error) - as he will ignore the other packages using the same IKM)
    3. the used IKM is the INCREMENTAL of the IKM ORACLE.

    Thank you
    Ravi

    Hi Ravi,

    I'll try to help you.

    1. What can be the reason of this failure.

    ODI will create a non-unique index running based on the PK (primary key) defined in the target data store. So, it could be because some invalid CREATE INDEX option is shown in the flow tab.

    2. can I I skip this step by changing a setting in the flow control tab / (without checking the step by IKM (ignoring the error) - as he will ignore the other packages using the same IKM)

    Better, the flow tab, you can do FLOW_TABLE_OPTION of virgins and try.

    3. the used IKM is the INCREMENTAL of the IKM ORACLE.

    Should be good.

    Thank you
    Guru

  • stack over flow error

    ot means when it comes up with battery more streams and how can I just solve this problem

    http://social.technet.Microsoft.com/forums/en/itprovistaie/thread/11a0b889-9903-4f21-A765-3994ea9c8c5c

    Read the above info.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    See if the information below helps you solve the problem/s you have with Internet Explorer:

    http://support.Microsoft.com/default.aspx/KB/936213/?p=1

    "How to optimize Internet Explorer"

    Configuration in Windows Internet Explorer 7 and Windows Internet Explorer 8 settings can cause one or more of the following problems:

    ·     You experience performance issues in Internet Explorer.

    ·     You receive an error message in Internet Explorer. For example, you receive a message error "Internet Explorer cannot display the webpage".

    ·     Internet Explorer stops responding.

    This article describes how optimize or reset Internet Explorer in Windows Vista to solve these problems.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/kb/936215

    "How to solve the problems of Internet Explorer in Windows Vista and Windows XP"

    This article explains how to solve any problems that you may experience when you use Windows Internet Explorer 7 or Windows Internet Explorer 8 on a computer that is running Windows Vista.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://support.Microsoft.com/kb/936214/

    "How to solve compatibility problems that affect Internet Explorer 7 in Windows Vista"

    This article describes how to troubleshoot software compatibility affecting Windows Internet Explorer 7. To help determine which program may be the cause of the problem, you can do the following:

    1 use the mode safe mode with networking

    2. perform a clean boot

    3. use another user account

    4 scan your computer against viruses and spyware

    5. run Internet Explorer 7 in "no Add-ons" mode

    Hope the above helps.

    See you soon.

    Mick Murphy - Microsoft partner

  • Flex Builder error: Namespace 2.6 in the application descriptor file must be equal to or greater than the minimum version 3.1 required by Flex SDK.

    "2.6 Namespace in the application descriptor file must be equal to or greater than the minimum version 3.1 required by the Flex SDK kit."

    what it means?

    to run the application

    (1) I need lower version 3.1

    (2) I need a newer version than the 3.1

    I'm confused.

    You can change the project xml file. I solved like this.

  • Combine two tables using Actionscript Flex Applications errors

    Hello

    I have a set of Actionscript code below that I would run based on a query and have it display what are all of the selections that I posted from the checkbox elements two repeater.

    This doesn't seem to work every time when I get to the checkBox_change2 function. I still see some error messages popping up telling me that I have references null to that particular line: var selArr3:Array = selArr2.concat (selArr);

    Could someone tell me how I can get checkBox_change2() don't forget the selections, I did in checkBox_change()? I tried to use public var for the [Bindable] above but I still get the same error.

    Thanks in advance.

    Alice

    You are declaring your selArr not always correctly.
    The statement [Bindable] private var selArr:Array; is an instance variable. It is defined outside of any function and is visible from almost anything in your object.

    In your service
    private void checkBox_change(evt:Event,x:Array):void {}
    selArr:Array = [];

    selArr is defined as a local variable that is visible only in the function checkBox_change. Because the names are the same that you override the instance variable. (In reality this is not compiling correctly... your first try for var selArr:Array = [] was the valid syntax for the variable substitution)

    To remedy this, you just need to change
    selArr:Array = [] in selArr = [];

  • "Run program in comments" VCO Workflow survey error "File &lt; file name &gt; is not found" not specified in VCO connected to VCD 5.1

    I'm trying to run a vbs script on a windows computer using "Run the program in comments" VCO Flow. I use the path of the entry only program and placed the script under the c drive to facilitate testing and you try to run a script of vmware for testing as follows. I get a VCO Flow error file < file name > not specified was not found. What is the problem with the entries.

    Flowname: Library/vCenter/comments-operations/process/run program in the comments

    Inputs                        :

    programPath c:\cscript.exe vm - support.vbs

    arguments

    workingDirectory

    undefined environment

    InteractiveSession No.

    Output: file < unspecified file name > not found.

    Thank you

    MuruRam

    Hello!

    In your example, the command would be only c:\cscript.exe and support.vbs - vm is an argument to this command.

    See you soon,.

    Joerg

  • patch p11879896_112020_Generic failed with the missing req for error computer

    Hello
    Apply the fix for issue on Linux 32 with

    opatch apply - invPtrLoc /u01/app/oraInventory/oraInst.loc

    has failed (with message
    Patch 11879896 : Required or missing components: [oracle.sysman.console.db, 11.2.0.2.0]),

    debugging follows below. Any idea?

    Thank you.

    Anatoliy

    _osArch is
    /u01/app/oracle/product/11.2.0/home11gR2/jdk/bin/java -mx96m -cp /u01/app/oracle/product/11.2.0/home11gR2/OPatch/ocm/lib/emocmutl.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/OraInstaller.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/share.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/srvm.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/orai18n-mapping.jar:/u01/app/oracle/product/11.2.0/home11gR2/oui/jlib/xmlparserv2.jar:/u01/app/oracle/product/11.2.0/home11gR2/OPatch/jlib/opatch.jar:/u01/app/oracle/product/11.2.0/ home11gR2/OPatch/jlib/opatchutil.jar:/U01/app/Oracle/product/11.2.0/home11gR2/OPatch/jlib/opatchprereq.jar:/U01/app/Oracle/product/11.2.0/home11gR2/OPatch/jlib/opatchactions.jar:-DOPatch.ORACLE_HOME=/u01/app/oracle/product/11.2.0/home11gR2-DOPatch.DEBUG=true-DOPatch.RUNNING_DIR=/u01/app/oracle/product/11.2.0/home11gR2/OPatch oracle/opatch/OPatch apply - invPtrLoc /u01/app/oraInventory/oraInst.loc
    Citing O Patch 11.1 .0.6.6

    Setup Oracle interim Patch version 11.1.0.6.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.

    CmdLineParser::initRuntimeOptions()
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ StringArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ StringArguments
    There are 7 fields defined in this class.
    Add option "fp".
    Add option "dp".
    Add option "fr".
    Add option "dr."
    Add option "mp".
    Add option 'phbasedir '.
    Add option 'phbasefile '.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ BooleanArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ BooleanArguments
    There are 2 fields defined in this class.
    Add option 'delay_link '.
    Add option "cmd_end.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ IntegerArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ IntegerArguments
    There are 2 fields defined in this class.
    Add option 'integerarg1 '.
    Add option 'integerarg2 '.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ StringtegerArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ StringtegerArguments
    There are 5 fields defined in this class.
    Add option 'stringtegerarg1 '.
    Add option 'stringtegerarg2 '.
    Add option "ps".
    Add option "mp".
    Add option "xmlinput.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ DoubleArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ DoubleArguments
    There are 2 fields defined in this class.
    Add option 'doublearg1 '.
    Add option 'doublearg2 '.
    Audit on the class oracle.opatch.opatchutil.CmdLineOptions$ RawStringArguments
    A list of the fields defined in the class oracle.opatch.opatchutil.CmdLineOptions$ RawStringArguments
    There are 1 fields defined in this class.
    Add option "cmd".
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchutil.OUSession".
    option string initialization 0, fp
    initialization of string option1, dp
    initialization of string option 2, en
    option during initialization of channel 3, dr
    4, MP initialization string option
    initialization string 5 option, phbasedir
    initialization string 6 option, phbasefile
    does init. String argument.
    initialization of the Boolean option 0, delay_link
    initialization of the Boolean option 1, cmd_end
    does init. Boolean argument.
    initialization option to the integer 0, integerarg1
    the initialization of the whole number 1 option, integerarg2
    does init. Integer argument.
    initialization of StringTeger option 0, stringtegerarg1
    initialization of option StringTeger 1, stringtegerarg2
    initialization of StringTeger option 2, ps
    initializing StringTeger option 3, mp
    initialization of StringTeger option 4, xmlinput
    does init. SringTeger arg
    the initialization of the Double option 0, doublearg1
    the initialization of the Double option 1, doublearg2
    does init. Double argument.
    initialization of RawString option 0, cmd
    does init. RawString arg.
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchutil.OUSession", actually.
    CmdLineParser::initRuntimeOptions()
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ StringArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ StringArguments
    There are 3 fields defined in this class.
    Add option 'phbasedir '.
    Add option "patchids.
    Add option 'phbasefile '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ BooleanArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ BooleanArguments
    There are 2 fields defined in this class.
    Add option 'booleanarg1 '.
    Add option 'booleanarg2 '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ IntegerArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ IntegerArguments
    There are 2 fields defined in this class.
    Add option 'integerarg1 '.
    Add option 'integerarg2 '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ StringtegerArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ StringtegerArguments
    There are 2 fields defined in this class.
    Add option 'stringtegerarg1 '.
    Add option 'stringtegerarg2 '.
    Audit on the class oracle.opatch.opatchprereq.CmdLineOptions$ DoubleArguments
    A list of the fields defined in the class oracle.opatch.opatchprereq.CmdLineOptions$ DoubleArguments
    There are 2 fields defined in this class.
    Add option 'doublearg1 '.
    Add option 'doublearg2 '.
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchprereq.PQSession".
    initialization string 0 option, phbasedir
    the initialization of the option channel 1, patchids
    initialization of string option 2, phbasefile
    does init. String argument.
    the initialization Boolean option 0, booleanarg1
    the initialization of the Boolean option 1, booleanarg2
    does init. Boolean argument.
    initialization option to the integer 0, integerarg1
    the initialization of the whole number 1 option, integerarg2
    does init. Integer argument.
    initialization of StringTeger option 0, stringtegerarg1
    initialization of option StringTeger 1, stringtegerarg2
    does init. SringTeger arg
    the initialization of the Double option 0, doublearg1
    the initialization of the Double option 1, doublearg2
    does init. Double argument.
    CmdLineHelper::loadRuntimeOption() for the class "oracle.opatch.opatchprereq.PQSession", actually.
    reqVer to use getEnv() = 10.2.0.4.0
    curVer = 11.2.0.1.0
    Worm of the current later that required? : true
    Current ver is equal to required? : false
    Checking the EMDROOT using the API of YES...
    CmdLineParser.processOPatchProperties () starts
    Ends of CmdLineParser.processOPatchProperties)
    OUIReplacer called::runEnvScript()
    SystemCall:RuntimeExec(cmds,_runDir): GOING to start to thread to read the input stream
    SystemCall:RuntimeExec(cmds,_runDir): Started thread to read the input stream
    SystemCall:RuntimeExec(cmds,_runDir): GOING to start to thread to read the error stream
    ::Run() ReaderThread: Stream InputStream about to be read
    SystemCall:RuntimeExec(cmds,_runDir): Started thread to read the error stream
    SystemCall:RuntimeExec(cmds,_runDir): ENTER process.WAITFOR()
    ::Run() ReaderThread: ErrorStream stream being read
    ::Run() ReaderThread: Stream InputStream finished reading
    ::Run() ReaderThread: reading stream ErrorStream completed
    SystemCall:RuntimeExec(cmds,_runDir): process.WAITFOR() is ON
    SystemCall:RuntimeExec(cmds,_runDir): Wire flow error joined with success
    SystemCall:RuntimeExec(cmds,_runDir): Input stream thread joined with success
    OUIReplacer called::setKeyValue()
    OPatchSession::main()
    Environment:
    OPatch.ORACLE_HOME=/u01/app/oracle/product/11.2.0/home11gR2
    oracle.installer.invPtrLoc=/u01/app/oraInventory/oraInst.loc
    Oracle.Installer.oui_loc=/U01/app/Oracle/product/11.2.0/home11gR2/Oui
    Oracle.Installer.library_loc=/U01/app/Oracle/product/11.2.0/home11gR2/Oui/lib/Linux
    Oracle.Installer.startup_location=/U01/app/Oracle/product/11.2.0/home11gR2/Oui
    OPatch.PLATFORM_ID =
    OS. Name = Linux
    OPatch.NO_FUSER =
    OPatch.SKIP_VERIFY = null
    OPatch.SKIP_VERIFY_SPACE = null
    oracle.installer.clusterEnabled = false
    TRACING. ENABLED = TRUE
    TRACING. LEVEL = 2
    OPatch.DEBUG = true
    OPATCH_VERSION = 11.1.0.6.6
    Delivered OPatch property file = properties
    Minimum version of YES: 10.2
    OPatch.PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/u01/app/oracle/product/11.2.0/home11gR2/bin:/u01/app/oracle/product/11.2.0/home11gR2/OPatch
    Independent House: false


    Environment:
    OPatch.ORACLE_HOME=/u01/app/oracle/product/11.2.0/home11gR2
    oracle.installer.invPtrLoc=/u01/app/oraInventory/oraInst.loc
    Oracle.Installer.oui_loc=/U01/app/Oracle/product/11.2.0/home11gR2/Oui
    Oracle.Installer.library_loc=/U01/app/Oracle/product/11.2.0/home11gR2/Oui/lib/Linux
    Oracle.Installer.startup_location=/U01/app/Oracle/product/11.2.0/home11gR2/Oui
    OPatch.PLATFORM_ID =
    OS. Name = Linux
    OPatch.NO_FUSER =
    OPatch.SKIP_VERIFY = null
    OPatch.SKIP_VERIFY_SPACE = null
    oracle.installer.clusterEnabled = false
    TRACING. ENABLED = TRUE
    TRACING. LEVEL = 2
    OPatch.DEBUG = true
    OPATCH_VERSION = 11.1.0.6.6
    Delivered OPatch property file = properties
    Minimum version of YES: 10.2
    OPatch.PATH=/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin:/u01/app/oracle/product/11.2.0/home11gR2/bin:/u01/app/oracle/product/11.2.0/home11gR2/OPatch
    Independent House: false



    Oracle home: /u01/app/oracle/product/11.2.0/home11gR2
    Inventory Center: / u01/app/oraInventory
    from: /u01/app/oraInventory/oraInst.loc
    OPatch version: 11.1.0.6.6
    YES version: 11.2.0.1.0
    YES location: /u01/app/oracle/product/11.2.0/home11gR2/oui
    Location of the log file: /u01/app/oracle/product/11.2.0/home11gR2/cfgtoollogs/opatch/opatch2012-01-19_04-10-13AM.log

    History of patch file: /u01/app/oracle/product/11.2.0/home11gR2/cfgtoollogs/opatch/opatch_history.txt

    OUISessionManager::instantiate()
    lockCentralInventory(): OUISessionManager::lockCentralInventory() retries 0 times with every 120 seconds to get a lock of the inventory.
    Try OUISessionManager::lockCentralInventory() round # 1
    OUISessionManager::setupSession()
    OUISessionManager::setupSession() instantiates an OUIInventorySession obj.
    OUISessionManager::setupSession() init. the session
    OUISessionManager::setupSession() implements READ ONLY session
    OUISessionManager::setupSession() done
    OUISessionManager::lockCentralInventory() configure session OK
    reqVer = 10.2
    curVer = 11.2.0.1.0
    Worm of the current later that required? : true
    Current ver is equal to required? : false
    ApplySession::process()
    ApplySession::process(): loading object patch.
    ApplySession::loadAndInitPatchObject()
    PatchObject (patchLocation)
    PatchObject::PatchObject looking for file /u01/app/oraInventory/etc/config/actions.xml actions
    PatchObject::PatchObject looking for the file /u01/app/oraInventory/etc/config/inventory.xml inventory
    parserXMLFile: start
    parserXMLFile: start

    Bugs fixed by this patch 11879896 :
    11879896: SMPSSE: OVERVIEW OF THE PERFORMANCE OF DATABASE DOES NOT WORK ON MAC/LINUX

    PatchObject::setPreReadMeAction: readMeFile = /u01/app/oraInventory/custom/pre.txt
    noOp = true
    fileContent =
    PatchObject::setPreScriptAction: [PreScriptAction:-]
    no - op = true, fileLoc = / u01/app/oraInventory/custom/scripts/pre
    [Pre script is not present.-]

    PatchObject::setPostReadMeAction: readMeFile = /u01/app/oraInventory/custom/post.txt
    noOp = true
    fileContent =
    PatchObject::setPostScriptAction: [PostScriptAction:-]
    no - op = true, fileLoc = / u01/app/oraInventory/custom/scripts/post
    [Post script does not exist.-]

    PatchObject::setInitReadMeAction: readMeFile = /u01/app/oraInventory/custom/init.txt
    noOp = true
    fileContent =
    PatchObject::setInitScriptAction: [InitScriptAction:-]
    no - op = true, fileLoc = / u01/app/oraInventory/custom/scripts/init
    [Init script does not exist.-]

    Fix provisional application '11879896' ApplySession to OH ' / u01/app/oracle/product/11.2.0/home11gR2'
    ApplySession::processLocal()
    OPatchEnv:
    ["OPatchEnv: OracleHome="/u01/app/oracle/product/11.2.0/home11gR2 ", force = false, value = false, mod. inv. = true, the system mod. = true, local mode = false, all the lsinv = false, lsinv detail = false, lsinv patch = false, nolink = false, Retry = 30, delay = 120, CallerName = OPatch, CallerVersion = 11.1.0.6.6, SessionType = apply, JdkLoc=/u01/app/oracle/product/11.2.0/home11gR2/jdk, JreLoc=/u01/app/oracle/product/11.2.0/home11gR2/jre/1.4.2] , OracleHome via-oh = OracleHome via env.=/u01/app/oracle/product/11.2.0/home11gR2, via the response file OracleHome =, OPatch recognized InvPtrLoc=/u01/app/oraInventory/oraInst.loc, InvPtrLoc=/u01/app/oraInventory/oraInst.loc is specified by the user, without re-creating a link = false, Patch ID used in Rollback =, Patch ID with OPack timestamp =, PreOpt =, PostOpt =, OSName = Linux, is = false,.patch_storage=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage , .patch_storage / < ID > =/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/ entire Patch is saved to=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//original_patch, backup restore path=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//backup backup for Rollback path=/u01/app/oracle/product/11.2.0/home11gR2/.patch_storage//files, FilesMap info from=/u01/app/oracle/product/11.2.0/home11gR2/inventory/oneoffs/ < patch_id > [, PatchLoc = / u01/app/oraInventory, SyntaxErrorMsg =]
    Process InitReadMeAction()
    InitReadMeAction::catFile() is a no - op
    InitScriptAction::process() is a no - op
    Checking prerequisites 'CheckApplicableProduct '...

    PrereqAPI::checkApplicableProduct
    PrereqAPI::checkStandAloneHome())
    PREREQ checkApplicableProduct spent
    OPatch checks if the patch is applicable to this type of product home
    ApplySession::setupPatchStorage()
    ApplySession::processLocal() load inventory
    OracleHomeInventory::createInventoryObj()
    OracleHomeInventory::createInventoryObj() gets OUIInventorySession object
    Locker: lock()
    call of lockCentralInventory()
    OUISessionManager::getInventorySession()
    Details of the appellant:
    Name calling: OPatch calling Version: 11.1.0.6.6 requested access read-only: false Oracle Home: /u01/app/oracle/product/11.2.0/home11gR2
    OUISessionManager::instantiate()
    lockCentralInventory(): OUISessionManager::lockCentralInventory() retries 30 times with every 120 seconds to get a lock of the inventory.
    Try OUISessionManager::lockCentralInventory() round # 1
    OUISessionManager::setupSession()
    OUISessionManager::setupSession() instantiates an OUIInventorySession obj.
    OUISessionManager::setupSession() init. the session
    OUISessionManager::setupSession() put in place the session of READING / WRITING
    OUISessionManager::setupSession() done
    OUISessionManager::lockCentralInventory() configure session OK
    OUISessionManager::register()
    Record of the appellant: OPatch
    Locker::Lock(): /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage does exist, no need of mkdir.
    Locker::Lock(): /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_free exists, will delete the file.
    Locker: lock() creates /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_locked
    OracleHomeInventory::createInventoryObj() gets OUIInstallAreaControl object
    OracleHomeInventory::createInventoryObj() gets OUIInstallInventory object
    OracleHomeInventory::createInventoryObj() gets OUIOracleHomeInfo object
    OracleHomeInventory::createInventoryObj() built
    OracleHomeInventory::load()
    OracleHomeInventory::load() Gets a vector of all categories of products
    OracleHomeInventory::load() Gets a vector of all the unique entries
    OracleHomeInventory::load() starts to process the raw data of the YES to accumulate the primitive classes OPatch
    RAC::GetInstance()
    initializing racType
    RAC::getClusterNodes()
    call OiiOracleHomeInfo::getNodeList()
    OiiiOracleHomeInfo::getNodeList() returned 0 items.
    RAC::getClusterNodes() returns a list of items from 0.
    The user has not used - no_inventory, then why clusterNodes are empty?
    clusterNodes is null or empty, set racType to NO_RAC
    checkIfSidAddition()
    OracleHomeInventory::load()
    OracleHomeInventory::load() Gets a vector of all categories of products
    OracleHomeInventory::load() Gets a vector of all the unique entries
    OracleHomeInventory::load() starts to process the raw data of the YES to accumulate the primitive classes OPatch
    ApplySession::processConflict()
    PrereqAPI::checkConflictAgainstOHWithDetail()

    Number of Oneoffs in the Oracle home: 0
    PrereqAPI::checkConflictAgainstOH()

    List of patches on which runs the prereq InterConflict are:
    11879896
    OneOffEntry::getBugIDsFixed()
    OneOffEntry::getBugIDsFixed() returns 1 bugs.

    There is no conflict/supersets.
    PREREQ checkConflictAgainstOHWithDetail Passed
    Run all the prereqs associated with apply.

    Prior running check...

    Checking prerequisites 'CheckForInputValues '...
    PrereqAPI::checkForInputValues()
    Input values is present for all the shares of the given patches.

    Checking prerequisites 'CheckSystemSpace '...
    PrereqAPI::checkSystemSpace()

    Find the total space required...

    Space required for patches are total: 11865356

    Checking if a space is present on the disk...

    Amount of required space is available on the disk.
    PREREQ checkSystemSpace Passed
    Enough space system is available.

    Checking prerequisites 'CheckPatchApplicableOnCurrentPlatform '...
    PrereqAPI::checkPatchApplicableOnCurrentPlatform()
    Read the platforms for patch11879896

    Genereic 0est platform ID specified for the patch: 11879896
    All the given patches are applied on the current platform.

    Checking prerequisites 'CheckSystemCommandAvailable '...
    PrereqAPI::checkSystemCommandAvailable()
    Rules: shouldSearchOrInvokeFuser()
    the user did not OPATCH_NO_FUSER but executable list is null or empty, return false.

    PatchObject: Patch will need of following commands:
    --------------------------------------------------------------------
    Archives of fuser need do sqlplus ptlpatch mkpatch
    false false false false false false
    --------------------------------------------------------------------
    Do the sqlplus ptlpatch Archives of fuser mkpatch
    true true true true true true


    All the required commands are available.
    PREREQ checkSystemCommandAvailable Passed
    All required system controls are present.

    Checking prerequisites 'CheckActiveFilesAndExecutables '...
    PrereqAPI::checkActiveFilesAndExecutables()

    Fuser invoking the executable list...
    getCommandInPropertyFiles(): command search 'fusion' in the file properties "properties."
    Path in the real estate records merged: / sbin: / usr/sbin: / usr/local/sbin
    check on "/ sbin/fuser unit.
    found ' / sbin/fuser unit.
    getCommandInPropertyFiles(): command search 'fusion' in the file properties "properties."
    Path in the real estate records merged: / sbin: / usr/sbin: / usr/local/sbin
    check on "/ sbin/fuser unit.
    found ' / sbin/fuser unit.

    There is no executable assets.
    PREREQ checkActiveFilesAndExecutables Passed
    None of the executables is active.

    Checking prerequisites 'CheckApplicable '...
    PrereqAPI::checkApplicable() check whether each Action is applicable
    PrereqAPI::checkComponents()
    PrereqAPI::checkComponents search required components.
    OracleHomeInventory::haveComponents()
    There are 1 items to check.
    Patch (component to check) Component is "oracle.sysman.console.db", "11.2.0.2.0", required = "true".
    OracleHomeInventory::haveComponents(): installInventory.getCompInvEntries () on 'oracle.sysman.console.db', '1' = homeIndex returns 1 components.

    Installed process component 'oracle.sysman.console.db', version '11.2.0.1.0 '.
    Installed control product: name = "oracle.sysman.console.db', version = '11.2.0.1.0'
    Installed Comp > < Patch Comp:
    Installed the Comp Version later than Patch Comp = false
    Installed model can replace Patch Comp = false
    Install the Comp Version is equal to or later than the Comp Patch: fake
    Comp. req. not in the inventory OH: oracle.sysman.console.db, 11.2.0.2.0
    Patch 11879896 : Required or missing components: [oracle.sysman.console.db, 11.2.0.2.0]
    PrereqAPI::checkComponents search option components.
    OracleHomeInventory::haveComponents()
    OracleHomeInventory::haveComponents() Gets an empty list. Nothing to do, returns a list return empty.
    The prerequisite checking 'CheckApplicable' failed.
    The details are:
    Patch 11879896 : Required or missing components: [oracle.sysman.console.db, 11.2.0.2.0]
    System intact, OPatch will not attempt to restore the system
    Locker: release()
    OUISessionManager::unRegister()
    Registration not calling: OPatch
    Locker: release() removes /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_locked
    Locker: release() creates /u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_free
    Cleaning of the directory: ' / u01/app/oracle/product/11.2.0/home11gR2/.patch_storage/patch_unzip '...

    OPatch failed with the error code 74

    Well its quite obvious, isn't?

    Check installed product: name="oracle.sysman.console.db", ver="11.2.0.1.0"
    ...
    Patch 11879896: Required component(s) missing : [ oracle.sysman.console.db, 11.2.0.2.0 ]
    

    11.2.0.1 vs 11.2.0.2

  • Very strange Type constraint error...

    Hello world

    I ran into trouble with my request to refactor. This code is used inside a module loaded with the ModuleManager...

    Aren't exactly the same package and class!

    (copy and paste Console Flex)
    TypeError: Error #1034: Type coercion failed: cannot convert com.terrainmarketing.stv.common.vo::NoteVO@15231881 to com.terrainmarketing.stv.common.vo.NoteVO.
    to com.terrainmarketing.stv.modules.directory.view.renderers::NoteListRenderer/get note() [/ Users/duch/Documents/Flex Builder 3/STV_1.0_Pipes/src/com/terrainmarketing/stv/modules/directory/view/renderers/NoteListRen derer.mxml:63]

    I'm... What happens and how can I "fix" this?

    Thank you all!

    Well, I tried using mxmlc but it will not for tonight. I would need to use XML as a guideline for an ant task, but I've never done this (and I never know what I just write how...) and it is very late in the night, I have to finish this project tomorrow.
    I will not create a SharedCode.swf module.

    Instead, and it seems that it works, I will use all my classes of common modules in my main application, somewhere in the initialization process.
    I use mutlicore pureMVC framework and its usefulness for Pipe.

    And of course when I load my modules, I pass the field of main application for them.

    Here is my code:

  • DOWNLOAD OF BOOKS IN LIBRARY

    I am trying to download a book from library.  I get the error message: cannot download. license to make mistake.  License server Communicion problem. E-FLOW ERROR

    Contact the library who check the library downloadserver.

  • Manager server with multiple instances CF10

    Hello

    I'm having some trouble connecting to instances of ColdFusion I installed the 64 bit with CF10 RHEL6.1.

    If I just add a single server that points to the default cfusion instance

    Host: 192.168.0.10

    Port: 8500

    Server Manager connects and I can view the settings.

    If I then add a second server that points to an instance newly packed

    Host: 192.168.0.10

    Port: 8501

    The ability of the server to connect to an instance manager becomes poor at best. I can't do a diff of parameters if they both happen to connect.

    I need to enable something specific in the admin of each instance?

    See you soon,.

    Simon

    LCD SCREEN? You mean livecycle dataservices? If I google (based on the message shown in the screenshot):

    double Server session manager

    I get this as the first hit: http://www.shilpikhariwal.com/2010/08/duplicate-flex-session-error-in-server.html

    It seems that it may be just what you need, especially in light of your next note on running multiple instances. (Not sure of the impact of J2EE session vars).

    Let us know if that helps.

    /Charlie

  • By passing a value &lt; mx:Repeater &gt; to a click function

    Hello everyone.

    I just started using Flex and encountered a problem when parsing of an XML file in a flex application.

    Everything works fine, it's just a tiny part of few of my application, I can't understand, I can't find a solution via Google:

    < mx:Repeater id = dataProvider = "{entries.currentItem.elements ('events')}" >
    < mx:Text text = "{events.currentItem.name}" click = "navigateToURL (new URLRequest (events.currentItem.url), '_blank')" / > ""
    < / mx:Repeater >

    FlexBuilder shows any errors, and the Application runs fine until I click on this text.

    Can I get an errormessage from the currently running Flash application:

    TypeError: Error #1010: a term is undefined and has no properties.

    I tried many things to pass the " " ' events.currentItem.url ' value (that I have read in an XML file) for this Actionscript. Nothing seems to work. Is it still possible?

    I tried other things:

    "{click =" {}navigateToURL (new URLRequest (events.currentItem.url), '_blank')}"

    No error in Flex, same error in live app. As far as I can tell it's the same thing anyway.

    a click = "navigateToURL (new URLRequest ({} {events.currentItem.url}), '_blank')" "

    FlexBuilder error since the value click area already is Actionscript, right?

    a click = "navigateToURL (new URLRequest ('http://www.test.com'), '_blank')" "

    URL hardcoded that works very well, but does not help me because I need the URL from the XML

    Can someone help or offer a simple alternative?

    Thank you very much!


    Hello

    After the end of a repeat repeat element, do not use the Repeater.currentItem property to get the current item. Instead, call the getRepeaterItem() of the repeated item itself.

    Change your handler like this

    function OnClickText(e:Event):void {}

    var strUrl:String = event.currentTarget.getRepeaterItem (.url);

    navigateToURL (new URLRequest (strUrl), '_blank');

    }

  • To display the Panel of the accordion and to modify the text inside at the same time, is it possible?

    What I want to do is change the text on the component - button, which is in a container - accordion, but I always fail at first, flex reports error "null." I'm clear on the reason, because I have never
    initialize that accordion, but hopefully show the accordion panel and modify the text
    Furthermore, is it possible?
    It will be appreciated any suggestions in this regard.

    "augur_guan" wrote in message
    News:g7uoo9$c7r$1@forums. Macromedia.com...
    > What I want to do is change the text on the component - button, which
    > is in
    > a container - accordion, but I always fail at first, flex reports
    > "null" error. I'm clear on the reason, because I have never
    > initialize the accordion, but hopefully show the accordion panel and change
    > the
    > text to
    > also, is it possible?
    > It will be appreciated any suggestions in this regard.

    If you don't care startup performance, you can set the creationPolicy
    on the accordion at all. Otherwise, you can try either using a test
    (like creationComplete on the button) or use data binding to 'pull' data
    in the button once it is initialized.

    HTH;

    Amy

  • Adding MXML components

    Can someone clarify something for me?

    I have a component that is a HBox. It has a couple of variables that can be linked and many layouts., and I called him MyNewHBox.

    in my main application file, I wanted to go in the section script and add X number of MyNewHBox in my application tabnavigation, yet I can not understand how do. In the code below, I wanted to add 5 MyNewHBoxes new browser of my tab but it keeps the slightest mistake. What is the correct syntax? MyNewHBox.mxml is located at the root.

    Import MyNewHBox;

    function loadHBoxes:void {}

    var newBox:MyNewHBox; -This error line
    for (y = 0; y < 5; y ++) {}
    newBox = new MyNewHBox;
    newBox.customName = "My Name is" + y;
    tabNav.addchild (MyNewH);
    }

    }

    Thanks in advance for the help!

    Sorry all, my syntax is good, just had a small typo causing Flex launch error messages. My bad :( It's been fixed! :)

  • Developers cannot access CFCS, but users can

    I'm developing an application using Flex and ColdFusion. I'm done with the coding and you want to move the application to a "Production" Server To make sure of Flex and ColdFusion spoke, we used the sample HelloWorld application to test the connection. HelloWorld works for me on my 'Development' server, but not on the server of "Production". The real mystery is that there is no problem for other people running the production version of HelloWorld. Only me and another developer Flex get error "Client.Error.MessageSend" when you try to run the application. The production and development of the HelloWorld versions work fine for everyone. Has anyone experience this problem and if yes do you know a solution.

    After a few days of checking the settings, by clearing my cache and cookies, reboot my machine and various services on the servers, nothing worked. We tried again on my machine this morning that he did not. The server administrator then checked some of my browser settings have not been able to find anything out of the ordinary and tried again the page and it worked. We tried the page on the developers machine, and it worked also. We do not know what happened, but we're not complaining. It's just frustrating not knowing where it happens again (if we wanted to set up another server). In any case, I appreciate all the help.

  • Error "Unable to read your flow." for RSS valid

    I'm looking to submit a custom podcast created to Apple via Connect of Podcasts. I'm getting an error "Unable to read your flow." wave without telling me what exactly is the problem.

    Food is works well in iTunes and check completely clean in the RSS W3 validator: e https://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fsassaman.com%2Frss%2Fcc

    I manually added the stream iTunes (version 12.3.2.35 on Windows 10) and it worked great for awhile. Every Sunday I add another episode of the feed and it downloads in iTunes, syncing my iPhone, everything works fine.

    Headers of the response of the application of wire - rss look good, correct content type and encoding. Food is displayed correctly in FireFox as well:

    HTTP/1.1 200 OK

    Cache-Control: private

    Content-Type: application/rss + xml; charset = utf-8

    Server: Microsoft-IIS/8.0

    X AspNetMvc-Version: 5.2

    X-AspNet-Version: 4.0.30319

    Date: Wednesday, February 24, 2016 02:13:22 GMT

    Content-Length: 21997

    So I can think of all possible tests the food is valid, including widely validated by Mark I eyeball that all tags are good. I'm puzzled.

    The only thing I wonder is that iTunes is somehow an analysis of enclosure and dislikes served from static links on Vimeo.com boxes? I wish there was some sort of mistake, I don't have an idea why it cannot read my podcast.

    Food seems to be OK. You have no episode 'itunes:subtitle' or 'itunes:summary' tags so your episodes show no description, but it would not have prevented the store read the stream. The episodes seem OK - the URL begins with https rather than http, but this used to be a problem it seems to be now. If they had problems with real media files episode the error message would say that they were "difficult to download episodes from your stream.

    So I don't know what the problem is. Maybe your server because the power is negative reaction to specific applications on the iTunes Store - this has been known to occur even though it is unusual - while being OK with the iTunes application and browsers. You can try to ask for the support of aid, but essentially they will only address problems at their end, not yours. Go to https://itunespartner.apple.com/en/podcasts/overview and click on the link "Contact us" at the bottom of the page.

Maybe you are looking for

  • Problem of size (120 DPI) fonts in Vista

    Hi all. I have problem with vista 120 DPI font size. You can see on the screenshots - I can't drag and drop icons from the office down. May is ' t because of the screen. I do not know. My model of Nooteboom - 'A300 15J. http://img254.imageshack.us/do

  • ActiveX and Camembert problem

    I am trying to create a bar of pie chart in Excel 2003. I am able to insert my data and create the graph, but I need to put the "SplitValue' for 6. I was able to find the property to achieve this, but I get an error when I run the vi (see table).  An

  • Outlook express won't jpeg files attached to email

    I use Windows XP and Microsoft Outlook Express 6 version 6.00.2900.  If I get an email with an attached jpeg file get he message 'OE removed the following a dangerous attachment in your mail.'  This will happen when I get attachments of JPEGs of some

  • speaker from taskbar - Windows XP volume icon

    Although the "Sounds and Audio Devices Properties" appear to be configured correctly, the speaker volume icon is missing from the taskbar.  I think that this began after I have installed Kaspersky Internet Security 11.0.2.556.  What can I do to resto

  • How to password protect a folder

    I want the password protect a folder that contains several excel files.