Security on Variable?

hello!  when i run a report i get company code on my selection screen, but when my colleage runs the report company code is missing.
any ideas why he's getting a different selection screen for the same report?
thanks!

Check whether he has the variable personalized, if you have a variable personalized it will not be displayed in the variable screen
Thanks.

Similar Messages

  • System.security() && _global.variables

    Hi,
    I'm using a container .swf, loaded over HTTP to bring in some
    forms over HTTPS.
    I have tried using System.security.allowDomain(); and
    System.security.allowInsecureDomain();
    in the container and form respectively to no avail.
    Does anybody have experience of achieving synchronous global
    variable access across
    these protocols?

    fixed it myself!
    What happened is this: after half a year, a second programmer started working on this project. He pulled the project from subversion, including the pfx, which was in the app-data directory, somehow, he has replaced it with a different pfx file, with a different
    private key and committed this to subversion and thats how this different pfx found its way to my solution and caused thisi error.

  • Security for Administrator Role in 11.1 and Upgrades

    Our Essbase is still on 6.5 with three applications/DB. I'd like to know:
    1. How much efforts to upgrade to 11.1. What are the most time consuming tasks in such upgrade.
    2. Can admin role be set up for ONLY one application/db, including user security, group, variables...
    Thanks for your responses.

    The amount of effort depends on your IT staff, number of users, and number of cubes. This could be anywhere from a few weeks for a small environment to a few months for a large environment.
    Major steps:
    Hardware procurment (hen going from 6.5 you can expect to purchase a whole new hardware environment)
    Installation of Hardware
    Installation of Software
    Data export from 6.5
    Data import to 11.x
    Exeuction of scripts to calc 11.X data
    Export/Import of security (Filters, Groups,Users)
    Update of client software (Add-in)
    Financial Reports Export/Import (if you use them)
    Update of all automation scripts (this one can really take a lot of time. One of my large clients had 1600 scripts on Unix -- we wrote automation to update all the paths for this one)
    Regards,
    John A. Booth
    http://www.metavero.com

  • Extracting username and password from security header

    Hey all,
    I'm writing a BPEL process that invokes two secured web services. One of them authenticates using Username Token and the other has a authenticate method in which the username and password are supplied as Strings. I have successfully propagated the credentials from the BPEL process to the web service using Username Token by doing the following:
    1) I secured my BPEL process
    2) I imported oasis-200401-wss-wssecurity-secext-1.0.xsd and from it created a variable of type Security
    3) I added the security variable to the Header Variables for the BPEL process input
    4) I added the security variable to the Input Header Variables for the web service's invoke operation
    This worked fine. However, I need to be able to extract out the username and password and supply them as Strings to the authenticate method of the other web service. How can this be done? If it can't, what are some alternatives?
    Environment:
    JDeveloper 11.1.1.6.0
    Thanks,
    Bill

    Hi Sri,
    If I understand your steps correctly, I think the problem I'm having rests with the second step. I don't know how to get a hold of the username and password to assign to the local variables you mention. The BPEL process itself uses Username Token for authentication. These credentials need to be passed to the web services invoked within the BPEL process. If I assign the security header variable directly to the string output for the BPEL process, the string returned will be the complete XML security header, which includes the username and password. However, the security header variable itself doesn't expose the username and password directly. In other words, I can't expand the security header variable node in the dialog for editing the Assign operation and get to the username and password. I think one solution is to parse out the username and password from the complete XML security header using string operations (substring, index-within-string, etc). Also, regarding step 4, I'm not sure if passing the credentials in the header will work for this web service. I think the web service is expecting the credentials as parameters to its authenticate method.
    Thanks,
    Bill

  • Powershell script monitor with encrypted password

    I have created a powershell script based monitor in my management pack and everything is ok but I can't get my credentials work inside the script. I want to open pssession to another computer with my credentials. I have triple checked that my pssession is
    working because I can access it from powershell console.
    This works perfectly at local server from PSconsole:
    $EncryptedPassword ="01000000d08c9ddf0115d1118c7a00c04fc297eb01000000534b2....etc...etc..."
    $pw = convertto-securestring -String $EncryptedPassword
    $cred = new-object System.Management.Automation.PSCredential -argumentlist "MyDOMAIN\MyACCOUNT",$pw
    $s = New-PSSession -ComputerName "MyServer" -Port MyPort -Credential $cred
    But when I run the same lines inside my management pack the convertto-securestring
    does nothing, it just wont convert the encrypted password to secure string!
    I have tried this plain text method and it works
    inside my management pack, but I don't want to use it because you can see the password in plain text:
    ConvertTo-SecureString -String "myPlainTextPassword" -AsPlainText -Force
    This is the $error variable, so it's basically says that I don't have anything in the password secure string variable because the convertion did not work for some reason:
    The argument is null. Provide a valid value for the argument, and then try running the command again. Cannot process argument transformation on parameter 'Credential'. PromptForCredential Exception calling ".ctor" with "2" argument(s):
    "Cannot process argument because the value of argument "password" is null. Change the value of argument "password" to a non-null value." The system cannot find the file specified. Exception calling "SecureStringToBSTR"
    with "1" argument(s): "Value cannot be null. Parameter name: s" The system cannot find the file specified. Exception calling "SecureStringToBSTR" with "1" argument(s): "Value cannot be null. Parameter name: s"
    The system cannot find the file specified. 
    So is there some known issue with SCOM Agent / management pack when you are dealing with convertto-securestring
    function with encrypted passwords?
    I used these methods to encrypt the password: Technet article about encryption

    I got it to work!
      <TypeDefinitions>
        <EntityTypes>
          <ClassTypes>
            <ClassType ID="MyClass" Accessibility="Public" Abstract="false" Base="Windows!Microsoft.Windows.LocalApplication" Hosted="true" Singleton="false" Extension="false"
    />
          </ClassTypes>
        </EntityTypes>
        <SecureReferences>
          <SecureReference ID="MyRunAsAccountProfile" Accessibility="Public" Context="System!System.Entity" />
        </SecureReferences>
    <ScriptBody>param (
      [string]$Username,
      [string]$Password
    $API = new-object -comObject "MOM.ScriptAPI" 
    $PropertyBag = $API.CreatePropertyBag()
    $cred = New-Object System.Management.Automation.PSCredential -Argumentlist @($Username,(ConvertTo-SecureString -String $Password -AsPlainText -Force))
    $s = New-PSSession -ComputerName "myserver" -Credential $cred
    Invoke-Command -Session $s -ScriptBlock { $service = Get-Service -Name Spooler}
    $invcom = Invoke-Command -Session $s -ScriptBlock { $service.status}
    Remove-PSSession -Id $s.Id
    if ($invcom.Value -ne "Running") {
    $PropertyBag.AddValue("State","ERROR") 
    $outputLongLine = "Spooler Service is not running on target server!" 
    $PropertyBag.AddValue("Description", $outputLongLine)
    else {
    $PropertyBag.AddValue("State","OK") 
    $outputLongLine = "Spooler is Running on target server."
    $PropertyBag.AddValue("Description", $outputLongLine) 
    $PropertyBag</ScriptBody>
    <Parameters>
    <Parameter>
    <Name>Username</Name>
     <Value>$RunAs[Name="MyRunAsAccountProfile"]/Domain$\$RunAs[Name="MyRunAsAccountProfile"]/UserName$</Value>
    </Parameter>
    <Parameter>
    <Name>Password</Name>
    <Value>$RunAs[Name="MyRunAsAccountProfile"]/Password$</Value>
    </Parameter>

  • How to set proxy while deploying a bpel proxy?

    Hi All,
    How can i set proxy while deploying a bpel process. I'm trying to deploy an async bpel process that requires proxy to be set coz to access one of the xsd file requires to go thru a proxy. I have actually set proxy in the following files, setenv.bat and bpel-install.properties under location soa_home\bpel\bin and soa_home\bpel\system\services\install\ant-tasks respectively. When i try to deploy the process through obant.bat, it compiles file but gives an error while deploying stating that it is not able to access the xsd file. While compiling, the proxy setting is taken from setenv.bat and hence compiles successfully, but while deploying it doesn't seem to take the proxy setting set in bpel-install.properties file. Can anyone help me out as to how i can set proxy while deploying???? I'm using soa suite 10.1.3.3.
    The following is the log file of obant execution :
    C:\JDeveloper\jdev\mywork\Async\PSFTAsyncCalcClient>SETLOCAL
    ** OBANT is now deprecated. This will be removed in
    ** the next release. You should use ANT instead.
    Buildfile: build.xml
    Trying to override old definition of task customize
    pre-build:
    validateTask:
    [echo]
    [echo] --------------------------------------------------------------
    [echo] | Validating workflow
    [echo] --------------------------------------------------------------
    [echo]
    [validateTask] Validation of workflow task definitions is completed without errors
    compile:
    [echo]
    [echo] --------------------------------------------------------------
    [echo] | Compiling bpel process PSFTAsyncCalcClient, revision 1.0
    [echo] --------------------------------------------------------------
    [echo]
    [bpelc] validating "C:\JDeveloper\jdev\mywork\Async\PSFTAsyncCalcClient\bpel\PSFTAsyncCalcClient.bpel" ...
    [bpelc] BPEL suitcase generated in: C:\JDeveloper\jdev\mywork\Async\PSFTAsyncCalcClient\output\bpel_PSFTAsyncCalcClient_1.0.jar
    deployProcess:
    [echo]
    [echo] --------------------------------------------------------------
    [echo] | Deploying bpel process PSFTAsyncCalcClient on 10.176.162.42, port 8888
    [echo] --------------------------------------------------------------
    [echo]
    [deployProcess] Deploying process C:\JDeveloper\jdev\mywork\Async\PSFTAsyncCalcClient\output\bpel_PSFTAsyncCalcClient_1.0.jar
    BUILD FAILED
    C:\JDeveloper\jdev\mywork\Async\PSFTAsyncCalcClient\build.xml:79: A problem occu
    red while connecting to server "10.176.162.42" using port "8888": bpel_PSFTAsync
    CalcClient_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "P
    SFTAsyncCalcClient" (revision "1.0"): BPEL validation failed.
    BPEL source validation failed, the errors are:
    [Error ORABPEL-10902]: compilation failed
    [Description]: in "bpel.xml", XML parsing failed because "undefined part element
    In WSDL at "http://localhost/PSIGW/PeopleSoftServiceListeningConnector/ASYNCPSFT
    CALC.1.wsdl", message part element "{http://xmlns.oracle.com/Enterprise/Tools/sc
    hemas/PSFTCALCRESPONSEMESSAGE.V1}PSFTCalcResponseMessage" is not defined in any
    of the schemas.
    Please make sure the spelling of the element QName is correct and the WSDL impor
    t is complete.
    [Potential fix]: n/a.
    If you have installed a patch to the server, please check that the bpelcClasspat
    h domain property includes the patch classes.
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.bind(CubeProcessHolder.j
    ava:285)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(Deployment
    Manager.java:862)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(Deploymen
    tManager.java:728)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDomainMana
    gerBean.java:445)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.
    java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoin
    PointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSIntercept
    or.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASIntercep
    tor.java:31)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:646)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterce
    ptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxReq
    uiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSIntercept
    or.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.ja
    va:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(Stateless
    SessionEJBObject.java:87)
    at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)
    at com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHandle.java:
    319)
    at com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandle.java:3
    41)
    at deployHttpClientProcess.jspService(_deployHttpClientProcess.java:376)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.jav
    a:65)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispat
    cher.java:623)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequ
    estDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandl
    er.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler
    .java:453)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandle
    r.java:221)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketRead
    Handler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAc
    ceptHandler.java:239)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHa
    ndler.java:34)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSo
    cketAcceptHandler.java:880)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableRes
    ourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Total time: 44 seconds
    C:\JDeveloper\jdev\mywork\Async\PSFTAsyncCalcClient>obant >>C:\log.txt
    BUILD FAILED
    C:\JDeveloper\jdev\mywork\Async\PSFTAsyncCalcClient\build.xml:79: A problem occu
    red while connecting to server "10.176.162.42" using port "8888": bpel_PSFTAsync
    CalcClient_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "P
    SFTAsyncCalcClient" (revision "1.0"): BPEL validation failed.
    BPEL source validation failed, the errors are:
    [Error ORABPEL-10902]: compilation failed
    [Description]: in "bpel.xml", XML parsing failed because "undefined part element
    In WSDL at "http://localhost/PSIGW/PeopleSoftServiceListeningConnector/ASYNCPSFT
    CALC.1.wsdl", message part element "{http://xmlns.oracle.com/Enterprise/Tools/sc
    hemas/PSFTCALCRESPONSEMESSAGE.V1}PSFTCalcResponseMessage" is not defined in any
    of the schemas.
    Please make sure the spelling of the element QName is correct and the WSDL impor
    t is complete.
    [Potential fix]: n/a.
    If you have installed a patch to the server, please check that the bpelcClasspat
    h domain property includes the patch classes.
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.bind(CubeProcessHolder.j
    ava:285)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(Deployment
    Manager.java:862)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(Deploymen
    tManager.java:728)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDomainMana
    gerBean.java:445)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.
    java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoin
    PointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSIntercept
    or.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASIntercep
    tor.java:31)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:646)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterce
    ptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxReq
    uiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSIntercept
    or.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationC
    ontextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.ja
    va:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(Stateless
    SessionEJBObject.java:87)
    at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)
    at com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHandle.java:
    319)
    at com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandle.java:3
    41)
    at deployHttpClientProcess.jspService(_deployHttpClientProcess.java:376)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.jav
    a:65)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispat
    cher.java:623)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequ
    estDispatcher.java:370)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandl
    er.java:871)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler
    .java:453)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandle
    r.java:221)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketRead
    Handler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAc
    ceptHandler.java:239)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHa
    ndler.java:34)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSo
    cketAcceptHandler.java:880)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableRes
    ourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Total time: 39 seconds
    C:\JDeveloper\jdev\mywork\Async\PSFTAsyncCalcClient>ENDLOCAL
    Thanks in advance...

    Hi all
    I want to connect a secured web service from BPEL 10g. There are no compilation errors. I am getting getting while deploying to BPEL Console.
    I am attaching the full console log.
    I am using JDeveloper 10.1.3.4. I am not getting any error when i deploy from my home PC. I am getting problem in my office only. There may be some blocks for some external URL. I am not able to find out how to resolve the issue.
    I am looking into it... Can you please help me out????
    I am attaching the console log from JDeveloper
    ======================================================================================
    Buildfile: D:\Debarshi\AllWorkspace\CRMOnDemandApplication\AccountObjectProject\build.xml
    [java] Java Result: 1
    validateTask:
    [echo]
    | Validating workflow
    [validateTask] Validation of workflow task definitions is completed without errors
    deployProcess:
    [echo]
    | Deploying bpel process AccountObjectProject on CTSINCALSDV8, port 80
    [deployProcess] Deploying process D:\Debarshi\AllWorkspace\CRMOnDemandApplication\AccountObjectProject\output\bpel_AccountObjectProject_1.0.jar
    BUILD FAILED
    D:\Debarshi\AllWorkspace\CRMOnDemandApplication\AccountObjectProject\build.xml:78: A problem occured while connecting to server "CTSINCALSDV8" using port "80": bpel_AccountObjectProject_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "AccountObjectProject" (revision "1.0"): BPEL validation failed.
    BPEL source validation failed, the errors are:
    [Error ORABPEL-10010]: unresolved element
    [Description]: in line 57 of "C:\product\10.1.3.1\OracleAS_1\bpel\domains\default\tmp\.bpel_AccountObjectProject_1.0_c395168db42709156a3350fd7efbeaeb.tmp\AccountObjectProject.bpel", XML element "{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security" of variable "SecurityHeaderVar" is not defined.
    [Potential fix]: Make sure the XML element "{http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security" is defined in one of WSDLs that are referenced by the deployment descriptor.
    If you have installed a patch to the server, please check that the bpelcClasspath domain property includes the patch classes.
    at com.collaxa.cube.engine.deployment.CubeProcessHolder.bind(CubeProcessHolder.java:285)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deployProcess(DeploymentManager.java:804)
    at com.collaxa.cube.engine.deployment.DeploymentManager.deploySuitcase(DeploymentManager.java:670)
    at com.collaxa.cube.ejb.impl.BPELDomainManagerBean.deploySuitcase(BPELDomainManagerBean.java:445)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
    at com.evermind.server.ThreadState.runAs(ThreadState.java:620)
    at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    at DomainManagerBean_RemoteProxy_4bin6i8.deploySuitcase(Unknown Source)
    at com.oracle.bpel.client.BPELDomainHandle.deploySuitcase(BPELDomainHandle.java:317)
    at com.oracle.bpel.client.BPELDomainHandle.deployProcess(BPELDomainHandle.java:339)
    at deployHttpClientProcess.jspService(_deployHttpClientProcess.java:376)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Total time: 12 seconds
    =========================================================================================
    Thanks in advance
    Deb

  • Create domain failure when installing forms 11gr2

    I am trying to install forms 11gr2(11.1.2) 64 bit on a windows 7 64 bit OS. I have installed JDK 1.6.0_31 64 bit Java. I installed WLS 10.3.5 and did not run the quickstart or da any configuration. I installed forms 11gr2 without configuration option. When completed installing forms 11gr2 I went to start bar and selected configure classic instance. I select the defaults and it tries to configure. I keep getting failed when trying to create domain. I checked various articles and most have pointed to spaces in path statement. I ave created to junctions to Program Files and Program Files (x86). I changed the path statement and any other system variable that pointed to one of those directories. As a side note, I reboot everytime I make a change. The following is the last part of the log file showing the actual error.
    [2012-05-04T08:47:35.853-04:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [SRC_CLASS: oracle.as.install.engine.modules.presentation.PresentationModule] [SRC_METHOD: processModuleEvent] PRESENTATION MODULE RECEIVED EVENT ID: 12201
    [2012-05-04T08:50:39.464-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: C:\oracle\Middleware\FRHome/jlib/ossoreg.jar
    [2012-05-04T08:52:19.529-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: C:\oracle\Middleware\FRHome/jlib/jazn.jar
    [2012-05-04T08:52:19.529-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: C:\oracle\Middleware\FRHome/jlib/ldapjclnt9.jar
    [2012-05-04T08:52:19.529-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: ORACLE_HOME%/jdbc/lib/ojdbc6.jar
    [2012-05-04T08:52:19.529-04:00] [as] [WARNING] [] [oracle.as.install.engine.modules.configuration.client.ConfigActionClassLoader] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [Action]: Application Configuration. Library not found: C:\oracle\Middleware\FRHome/jlib/repository.jar
    [2012-05-04T08:52:20.138-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Setting data for action:Application Configuration
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CREATE_DOMAIN
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:EXTEND_DOMAIN
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:EXPAND_CLUSTER
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:DOMAIN_HOME_PATH
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:ClassicDomain to variable:DOMAIN_NAME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware\user_projects\domains to variable:DOMAIN_LOCATION
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:KBALD138H93R.acct03.us.lmco.com to variable:DOMAIN_HOSTNAME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:DOMAIN_PORT
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:weblogic to variable:ADMIN_USER_NAME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:ADMIN_PASSWORD
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware to variable:MW_HOME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware\wlserver_10.3 to variable:WL_SERVER_HOME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware\FRHome to variable:ORACLE_HOME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:C:\oracle\Middleware\asinst_1 to variable:INSTANCE_HOME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:asinst_1 to variable:INSTANCE_NAME
    [2012-05-04T08:52:20.178-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_PORTAL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_REPORTS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_FORMS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_DISCO
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_FORMS_BUILDER
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_REPORTS_BUILDER
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_OHS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_WEBCACHE
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_MANAGEMENT_COMPONENT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_ORACLE_CONFIGURATION_MANAGER_DETAILS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CREATE_CLUSTERED
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:0 to variable:PORT_LOCATION
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:AUTOMATIC_PORT_DETECT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:STATICPORT_INI_FILE_LOCATION
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:DO_NOT_USE_PROXY_SETTINGS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:ENABLE_PROXY
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:proxy1.global.lmco.com to variable:PROXY_HOST
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:8080 to variable:PROXY_PORT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:PROXY_BYPASS
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:DATABASE_CONNECTION_STRING
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:IS_DISCOVERER_DS_NEEDED
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:IS_PORTAL_DS_NEEDED
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:IS_PORTLET_DS_NEEDED
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:DISCOVERER_SCHEMA_NAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:PORTAL_SCHEMA_NAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:PORTLET_SCHEMA_NAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:DISCOVERER_SCHEMA_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:PORTAL_SCHEMA_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:PORTLET_SCHEMA_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:UPGRADE_PORTAL_SCHEMA
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:USE_OID
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:USE_SSO
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:USE_OAM
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OID_HOST
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OID_PORT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OID_USERNAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:OID_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:OID_USE_SSL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OAM_HOST
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OAM_PORT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:OAM_USERNAME
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:<SECURE> to variable:OAM_PASSWORD
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:null to variable:CONFIGURE_PORTAL_AGAINST_DEDICATED_REPOSITORY
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:PORTAL_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:FORMS_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:REPORTS_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:DISCO_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:DISCO_PLUS_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:EM_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:EMAGENT_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value: to variable:ADMIN_CONSOLE_URL
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_FORMS_ENVIRONMENT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_REPORTS_ENVIRONMENT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:true to variable:CONFIGURE_FOR_DEVELOPMENT
    [2012-05-04T08:52:20.188-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Assigning value:false to variable:CONFIGURE_FOR_DEPLOYMENT
    [2012-05-04T08:52:20.188-04:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange] [CONFIG PAGE] New Description: Application Configuration
    [2012-05-04T08:52:20.198-04:00] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange] [CONFIG PAGE] Old Description: Application Configuration
    [2012-05-04T08:52:20.218-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Setting valueOf(DOMAIN_HOME_PATH) to:C:/oracle/Middleware/user_projects/domains/ClassicDomain. Value obtained from:USER
    [2012-05-04T08:52:21.788-04:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Setting valueOf(DOMAIN_PORT) to:7001. Value obtained from:USER
    [2012-05-04T08:52:25.317-04:00] [as] [TRACE:16] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [SRC_CLASS: oracle.as.install.classic.ca.standard.ClassicConfigMain] [SRC_METHOD: doExecute] ENTRY
    [2012-05-04T08:52:30.352-04:00] [as] [WARNING] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] CSF Entries will not be parsed since the AdminServer is unreachable
    [2012-05-04T08:52:30.392-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Executing a Jaxb workflow ...
    [2012-05-04T08:52:30.392-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Begining Oracle Fusion Middleware Configuration ...
    [2012-05-04T08:52:30.392-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] Begining Oracle Fusion Middleware Configuration ...
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] ENTRY ASDomain.createDomain
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] ENTRY ASDomain.createDomain
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: ENTRY........
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@5f2471dc
    [2012-05-04T08:52:30.422-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: 2........
    [2012-05-04T08:52:30.432-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: Set the Extion Id to START........
    [2012-05-04T08:52:30.432-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: Did the assignment...
    [2012-05-04T08:52:30.432-04:00] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] reportStartConfigAction: EXIT........
    [2012-05-04T08:52:30.432-04:00] [as] [ERROR] [] [oracle.as.provisioning] [tid: 13] [ecid: 0000JSNt26Z7u1t14fq2Vi1Fcwwd000004,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:339)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:662)
    Any help is appreciated as I have been trying to install the 64 bit forms and report developer products for a few weeks and keep receiving the same error. I have tried other versions, forms 11.1.1.2 and WLS 10.3.2, with the same results. Thanks in advance.

    I only have the 127.0.0.1 localhost entry uuncommented in the hosts file. Here is a copy of the .out file from the log directory as it might help for those more knowledgeable than myslef.
    Setting ORACLE_HOME to C:\oracle\Middleware\FRHome
    Setting Doracle.config.mode to true
    Adding C:\Users\675499\AppData\Local\Temp\OraInstall2012-05-04_11-11-29AM for deletion.
    Adding to classpath:file:/C:/Users/675499/AppData/Local/Temp/OraInstall2012-05-04_11-11-29AM/ext/jlib/classic.jar
    Adding to classpath:file:/C:/Users/675499/AppData/Local/Temp/OraInstall2012-05-04_11-11-29AM/ext/jlib/template.jar
    [email protected]lassicPage.ScreenRes
    configFileName:C:\Users\675499\AppData\Local\Temp\OraInstall2012-05-04_11-11-29AM\ext\jlib\footprint.xml
    Setting current page standalone validations to true
    Setting current page standalone validations to true
    Setting current page standalone validations to true
    resultset.getStatus() : true
    Setting collector hub url in screen:null
    Temp Buffer: C:\Oracle\Middleware;
    ExtendDomain: false          ExpandCluster: false
    wasExtendDomain: false          wasExpandCluster: false
    prevAdminServerURL:           adminServerURL: KBALD138H93R.acct03.us.lmco.comweblogic
    isFirstVisit:true
    Oracle Home = C:\oracle\Middleware\FRHome
    Setting current page standalone validations to true
    In processErrorMsgStringOracle Instance
    java.lang.UnsatisfiedLinkError: no GetVolumeInfo in java.library.path
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1737)
         at java.lang.Runtime.loadLibrary0(Runtime.java:823)
         at java.lang.System.loadLibrary(System.java:1028)
         at oracle.as.install.engine.modules.util.others.VolumeAPI.<clinit>(VolumeAPI.java:37)
         at oracle.as.install.common.handlers.fileQueries.ValidateHomeDirectory.checkIfFileSystemIsFAT32(ValidateHomeDirectory.java:398)
         at oracle.as.install.common.handlers.fileQueries.ValidateHomeDirectory.executeHandler(ValidateHomeDirectory.java:320)
         at oracle.as.install.engine.modules.handler.engine.HandlerLauncher$LaunchHelper.execute(HandlerLauncher.java:487)
         at oracle.as.install.engine.modules.handler.engine.HandlerLauncher$LaunchHelper.launch(HandlerLauncher.java:413)
         at oracle.as.install.engine.modules.handler.engine.HandlerLauncher.execute(HandlerLauncher.java:178)
         at oracle.as.install.engine.modules.handler.engine.HandlerEngine.execute(HandlerEngine.java:137)
         at oracle.as.install.engine.modules.handler.HandlerModule.performOperation(HandlerModule.java:455)
         at oracle.as.install.engine.modules.handler.HandlerModule.performInputValidations(HandlerModule.java:413)
         at oracle.as.install.engine.modules.handler.HandlerModule.processModuleEvent(HandlerModule.java:332)
         at oracle.as.install.engine.modules.util.PartnerModuleImpl.processEvent(PartnerModuleImpl.java:118)
         at oracle.as.install.engine.InstallEngine.notifyListeners(InstallEngine.java:626)
         at oracle.as.install.engine.InstallEngine.processEvent(InstallEngine.java:584)
         at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyAllEventListenersHelper(PartnerModuleImpl.java:227)
         at oracle.as.install.engine.modules.util.PartnerModuleImpl.notifyListeners(PartnerModuleImpl.java:191)
         at oracle.as.install.engine.modules.presentation.PresentationModule.executeModifiedDWizardEvent(PresentationModule.java:716)
         at oracle.as.install.engine.modules.presentation.ui.common.wizard.ModifiedDWizard.fireValidationEvent(ModifiedDWizard.java:3183)
         at oracle.as.install.engine.modules.presentation.ui.common.wizard.ModifiedDWizard.doNext(ModifiedDWizard.java:922)
         at oracle.bali.ewt.wizard.BaseWizard$Action.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6289)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6054)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4652)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:617)
         at java.awt.EventQueue$2.run(EventQueue.java:615)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    needWritableDirectory: false
    needWritableDirectory: true
    middlewareHomeLocation:C:\oracle\Middleware
    weblogicHomeLocation:C:\oracle\Middleware\wlserver_10.3
    weblogicHome:C:\oracle\Middleware\wlserver_10.3
    weblogicHomeLocation:C:\oracle\Middleware\wlserver_10.3
    In processErrorMsgStringInstance Name
    In processErrorMsgStringThe instance name may only contain alphanumeric and underscore (_) characters, and it must begin with an alphabetic character. The instance name must be at least 4 characters long and up to 30 characters long.
    In processErrorMsgStringOracle Home
    In processErrorMsgStringOracle Home Directory Name
    In [email protected]_OracleDirectoryInvalidErrorString
    Obtained the single page data..SpecifyClassicHomeInformationPage
    External name..INVALID_ORACLE_DIRECTORY_MSG_STRING
    resultset.getStatus() : true
    XXX: setting m_WLSHome to: C:\oracle\Middleware\wlserver_10.3
    Setting current page standalone validations to true
    In processErrorMsgStringDomain Name
    In processErrorMsgStringThe value may only contain alphanumeric characters, or the underscore (_) or hyphen (-) characters.
    In processErrorMsgStringAdministrator Password
    In processErrorMsgStringValid passwords are 8 to 30 characters long, must begin with an alphabetic character, use only alphanumeric, underscore (_), dollar ($) or pound (#) characters. It should contain at least one numeric, underscore (_), dollar ($), or pound (#) character.
    In processErrorMsgStringAdministrator User Name
    In processErrorMsgStringThe value may only contain alphanumeric characters, or the underscore (_) or hyphen (-) characters.
    resultset.getStatus() : true
    the node m_FormsEnv is Not Selected
    the node m_FormsServer is Not Selected
    the node m_FormsBuilder is Not Selected
    the node m_ReportsEnv is Not Selected
    the node m_ReportsServer is Not Selected
    the node m_ReportsBuilder is Not Selected
    the node m_FormsEnv is Selected
    the node m_FormsServer is Selected
    the node m_FormsBuilder is Selected
    the node m_ReportsEnv is Selected
    the node m_ReportsServer is Selected
    the node m_ReportsBuilder is Selected
    root.isSelectedtrue
    Setting current page standalone validations to true
    the node m_FormsEnv is Selected
    the node m_FormsServer is Selected
    the node m_FormsBuilder is Selected
    the node m_ReportsEnv is Selected
    the node m_ReportsServer is Selected
    the node m_ReportsBuilder is Selected
    Entering the exec handler method in get free space for home...
    quotaNeededProperty:null
    isQuotaNeeded : false
    resultset.getStatus() : true
    the node m_FormsEnv is Selected
    the node m_FormsServer is Selected
    the node m_FormsBuilder is Selected
    the node m_ReportsEnv is Selected
    the node m_ReportsServer is Selected
    the node m_ReportsBuilder is Selected
    Setting current page standalone validations to true
    resultset.getStatus() : true
    Setting current page standalone validations to true
    resultset.getStatus() : true
    In doFinish method checking for inventory lock...ConfigurationPage
    Setting current page standalone validations to true
    JAVA.LIBRARY.PATH:C:\Users\675499\AppData\Local\Temp\OraInstall2012-05-04_11-11-29AM\jre\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Oracle\Middleware\FRHome\bin;C:\oracle\10G\BIToolsHome_1\bin;C:\oracle\10G\BIToolsHome_1\jlib;C:\oracle\10G\BIToolsHome_1\jre\1.4.2\bin\client;C:\oracle\10G\BIToolsHome_1\jre\1.4.2\bin;c:\oracle\10G\devsuitehome10GR2\bin;c:\oracle\10G\devsuitehome10GR2\jdk\jre\bin\classic;c:\oracle\10G\devsuitehome10GR2\jdk\jre\bin;c:\oracle\10G\devsuitehome10GR2\jdk\jre\bin\client;c:\oracle\10G\devsuitehome10GR2\jlib;c:\oracle\10G\devsuitehome10GR2\jre\1.4.2\bin\client;c:\oracle\10G\devsuitehome10GR2\jre\1.4.2\bin;C:\pf86\CA\SC\CAWIN\;C:\PROGRA~1\CA\SC\ETPKI\lib;C:\pf86\gs\gs8.62\lib;C:\pf86\gs\gs8.62\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\pf\ActivIdentity\ActivClient\;C:\pf86\ActivIdentity\ActivClient\;C:\PROGRA~2\CA\SC\CAM\bin;C:\pf86\CA\SC\CsamSockAdapter\bin;C:\DSM\Script;C:\Oracle\Middleware\FRHome\opmn\bin;C:\Oracle\Middleware\FRHome\opmn\lib;C:\Oracle\Middleware\FRHome\perl\bin;C:\oracle\Middleware\FRHome\lib\;C:\oracle\Middleware\FRHome\jdk\jre\lib\i386\
    CONFIG LOG CONFIG LOCATION: C:\Users\675499\AppData\Local\Temp\OraInstall2012-05-04_11-11-29AM\ext\jlib\log-config.xml
    XXX Entered Init()!!!
    Check Point Location : C:\Program Files\Oracle\Inventory\checkpoint\AS\11.1.1.0.0
    java.homeC:/oracle/Middleware/FRHome/jdk/jre
    weblogic.homeC:/oracle/Middleware/wlserver_10.3/server
    java.class.pathC:/oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar;C:/oracle/Middleware/wlserver_10.3/server/lib/webservices.jar;C:/oracle/Middleware/utils/config/10.3/config-launch.jar;C:/oracle/Middleware/FRHome/lib/java/shared/args4j/2.0.9/args4j-2.0.9.jar;C:/oracle/Middleware/FRHome/opmn/lib/argus.jar;C:/oracle/Middleware/FRHome/install/config/ASConfig.jar;C:/oracle/Middleware/FRHome/install/config/classic_config.jar;C:/oracle/Middleware/FRHome/opmn/lib/iasprovision.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar;C:/oracle/Middleware/FRHome/inventory/Scripts/ext/jlib/message.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.odl_11.1.1/ojdl.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.odl_11.1.1/ojdl2.jar;C:/oracle/Middleware/FRHome/opmn/lib/ons.jar;C:/oracle/Middleware/FRHome/opmn/lib/opmneditor.jar;C:/oracle/Middleware/FRHome/opmn/lib/optic.jar;C:/oracle/Middleware/FRHome/opmn/lib/repositorycheck.jar;C:/oracle/Middleware/FRHome/opmn/lib/wlclient.jar;C:/oracle/Middleware/FRHome/opmn/lib/wljmxclient.jar;C:/oracle/Middleware/FRHome/lib/xmlparserv2.jar;C:/oracle/Middleware/FRHome/forms/provision/frmconfig.jar;C:/oracle/Middleware/FRHome/frcommon/provision/frconfig.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.ldap_11.1.1/ldapjclnt11.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-common.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-wls.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-ee.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-unsupported-api.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jacc-spi.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-mbeans.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-api.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jps_11.1.1/jps-internal.jar;C:/oracle/Middleware/FRHome/jlib/ossoreg.jar;C:/oracle/Middleware/FRHome/../oracle_common/modules/oracle.jrf_11.1.1/jrf.jar;C:/oracle/Middleware/FRHome/jlib/ojmisc.jar;C:/oracle/Middleware/FRHome/jlib/jazn.jar;C:/oracle/Middleware/FRHome/jlib/ldapjclnt9.jar;ORACLE_HOMEnullORACLE_HOMEnullORACLE_HOMEnullORACLE_HOMEnullORACLE_HOMEnullORACLE_HOME%/../oracle_common/jlib/rcucommon.jar
    inside development taskFactory
    Assigning Port: 7001 to: DOMAIN_PORT
    Domain Provisioning JVMArgs being set:-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Doracle.home=C:\oracle\Middleware\FRHome -Ddomain.home=C:/oracle/Middleware/user_projects/domains/ClassicDomain -Djava.ext.dirs=C:\oracle\Middleware\FRHome\jdk\jre\lib\ext -Doracle.security.jps.config=C:/oracle/Middleware/user_projects/domains/ClassicDomain/config/fmwconfig/jps-config.xml -Doracle.instance=C:\oracle\Middleware\asinst_1 -Doracle.instance.name=asinst_1 -Doracle.forms.weblogic=1 -Ddomain.name=ClassicDomain
    Domain provisioning classpath set = C:/oracle/Middleware/wlserver_10.3/server/lib/weblogic.jar;C:/oracle/Middleware/oracle_common/modules/oracle.dms_11.1.1/dms.jar;C:/oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxframework.jar;C:/oracle/Middleware/oracle_common/modules/oracle.jmx_11.1.1/jmxspi.jar;C:/oracle/Middleware/oracle_common/modules/oracle.odl_11.1.1/ojdl.jar;C:/oracle/Middleware/FRHome/opmn/lib/nonj2eembeans.jar;C:/oracle/Middleware/FRHome/jdbc/lib/ojdbc6.jar;C:/oracle/Middleware/FRHome/opmn/lib/optic.jar;C:/oracle/Middleware/FRHome/opmn/lib/iasprovision.jar;C:/oracle/Middleware/oracle_common/modules/oracle.ldap_11.1.1/ldapjclnt11.jar;C:/oracle/Middleware/oracle_common/jlib/rcucommon.jar;C:/oracle/Middleware/FRHome/opmn/lib/opmneditor.jar;C:/oracle/Middleware/FRHome/opmn/lib/wlfullclient.jar;C:/oracle/Middleware/oracle_common/modules/oracle.adf.share_11.1.1/commons-el.jar;C:/oracle/Middleware/FRHome/jlib/dfc.jar;C:/oracle/Middleware/FRHome/dvt/lib/dvt-jclient.jar;C:/oracle/Middleware/FRHome/dvt/lib/dvt-utils.jar;C:/oracle/Middleware/oracle_common/jlib/ewt3.jar;C:/oracle/Middleware/oracle_common/modules/oracle.iau_11.1.1/fmw_audit.jar;C:/oracle/Middleware/FRHome/oui/jlib/http_client.jar;C:/oracle/Middleware/oracle_common/modules/oracle.idm_11.1.1/identitystore.jar;C:/oracle/Middleware/oracle_common/modules/oracle.idm_11.1.1/identityutils.jar;C:/oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jaccprovider.jar;C:/oracle/Middleware/oracle_common/modules/oracle.jps_11.1.1/jacc-spi.jar;C:/oracle/Middleware/FRHome/ord/jlib/jai_codec.jar;C:/oracle/Middleware/FRHome/ord/jlib/jai_core.jar;C:/oracle/Middleware/oracle_common/modules/oracle.oc4j-obsolete_11.1.1/jazn.jar;C:/oracle/Middleware/oracle_common/modules/oracle.oc4j-obsolete_11.1.1/jazncore.jar;C:/oracle/Middleware/oracle_common/jlib/jewt4.jar;C:/oracle/Middleware/FRHome/jlib/jta.jar;C:/oracle/Middleware/oracle_common/modules/oracle.ldap_11.1.1/ldapjclnt11.jar;C:/oracle/Middleware/FRHome/lib/mail.jar;C:/oracle/Middleware/FRHome/jlib/netcfg.jar;C:/oracle/Middleware/FRHome/jlib/oracle_ice.jar;C:/oracle/Middleware/oracle_common/jlib/share.jar;C:/oracle/Middleware/FRHome/jlib/zrclient.jar;C:/oracle/Middleware/FRHome/reports/jlib/aolj.jar;C:/oracle/Middleware/FRHome/reports/jlib/confmbean.jar;C:/oracle/Middleware/FRHome/reports/jlib/runtimembean.jar;C:/oracle/Middleware/FRHome/reports/jlib/rwadmin.jar;C:/oracle/Middleware/FRHome/reports/jlib/rwenv.jar;C:/oracle/Middleware/FRHome/reports/jlib/rwrun.jar;C:/oracle/Middleware/FRHome/reports/jlib/rwxdo.jar;C:/oracle/Middleware/FRHome/jlib/rts2.jar;C:/oracle/Middleware/FRHome/common/wlst/lib/adf-share-mbeans-wlst.jar;C:/oracle/Middleware/FRHome/common/wlst/lib/mdswlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/auditwlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/jps-wlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/jrf-wlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/oamap_help.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/oamAuthnProvider.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/ossoiap_help.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/ossoiap.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/sslconfigwlst.jar;C:/oracle/Middleware/FRHome/common/wlst/resources/wsm-wlst.jar
    DOMAIN_HOME: C:/oracle/Middleware/user_projects/domains/ClassicDomain
    Trying to assign 3 consecutive ports where the starting port range is: 6700 - 6800
    Assigning Port: 6700 to: OPMN_LOCAL_PORT
    Assigning Port: 6701 to: OPMN_REMOTE_PORT
    Assigning Port: 6702 to: OPMN_REQUEST_PORT
    GJS OHS Hostname: KBALD138H93R.acct03.us.lmco.com
    GJS managedServer Hostname: KBALD138H93R.acct03.us.lmco.com
    GJS OHS Hostname: KBALD138H93R.acct03.us.lmco.com
    GJS managedServer Hostname: KBALD138H93R.acct03.us.lmco.com
    DOMAIN_HOME: C:/oracle/Middleware/user_projects/domains/ClassicDomain
    XXX Entered DoExecute()!!!
    displayProperties()!!!
    CREATE_DOMAIN : true
    JOIN_DOMAIN :
    DOMAIN_NAME : ClassicDomain
    DOMAIN_HOSTNAME : KBALD138H93R.acct03.us.lmco.com
    DOMAIN_PORT : 7001
    DOMAIN_HOME_PATH : C:/oracle/Middleware/user_projects/domains/ClassicDomain
    ADMIN_USER_NAME : weblogic
    MW_HOME : C:\oracle\Middleware
    ORACLE_HOME : C:\oracle\Middleware\FRHome
    INSTANCE_HOME : C:\oracle\Middleware\asinst_1
    INSTANCE_NAME : asinst_1
    CONFIGURE_FORMS : true
    CONFIGURE_FORMS_BUILDER : true
    CONFIGURE_REPORTS : true
    CONFIGURE_REPORTS_BUILDER : true
    CONFIGURE_OHS : false
    CONFIGURE_MANAGEMENT_COMPONENT : true
    PORT_LOCATION : 0
    AUTOMATIC_PORT_DETECT : true
    STATICPORT_INI_FILE_LOCATION :
    ENABLE_PROXY : false
    PROXY_HOST : proxy1.global.lmco.com
    PROXY_PORT : 8080
    PROXY_BYPASS :
    USE_OID : true
    OID_USE_SSL : false
    OID_HOST :
    OID_PORT :
    OID_USERNAME :
    Executing Task: Creating Domain
    XXX: adding task: oracle.as.install.classic.ca.standard.DomainProvisioningTask
    AdminServer port is 7001
    trying to connect to KBALD138H93R.acct03.us.lmco.com 7001
    Creating Weblogic Domain.
    oracle.as.provisioning.exception.ASProvWorkflowException
         at oracle.as.provisioning.weblogic.ASDomain._createDomain(ASDomain.java:2629)
         at oracle.as.provisioning.weblogic.ASDomain.createDomain(ASDomain.java:2475)
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:633)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:339)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:662)
    oracle.as.provisioning.exception.ASProvisioningException
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:872)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:339)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         ... 13 more
    Hope this sheds some light. This is getting real frustrating.

  • Error getting while upgarding to 8.15 after succesful deplyement

    hi,,
    this is the which i m getting while upgarding to 8.15, however app is deployed succesfully ,, can anyone plz help me out wid dis ..
    <Servlet: "AppManagerServlet" failed to preload on startup in Web application: "pss_webapp".
    javax.servlet.ServletException: FRAMEWORK
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:985)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:949)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:888)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:3430)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3387)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebAppServletContext.java:3373)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3356)
    at weblogic.servlet.internal.WebAppServletContext.setStarted(WebAppServletContext.java:6208)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:864)
    Caused by: java.lang.NoSuchFieldError: FRAMEWORK
    at com.bea.netuix.servlets.manager.PortalServlet.<clinit>(PortalServlet.java:160)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:308)
    at java.lang.Class.newInstance(Class.java:261)
    at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:1092)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.securit
    ******************************8

    This Variable: "FRAMEWORK" is NOT there in SP3 version of the class BUT it is there in SP5 version of the class PortalFrameworkProduct. This class is in netuix_util.jar under APP- INF/lib.
    This means somewhere still some Old SP3 Version JARs are getting referenced.
    So please make sure to upgrade all the Portal Libraries following the instructions given in the edocs upgrade link.
    For now quickly fix this by copying netuix_util.jar from Portal Software folder to your application folder i.e from ...\bea81sp5\weblogic81\portal\lib\netuix\ejb to ...\yourPortalApp\APP-INF\lib
    I would strongly recommend to please download this Portal Consistency Checker Tool and follow the readme.txt file on how to install and run this. Then send us the HTML report. This tool tells us if all the Portal Libraries are properly updated or not. Sometimes, if the files on the disk are Readonly, when we Update the libraries from Workshop, they may not update them. So please install and run this tool: http://dev2dev/codelibrary/code/portal_consistency_checker.jsp

  • Booting into Single User when having Firmware password protected...?

    Hi,
    I have to put a number of iMacs to the laboratory so that users could log on but without administrative rights. In order to prevent them from booting the external devices and booting into single-user to gain root access, I have set the Firmware password, which does a nice job of blocking "C" and "CMD-S", etc commands during the bootup.
    However, I wonder: in some occasions when we need to perform some troubleshooting, we could not boot the system into single-user mode. I know that I could press "Option" key during the startup, which will bring into the "Startup Manager". After then, the Manager shows the devices for booting. I find that even when I double-click the "Macintosh HD" and then press "CMD-S" immediately, the system does not perform single-user booting. Of course, pressing "CMD-S" when the Mac starts up does not work as well, as this command is blocked due to the Firmware password set.
    I wonder if there is a way for us, the system administrators, to get into the single-user mode in this case. Of course, I do not expect an answer of getting an Installation DVD, booting the DVD, involving the Firmware Password Utility to disable the Firmware Password, in order to gain back the single-user booting ability...
    Thanks.
    Dominic

    For Mac OS X, setting an firmware password will lock out all commands. While Single user mode is useful for troubleshooting, it can also be used wrong by the wrong people which is why it is disabled along with the rest of the 'startup commands'
    So a few thoughts here:
    - I'm asking in this case: does holding down the option show network drives in server situations such as yours? If so, you could have a network server (network startup disk) to start the computer from to do the trouble shooting you need and still be able to keep the firmware password in place
    - I've been reading up on Unix commands lately and found a nice gem: nvram. Being a unix admin, you may already be familiar with it. It's the unix command for working with open firmware variables.
    When you use the firmware utility to set the password the 'security-mode' variable is set to 'command' by default. I know there are two other options: 'none' (no password set) and 'full' (don't know what else this blocks). Is it possible that there is some way to selectively block the commands you want to stop (startup from other drive, zap pram, etc) but still allow Single User Mode?
    Not sure myself, just putting something out there. Maybe it'll spark something for ya.

  • Forgot administrator console password

    I have not logon to the administrator console for a year. Now I forget wkat I need to do to get it back.

    Hello Lyondell,
    Thank you for your post. For ColdFusion 9, here are the steps:-
    1. Make a backup copy of CF_HOME\lib\neo-security.xml file.
    In case of multi-server editions, the path is: C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfusion\lib\neo-security.xml
    2. Open the neo-security.xml file in a text editor and change 'true' to 'false' for the admin.security.enabled variable tag. For example, search the file for "admin.security.enabled" and change the entry as follows:
    <var name='admin.security.enabled'><boolean value='false'/></var>
    3. Restart the ColdFusion application server.
    You should now be able to bypass the login to the ColdFusion administrator. You can reset the password by choosing Security>Administrator.
    1. Expand Security and select CF Admin Password.
    2. Check Use a ColdFusion Administration password.
    3. Enter the new password and click Submit Changes
    For ColdFusion 10, please run the passwordreset.bat  at the following location cf_root\cfusion\bin\ file and follow the onscreen instructions.
    Regards,
    Anit Kumar

  • Data and Dashboard Security using ROLES Variable in OBIEE 11g

    Hi all,
    I'm currently using OBIEE 11g. I'm wondering how to implement the security for data and dashboard in the 11g.
    Below is the sample of how the security matrix requirement when I use the 10g version. In 10g, we usually use GROUP (for the data filter in RPD) and WEBGROUPS (for dashboard objects) variables in my initialization block to read from database. As we have 2 different variables, it is possible to control security separately for data and dashboard.
    GROUP | Country
    G1 | US
    G2 | FR
    G3 | UK
    WEBGROUPS | Dashboard
    WG1 | D1
    WG2 | D1
    WG3 | D1
    WG1 | D2
    WG2 | D2
    WG1 | D3
    WG3 | D3
    WG3 | D4
    Now, in 11g, the recommendation is to use ROLES variable (for application role). So, how would I apply the required security matrix above in 11g using just ROLES variable? Do I still create G1, G2, G3, WG1, WG2, and WG3 as application roles then only use G1-3 in the RPD to filter the data and only use WG1-3 in the analytics to serve as webgroups?
    Any advice on this? Thank you very much.

    "...Could you elaborate more?"
    I mean that role creation and user->role assignment will be managed outside of to the obiee interface - whether that's via the database, LDAP, fmw etc.
    Webgroup creation and assignment is managed within the obiee interface and I think that has a lot of benefits - generally you have people responsible for shared folders and dashboard creation, so having them responsible for webgroups and presentation permissions is preferable for me.
    "are you saying that I use the role G1-3 only in the RPD, while using the role WG1-3"
    Yes .. I'm assuming you have something like
    G1 | US
    G2 | FR
    G3 | UK
    WG1 | Finance
    WG2 | Marketing
    WG3 | Sales
    Which becomes
    R1 | US
    R2 | FR
    R3 | UK
    R4 | Finance
    R5 | Marketing
    R6 | Sales
    And John belongs to R1 and R4, Fred belongs to R2 and R4 etc. So you would set your data filters against R1-R3 and use R4-R6 like webgroups in the presentation services.
    Regards,
    Robert

  • Security Violation during PATH Variable Substitution

    Hi -
    I' m trying to write a file with the receiver file adapter by the variable substitution feature from SP12 on.
    Whereas the %filename% variable works fine, I get for the %path% variable an exception in the adapter engine, whenever I'm trying either
    - to use an absolute path like "/tmp" or
    - composed pathnames like "tmp/test" (that are based on $XIHOME/j2ee/cluster/server0)
    Non-composed pathnames like $XIHOME/j2ee/cluster/server0/tmp by setting %path% to "tmp" work also.
    Any clue?
    I'm on AIX on SP12.
    Here is the exception:
    java.text.ParseException: Security violation encountered during variable substitution: Content of variable path is not safe
    Thanks.
    Stefan

    Hi Stefan,
    did you check the flag 'Disable Security Checks' in the communication channel?
    Regards
    Stefan

  • Row level security with session variables, not a best practice?

    Hello,
    We are about to implement row level security in our BI project using OBIEE, and the solution we found most convenient for our requirement was to use session variables with initalization blocks.
    The problem is that this method is listed as a "non best practice" in the Oracle documentation.
    Alternative Security Administration Options - 11g Release 1 (11.1.1)
    (This appendix describes alternative security administration options included for backward compatibility with upgraded systems and are not considered a best practice.)
    Managing Session Variables
    System session variables obtain their values from initialization blocks and are used to authenticate Oracle Business Intelligence users against external sources such as LDAP servers or database tables. Every active BI Server session generates session variables and initializes them. Each session variable instance can be initialized to a different value. For more information about how session variable and initialization blocks are used by Oracle Business Intelligence, see "Using Variables in the Oracle BI Repository" in Oracle Fusion Middleware Metadata Repository Builder's Guide for Oracle Business Intelligence Enterprise Edition.
    How confusing... what is the best practice then?
    Thank you for your help.
    Joao Moreira

    authenticating / authorizing part is take care by weblogic and then USER variable initialized and you may use it for any initblocks for security.
    Init block for authenticating / authorizing and session variables are different, i guess you are mixing both.

  • OBIEE 11g, BI Apps EBS: What are default security variables and Init Block

    Hi,
    We are implementing BI Apps 7.9.6.3 [OBIEE 11.1.1.1.5 with EBS modules]. Out of the box RPD and mappings.
    There are many VARIABLES and INIT BLOCKS in the RPD. Some of them are mainly for Siebel, Jd Edwards etc.
    I need to know what are the default variables and Init Block configures in RPD. Also it will be highly appreciated if anyone can point out what segments we should configure if we need to implement security with simple database table authentication with SSO?
    Thanks in advance.

    You should review this doc for the options for EBS/OBIA security:
    http://docs.oracle.com/cd/E20490_01/bia.7963/e19042.pdf
    If helpful, pls mark as correct or helpful.

  • Substitution Variable in Security Filter

    Hi,
    my filter looks like below.
    Write : @idesc("Accounts"),Oct,"07 10 + 2",@idesc("SiteName")
    here 07 10 + 2 is the version name which am using. the same version is used in so many security filters.
    i want to replace this by the substitution variable name CURR_VER.
    is it possible to use the substitution variable name in a security filter (s)??

    What version of Essbase are you using? In System 9 (9.2 and higher I think) variables are allowable in filters and formulas. In version 7 and below, they are not

Maybe you are looking for

  • Os 4 wont download-error message

    the iphone update software server can not be contacted at this time...?

  • Exchange 2007: user not found

    Hi all, I have a very strange problem..... I've been using Sun IDM 8.0 for quite some time now to manage Users in an exchange 2007 environment, without major issues. Now I finally got a new, improved test-environment, which includes a test-active-dir

  • Go back selection-screen from level2 of cl_salv_hierseq_table

    Hi, Problem is to go back on selection screen in one go using BACK , CANCEL or EXIT button cl_salv_hierseq_table is being called to display output list. Same class cl_salv_hierseq_table is being used to display new list if user wants to see. All outp

  • Processor speed after Standby Mode

    I have the T400 with  Windows XP (32bit).  Dual P8600 2.4GHz processors & 3GB memory.  Fairly new computer so there is plenty of space. I run a macro out of Excel every day.  When I run the program it takes about 15 to 20 mins and Excel struggles to

  • SPRY Question - how to return to a SPRY accordian with the appropriate pannel expanded?

    I am using a SPRY accordion http://apoko.abetterplacetobe.org/ChapterDocuments/MeetingMinutes/MeetingMinutesIndex.html ) to control access to a variety of meeting minutes. Each accordion panel represents a school year and contains a collection of lin