Error after implementing the custom authentication scheme

I have reproduced this time a workspace (GOGGINSCRATCH to apex.oracle.com) running 4.2.1.00.08 and a workspace 4.1.1.00.23 running

Error: ORA-06550: line 4, column 23: PLS-00306: wrong number or types of arguments in the call to "AUTHENTICATOR" ORA-06550: line 4, column 1: PL/SQL: statement ignored

PL/SQL in my workspace

create or replace PACKAGE REPORTINGAUT AS

function authenticator (user_name in VARCHAR2, pwd in VARCHAR2)
return a Boolean value;

END REPORTINGAUT;

create or replace PACKAGE BODY REPORTINGAUT AS

function authenticator (user_name in VARCHAR2, pwd in VARCHAR2)
return a Boolean value AS
BEGIN
/ * Implementation of necessary TODO * /.
RETURN TRUE;
END authenticator;

END REPORTINGAUT;

------------------------------------
APEX Builder Application steps
(1) the shared components
(2) the authentication schemes
(3) create
4.a) based on a system preconfigured Gallery
4.b) name fred
4.c) Type == custom
Name of the function of authentication 4.d) = ReportingAut.authenticator
4.e) activate the legacy of authentication attributes == Yes + (I've tried it both ways).

So... this plan is underway, but when I try to connect, I get the above error... Driving me crazy... Thanks for any help...

The parameter name is important. This should work:

CREATE OR REPLACE PACKAGE reportingaut
AS
   FUNCTION authenticator (p_username IN VARCHAR2, p_password IN VARCHAR2)
      RETURN BOOLEAN;
END reportingaut;

CREATE OR REPLACE PACKAGE BODY reportingaut
AS
   FUNCTION authenticator (p_username IN VARCHAR2, p_password IN VARCHAR2)
      RETURN BOOLEAN
   AS
   BEGIN
      RETURN TRUE;
   END authenticator;
END reportingaut;

Denes Kubicek
-------------------------------------------------------------------
http://deneskubicek.blogspot.com/
http://www.Apress.com/9781430235125
http://Apex.Oracle.com/pls/Apex/f?p=31517:1
http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
-------------------------------------------------------------------

Tags: Database

Similar Questions

  • applicationContext remains "null" after using the custom url scheme to launch the app

    Hello

    I am currently working on a DPS application for a customer who wishes to use its own authentication system.

    The client system is implemented so that they send the valid token to a URI with a custom method.

    By setting the same pattern custom in my app DPS constructor, I can get the app from the login window.

    What is described in the library of DPS & Api store 2.32 documentation, I understand that

    " adobeDPS.configurationService.applicationContext must contain several variables associated to how the viewer was started or enabled:" ","this class represents the context under which the application is launched '


    However, in my application when I try to see what contains the applicationContext, the object is always 'null '. It doesn't matter if I started the application by clicking on its icon or if it was launched using the custom uri scheme.


    Is this a bug or am I missing something here? I really need this token.

    Hello

    After being stuck for a while trying to work with the url of my client for usage, I finally tested it with a modified version and have found the cause of the problem.

    Work of first information provided by a colleague who was apparently not detailed enough for the customer asked me to use a url of the form App. scheme://auth/#token=...

    It turns out that this kind of url can start or bring the app to the front, but applicationContext remains empty.

    My tests using a url in the same form as you suggested (eg. app. scheme://v1/slot/library) can trigger the app or transmit data.

    The documentation available in the SDK library & shop and article on how to use a custom template is very vague on what formats link actually works, and how we can vary with it.

    A breakdown of official links to pieces, that the parties do and what items can be modified (for example ' / appstate') within the API documentation would be a great help for developers, I think.

    Kind regards

    Lorin

  • Apex 4.1 - Websheets with the custom authentication scheme

    Apex v4.1 (as seen on the hosted apex.oracle.com) - Websheets do not always seem to work with a custom authentication scheme. Database applications work very well with a function of sentry page, but when the same page sentry function is used for a websheet, running, it gives an error the requested page was not found

    One of the Apex team can consult? Thank you

    Hi Vikas,

    Websheet Sentinels have slight differences of sentinels of the application.
    I created a sentinel websheet for you which should operate (see below).

    Christian

    create or replace function sample_page_sentry return boolean
    is
        l_username   varchar2(512);
        l_session_id number;
        l_ws_app_id  number;
    begin
        -- check to ensure that we are running as the correct database user.
        if user != 'APEX_PUBLIC_USER' then
            return false;
        end if;
        -- get sessionid in cookie
        l_session_id := wwv_flow_custom_auth_std.get_session_id_from_cookie;
        if wwv_flow_custom_auth_std.is_session_valid then
            -- the session still exists. we configure the APEX engine to use
            -- this session id and the session's username.
            --
            -- NOTE: it is more secure to also check if this is the session id from
            --       the URL!
            --
            apex_application.g_instance := l_session_id;
            l_username                  := wwv_flow_custom_auth_std.get_username;
            if nvl(l_username,'nobody') != 'nobody' then
                wwv_flow_custom_auth.define_user_session(
                    p_user       => l_username,
                    p_session_id => l_session_id);
                return true;
            end if;
        else
            -- session can not be reused, create a new one
            l_session_id := apex_custom_auth.get_next_session_id;
        end if;                                                                                 
    
        -- the current session is unauthenticated. we have to determine the user
        -- and log in.                                                                          
    
        -- get the username from somewhere, e.g. a cgi variable. it is hard-coded
        -- here for simplification.
        l_username := 'VANJ';
        -- configure the engine to use this username and session.
        apex_custom_auth.define_user_session(
             p_user       => l_username,
             p_session_id => l_session_id );
        -- build a deep link to the websheet start page
        l_ws_app_id  := apex_util.get_session_state ('WS_APP_ID');
        wwv_flow_custom_auth.remember_deep_link (
             p_url=>'ws?p='||l_ws_app_id||'::'||l_session_id );
        -- register the session in apex sessions table, set cookie, redirect back.
        apex_authentication.login(
             p_username => l_username,
             p_password => null );
        return true;
    end sample_page_sentry;
    /                                                                                           
    

    Published by: Christian Neumueller November 15, 2011 07:07 (a wiki format error corrected)

  • loading file with the HTTP 404 error, according to the datasbase authentication scheme

    Hi, I am using the file browser to load the file, but has the HTTP 404 - File not found error. Of my application authentication schemes is the database (user identified by DAD)...

    In the page file to load, I have:
    browser of a files element called P2_FILE_NAME, region of a single report to display information from the downloaded file, the sql code is: select id, name, created_by, updated_by updated_on wwv_flow_files updated_on desc order.
    submit a button called.

    The problem is: if I run the page directly as APEX_PUBLIC_USER, the file is correctly loaded and displayed in the report area. However, if I go through the login page and open a session as long as user Dabase, then go to the file download page and try to load the file, it displays "the page cannot be found, HTTP 404 error.
    Any suggestion? Thank you in advance.

    Sue

    Sue - check with the person responsible for the implementation of your web server components.

    Scott

  • P2V defective after installation of the Converter Agent, unknown error produced to the customer

    Hello! I need help with that on:

    vSphere Client 4.0.0 build 208111

    vCenter Server 4.0.0 build 208111

    Host ESX 4.0.0 build 261974

    Company agent Converter 4.1.1 build 20617

    Source of Windows Server 2003 SP1 x 86-HP ProLiant ML370 std

    Trying to P2V using "Import Machine" vcenter. After that the converter Agent is installed, the Import Wizard displays an error: unknown error produced to the customer. After you click OK. The VI client ends.

    The source servers and ESX host are on a place other than the vCenter, but on the 'same' network. Other P2V in the same place are passed without problem.

    VMware converter - client.log:

    Journal for VMware Converter Enterprise Client, pid = 4408, version = version 4.1.1 = build-206170, option = release, section = 2

    Current working directory: C:\Program Files\VMware\Infrastructure\Virtual Infrastructure Client\Plugins\Converter Enterprise 4.1.1

    HOSTINFO: See Intel CPU, numCoresPerCPU 2, numThreadsPerCore 1.

    HOSTINFO: This machine has 1 physical CPU, 2 total hearts and 2 logical processors.

    Recorder P2V created

    Initialize SSL

    Using the libcrypto, version 9070CF

    Vmacore::InitSSL: doVersionCheck = true, handshakeTimeoutUs = 120000000

    Created SSL context

    AppInit finished

    Start of the execution of a task

    By ensuring that this interface UFAD version vmware converter - 4.1.1

    SSLVerifyCertAgainstSystemStore: Incompatibility of topic: VMware vs. 172.25.17.19

    SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    • Used to connect host name does not match name the object on the certificate of the host

    • A certificate of the host string comes from an untrusted root.

    SSLVerifyCertAgainstSystemStore: Verification of the certificate is disabled, so connection will continue despite the error

    UFAD interface version is vmware-converter - 4.1.1

    Execution completed the task

    Start of the execution of a task

    SSLVerifyCertAgainstSystemStore: Incompatibility of topic: VMware vs. osl1019

    SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    • Used to connect host name does not match name the object on the certificate of the host

    • A certificate of the host string comes from an untrusted root.

    SSLVerifyCertAgainstSystemStore: Verification of the certificate is disabled, so connection will continue despite the error

    Connecting to host osl1019 on port 443 using the https protocol

    SSLVerifyCertAgainstSystemStore: Incompatibility of topic: VMware vs. osl1019

    SSLVerifyCertAgainstSystemStore: The certificate of the remote host has these problems:

    • Used to connect host name does not match name the object on the certificate of the host

    • A certificate of the host string comes from an untrusted root.

    SSLVerifyCertAgainstSystemStore: Verification of the certificate is disabled, so connection will continue despite the error

    Execution completed the task

    Start of the execution of a task

    Connection to IPC$ on 172.20.2.10 as domain\user1

    Manager of SMB: host has already had a different share mapped with conflicting credentials.  Could not map share http://\\172.20.2.10\IPC$.

    Task failed: P2VError REMOTE_UFA_CREDENTIAL_CONFLICT_ERROR (172.20.2.10)

    Start of the execution of a task

    Connection to IPC$ on 172.20.2.10 as domain\user1

    Successfully connected to IPC$ on 172.20.2.10

    Connection to
    172.20.2.10\pipe\vmware-converter-VMDB, use the SSL protocol: true

    Unable to connect to
    172.20.2.10\pipe\vmware-converter-VMDB. Reason: The system cannot find the specified file. . Error code: 2.

    From vmware-converter on 172.20.2.10

    Could not open service handle to with 983103:1060 level access

    Failed to start VMware Converter Agent service on 172.20.2.10. Reason: Service control manager error.

    Failed to start the vmware converter service

    Connection to
    172.20.2.10\pipe\vmware-converter-VMDB, use the SSL protocol: true

    Unable to connect to
    172.20.2.10\pipe\vmware-converter-VMDB. Reason: The system cannot find the specified file. . Error code: 2.

    From vmware-converter on 172.20.2.10

    Could not open service handle to with 983103:1060 level access

    Failed to start VMware Converter Agent service on 172.20.2.10. Reason: Service control manager error.

    Failed to start the vmware converter service

    Connection to
    172.20.2.10\pipe\vmware-converter-VMDB, use the SSL protocol: true

    Unable to connect to
    172.20.2.10\pipe\vmware-converter-VMDB. Reason: The system cannot find the specified file. . Error code: 2.

    From vmware-converter on 172.20.2.10

    Could not open service handle to with 983103:1060 level access

    Failed to start VMware Converter Agent service on 172.20.2.10. Reason: Service control manager error.

    Failed to start the vmware converter service

    Give up trying to connect to
    172.20.2.10\pipe\vmware-converter-VMDB

    Task failed: P2VError UFA_NOT_RUNNING()

    Installation UFAD hostname = 172.20.2.10, user name is domain\user, postponeReboot = 1

    Start of the execution of a task

    Connect to ADMIN$ on 172.20.2.10 as domain\user1

    Successfully connected to ADMIN$ on 172.20.2.10

    MakeSafeDirectory: directory exists, skip the security lock

    MakeSafeDirectory: directory exists, skip the security lock

    MakeSafeDirectory: directory exists, skip the security lock

    ہ service args: com.vmware.courier - vntixenubmcaveth

    Could not open service handle to with 983551:1060 level access

    Execution completed the task

    Start of the execution of a task

    Connection to IPC$ on 172.20.2.10 as domain\user1

    Successfully connected to IPC$ on 172.20.2.10

    Connection to
    172.20.2.10\pipe\vmware-converter-VMDB, use the SSL protocol: true

    Connected to the
    172.20.2.10\pipe\vmware-converter-VMDB

    Unknown path: /vmomi/

    Impossible task without error message

    VMware converter - agent.log:

    Journal for the VMware Converter Enterprise, pid = 1396, Agent version = 4.1.1 build = build-206170, option = release, section = 2

    Cannot create the writer console

    Current working directory: C:\Program VMware Converter Enterprise Agent

    HOSTINFO: See Intel CPU, numCoresPerCPU 1, numThreadsPerCore 1.

    HOSTINFO: This machine has 1 UC physical and carrots 1 1 logical processors total.

    TaskMax = 40, IoMin = 1, IoMax = 81

    Try ufa_agent

    Plugin path 0: ufa - agent.dll

    Absolute path of the plugin 0: C:\Program VMware Converter Enterprise Agent\ufa - agent.dll

    Initializing the SSL context

    Using the libcrypto, version 9070CF

    Vmacore::InitSSL: doVersionCheck = true, handshakeTimeoutUs = 120000000

    Plugin initialized

    Try ufa_client

    Plugin path 1: ufa - client.dll

    Absolute path of the plugin 1: C:\Program VMware Converter Enterprise Agent\ufa - client.dll

    UfaClientPlugin Init

    Try ufa_slave

    Plugin path 2: ufa - slave.dll

    Absolute path of the plugin 2: C:\Program VMware Converter Enterprise Agent\ufa - slave.dll

    Microsoft Windows Server 2003,

    Standard Edition

    Service Pack 1 (Build 3790)

    UfaSlavePlugin Init

    Try ufa_sysMigration

    Plugin 3 path: ufa - sysmigration.dll

    Absolute path of the plugin 3: C:\Program VMware Converter Enterprise Agent\ufa - sysmigration.dll

    NFC connection accept timeout: 180000 milliseconds

    NFC request timeout: 180000 milliseconds

    NFC read timeout: 60000 milliseconds

    NFC write timeout: 600 000 milliseconds

    NFC connection accept timeout: 180000 milliseconds

    NFC request timeout: 180000 milliseconds

    NFC read timeout: 60000 milliseconds

    NFC write timeout: 600 000 milliseconds

    SysMigrationPlugin Init

    Try ufa_sysReconfig

    Plugin path 4: ufa - sysreconfig.dll

    Absolute path of the plugin 4: C:\Program VMware Converter Enterprise Agent\ufa - sysreconfig.dll

    SysReconfigPlugin Init

    The data store of reconfiguration of loading XML from C:\Program VMware Converter Enterprise Agent\reconfigurationDataStore.dat...

    ReconfigurationDataStore of filling...

    Action free of charge

    CurrentControlSetKey update the registry: Control\CriticalDeviceDatabase\pci #ven_1000 & dev_0030 patch: C_SYMMPI

    CurrentControlSetKey update of the register: Services\symmpi patch: S_SYMMPI

    Update the filePathInWinDir file: system32\drivers\symmpi.sys source: BASEOS sourceFileName: symmpi.sys

    Action BuslogicMylex of loading

    CurrentControlSetKey update of the register: enum\root\LEGACY_BUSLOGIC patch: L_BUSLOGIC

    CurrentControlSetKey update of the register: services\buslogic patch: S_BUSLOGIC

    Update the filePathInWinDir file: system32\drivers\buslogic.sys source: VMWARE_DRIVERS_CAB sourceFileName: buslogic_for_nt.sys

    Action Buslogic_vmscsi of loading

    CurrentControlSetKey update the registry: Control\CriticalDeviceDatabase\pci #ven_104b & dev_1040 patch: C_VMSCSI

    CurrentControlSetKey update of the register: Control\Class\ {4D36E97B-E325-11CE-BFC1-08002BE10318} \0009 patch: CL_VMSCSI

    CurrentControlSetKey update of the register: Services\vmscsi patch: S_VMSCSI

    Update the filePathInWinDir file: system32\drivers\vmscsi.sys source: VMWARE_DRIVERS_CAB sourceFileName: vmscsi.sys

    Action Buslogic_vmscsi_ACPI of loading

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_104B & DEV_1040 & SUBSYS_1040104B & REV_01\3 & 61aaa01 & 0 & 80 patch: E_VMSCSI

    Action Buslogic_vmscsi_NotACPI of loading

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_104B & DEV_1040 & SUBSYS_1040104B & REV_01\2 & ebb567f & 0 & 80 patch: E_VMSCSI

    Action Enable_Lsi_Scsi_Driver of loading

    CurrentControlSetKey update of the register: Services\LSI_SCSI patch: S_LSI_SCSI

    Action Mouse_Keyboard_Common of loading

    Update the registry currentControlSetKey: Control\CriticalDeviceDatabase\ * pnp0303 patch: C_PS2KBD

    CurrentControlSetKey update of the register: Control\Class\ {4D36E96B-E325-11CE-BFC1-08002BE10318} \0009 patch: CL_PS2KBD

    Update the registry currentControlSetKey: Control\CriticalDeviceDatabase\ * pnp0f13 patch: C_PS2MOUSE

    Update the registry currentControlSetKey: Control\CriticalDeviceDatabase\ * pnp0f03 patch: C_PS2MOUSE

    CurrentControlSetKey update of the register: Control\Class\ {4D36E96F-E325-11CE-BFC1-08002BE10318} \0009 patch: CL_PS2MOUSE

    Action Mouse_Keyboard_ISAPnP of loading

    CurrentControlSetKey update the registry: Control\CriticalDeviceDatabase\pci #ven_8086 & dev_7110 & cc_0601 patch: C_ISAPNP

    Action Mouse_Keyboard_ACPI of loading

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0303 patch: E_PS2KBD

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0F13 patch: E_PS2MOUSE

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0F03 patch: E_PS2MOUSE

    Action Mouse_Keyboard_ACPI_Vista of loading

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0F13 patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Enum\ACPI\PNP0F03 patch: SKUNKWORKS_FILLER

    Action Mouse_Keyboard_NotACPI of loading

    Update the registry currentControlSetKey: Enum\Root\ * PNP0F13 patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: Enum\Root\ * PNP0F03 patch: SKUNKWORKS_FILLER

    Action NT_SVGA_Registry_Updates of loading

    CurrentControlSetKey update of the register: enum\root\LEGACY_VMX_SVGA patch: E_VMX_SVGA

    CurrentControlSetKey update of the register: services\vmx_svga patch: S_VMX_SVGA

    Action Common_SVGA_Updates of loading

    CurrentControlSetKey update of the register: services\vmx_svga patch: S_VMX_SVGA

    CurrentControlSetKey update of the register: Control\Class\ {4D36E968-E325-11CE-BFC1-08002BE10318} \0009 patch: CL_VMX_SVGA

    Update the filePathInWinDir file: INF\vmx_svga.inf source: VMWARE_DRIVERS_CAB sourceFileName: vmx_svga.inf

    Update the filePathInWinDir file: system32\vmx_fb.dll source: VMWARE_DRIVERS_CAB sourceFileName: vmx_fb.dll

    Update the filePathInWinDir file: system32\vmx_mode.dll source: VMWARE_DRIVERS_CAB sourceFileName: vmx_mode.dll

    Update the filePathInWinDir file: system32\drivers\vmx_svga.sys source: VMWARE_DRIVERS_CAB sourceFileName: vmx_svga.sys

    Action SVGA_Registry_Updates_APCI of loading

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_15AD & DEV_0405 & SUBSYS_040515AD & REV_00\3 & 61aaa01 & 0 & 78 patch: E_VMX_SVGA

    Action SVGA_Registry_Updates_NotACPI of loading

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_15AD & DEV_0405 & SUBSYS_040515AD & REV_00\2 & ebb567f & 0 & 78 patch: E_VMX_SVGA

    Action Restore_i8042_NT5 of loading

    CurrentControlSetKey update of the register: Services\i8042prt patch: SKUNKWORKS_S_I8042

    Update the filePathInWinDir file: system32\drivers\i8042prt.sys source: BASEOS sourceFileName: i8042prt.sys

    Action Deref_vpcsrvc of loading

    CurrentControlSetKey update of the register: Services\1-driver-vpcsrvc patch: SKUNKWORKS_FILLER

    Update the registry CurrentControlSetKey: Services\1-vpcsrvc patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: Enum\LEGACY_1-DRIVER-VPCSRVC patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: patch Enum\LEGACY_1-VPCSRVC: SKUNKWORKS_FILLER

    Action Deref_mrxvpc of loading

    CurrentControlSetKey update of the register: Services\MrxVPC patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_MRXVPC patch: SKUNKWORKS_FILLER

    Action Deref_vpcmap of loading

    CurrentControlSetKey update of the register: Services\VPCMap patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_VPCMAP patch: SKUNKWORKS_FILLER

    Deref_vpc-s3_NT4 of loading action

    CurrentControlSetKey update of the register: Services\vpc-s3 patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_VPC-S3 patch: SKUNKWORKS_FILLER

    Deref_vpc-s3_NT5 of loading action

    CurrentControlSetKey update of the register: Services\vpc-s3 patch: SKUNKWORKS_FILLER

    Update the registry CurrentControlSetKey: Enum\PCI\VEN_5333 & DEV_8811 & SUBSYS_00000000 & REV_00\3 & 267a616a & 0 & 40 patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\s3legacy patch: SKUNKWORKS_FILLER

    Action Deref_vmsrvc of loading

    CurrentControlSetKey update of the register: Services\1-driver-vmsrvc patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: Enum\Root\LEGACY_1-DRIVER-VMSRVC patch: SKUNKWORKS_FILLER

    Update the registry CurrentControlSetKey: Services\1-vmsrvc patch: SKUNKWORKS_FILLER

    Update the registry currentControlSetKey: patch Enum\Root\LEGACY_1-VMSRVC: SKUNKWORKS_FILLER

    Action Deref_netfin of loading

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_NETFIN patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\NetFin patch: SKUNKWORKS_FILLER

    Action Deref_cpqdmi of loading

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_CPQDMI patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\CPQDMI patch: SKUNKWORKS_FILLER

    Action Deref_cpqalert of loading

    CurrentControlSetKey update of the register: Enum\Root\LEGACY_CPQALERT patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\CPQALERT patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\EventLog\System\CPQALERT patch: SKUNKWORKS_FILLER

    Action Deref_cpqagent of loading

    CurrentControlSetKey update of the register: Services\EventLog\System\Snmp patch: SKUNKWORKS_FILLER

    CurrentControlSetKey update of the register: Services\Snmp patch: SKUNKWORKS_FILLER

    Action Deref_ipmi of loading

    CurrentControlSetKey update of the register: Services\IPMI patch: SKUNKWORKS_FILLER

    Action RemoveUnwantedKeys of loading

    CurrentControlSetKey update of the register: Services\VPCMap patch: SKUNKWORKS_FILLER

    Action FixSetupLog of loading

    String replace updated filePathInWinDir: repair\setup.log model:
    System32
    value of ntoskrnl.exe.*\.exe:
    System32
    Ntoskrnl.exe = "ntoskrnl.exe".

    String replace updated filePathInWinDir: repair\setup.log model:
    System32
    value of Hal.dll.*\.dll:
    System32
    HAL.dll = "hal.dll".

    Action DeleteInfCacheFile of loading

    FilePathInWinDir delete the file: inf\INFCACHE.1

    Definition of loading GenericWin2k364Bit

    Definition of loading GenericVista64Bit

    Definition of loading GenericWinXP64Bit

    Definition of loading GenericWin64Bit

    Definition of loading NotWin64Bit

    Definition of loading GenericVista

    Definition of loading GenericWinNT5

    Definition of loading GenericWin2k3

    Definition of loading GenericWinXP

    Definition of loading GenericWin2k

    Definition of loading GenericWinNT4

    Definition of loading NotWinNT4

    Definition of loading NotWinVista

    Loading ACPI expression definition

    Definition of loading NotACPI

    Loading definition expression MultiProc

    Definition of loading InstallSVGA

    Definition of loading MustUpdateCoreNTFiles

    Definition of loading BuslogicMylex

    Definition of loading Buslogic_vmscsi

    Loading reconfiguration FixSetupLog

    Action FixSetupLog for reconfiguration of loading

    Loading reconfiguration BuslogicMylex

    Action BuslogicMylex for reconfiguration of loading

    Loading free reconfiguration

    Reconfiguration of loading free action

    Loading reconfiguration Buslogic_vmscsi_ACPI

    Action Buslogic_vmscsi for reconfiguration of loading

    Action Buslogic_vmscsi_ACPI for reconfiguration of loading

    Loading reconfiguration Buslogic_vmscsi_NotACPI

    Action Buslogic_vmscsi for reconfiguration of loading

    Action Buslogic_vmscsi_NotACPI for reconfiguration of loading

    Loading reconfiguration Enable_Lsi_Scsi_Driver

    Action Enable_Lsi_Scsi_Driver for reconfiguration of loading

    Loading reconfiguration Mouse_Keyboard_ACPI

    Action Mouse_Keyboard_Common for reconfiguration of loading

    Action Mouse_Keyboard_ISAPnP for reconfiguration of loading

    Action Mouse_Keyboard_ACPI for reconfiguration of loading

    Loading reconfiguration Mouse_Keyboard_NotACPI

    Action Mouse_Keyboard_Common for reconfiguration of loading

    Action Mouse_Keyboard_ISAPnP for reconfiguration of loading

    Action Mouse_Keyboard_NotACPI for reconfiguration of loading

    Loading reconfiguration Mouse_Keyboard_ACPI_Vista

    Action Mouse_Keyboard_Common for reconfiguration of loading

    Action Mouse_Keyboard_ACPI_Vista for reconfiguration of loading

    Loading reconfiguration SVGA_NT

    Action Common_SVGA_Updates for reconfiguration of loading

    Action NT_SVGA_Registry_Updates for reconfiguration of loading

    Loading reconfiguration SVGA_notNT_ACPI

    Action Common_SVGA_Updates for reconfiguration of loading

    Action SVGA_Registry_Updates_APCI for reconfiguration of loading

    Loading reconfiguration SVGA_notNT_NotACPI

    Action Common_SVGA_Updates for reconfiguration of loading

    Action SVGA_Registry_Updates_NotACPI for reconfiguration of loading

    Loading reconfiguration Restore_i8042_NT5

    Action Restore_i8042_NT5 for reconfiguration of loading

    Loading reconfiguration Deref_vpcsrvc

    Action Deref_vpcsrvc for reconfiguration of loading

    Loading reconfiguration Deref_mrxvpc

    Action Deref_mrxvpc for reconfiguration of loading

    Loading reconfiguration Deref_vpcmap

    Action Deref_vpcmap for reconfiguration of loading

    Loading reconfiguration Deref_vpc-s3_NT4

    Deref_vpc-s3_NT4 for reconfiguration of loading action

    Loading reconfiguration Deref_vpc-s3_NT5

    Deref_vpc-s3_NT5 for reconfiguration of loading action

    Loading reconfiguration Deref_vmsrvc

    Action Deref_vmsrvc for reconfiguration of loading

    Loading reconfiguration Deref_netfin

    Action Deref_netfin for reconfiguration of loading

    Loading reconfiguration Deref_cpqdmi

    Action Deref_cpqdmi for reconfiguration of loading

    Loading reconfiguration Deref_cpqalert

    Action Deref_cpqalert for reconfiguration of loading

    Loading reconfiguration Deref_cpqagent

    Action Deref_cpqagent for reconfiguration of loading

    Loading reconfiguration Deref_ipmi

    Action Deref_ipmi for reconfiguration of loading

    Loading reconfiguration RemoveUnwantedKeys

    Action RemoveUnwantedKeys for reconfiguration of loading

    Loading reconfiguration Delete_InfCacheFile

    Action DeleteInfCacheFile for reconfiguration of loading

    Load patches for WINDOWS4.0

    Load patches for WINDOWS4.0

    Load patches for WINDOWS4.0

    Load patches for WINDOWS4.0

    Try ufa_vmImporter

    Plugin path 5: ufa - vmimporter.dll

    Absolute path of the plugin 5: C:\Program VMware Converter Enterprise Agent\ufa - vmimporter.dll

    VMImporterPlugin Init

    VMDB channel name:
    .\pipe\vmware-converter-VMDB, use the SSL protocol: true

    New format for serialization of VMDB VMOMI

    Plugin has started

    UfaClientPlugin Start

    UfaSlavePlugin Start

    SysMigrationPlugin Start

    SysReconfigPlugin Start

    VMImporterPlugin Start

    vmware converter service started

    IVmdbPipe2Impl operation completed with error: the pipe is closed.

    Thanks in advance for any help provided!

    Cannot find anything on your error. It is sometimes better to install standalone converter locally on the server that you are trying to convert. Then run the converter locally on your virtual infrastructure.

    Best wishes / Saludos

    Por don't favor no olvides calificar las responses that you were should o ayuda valiosos.

    Please, do not forget the points of call of the "useful" or "correct" answers

    ________________________________________

    Nicolas Solop

    VMware vExpert 2010 - VCP 410 - VCP 310 - VAC - VTSP

    My Linkedin profile

    Join the Virtualizacion en Español group in LinkedIn

    ! http://feeds.feedburner.com/WetcomGroup.1.gif!

  • Need help-> custom authentication scheme

    Hey,.

    I am working on a custom authentication scheme.

    First, I create a test table:
    CREATE TABLE TBL_USER
      (
        USR_EMAIL VARCHAR2(40 BYTE) NOT NULL ENABLE,
        USR_ID    NUMBER NOT NULL ENABLE,
        USR_PW    VARCHAR2(255 BYTE) NOT NULL ENABLE,
        USR_ROLLE VARCHAR2(20 BYTE),
    CONSTRAINT "TBL_USER_PK" PRIMARY KEY ("USR_ID")
    );
    Then a function to hash the email and pw:
    create or replace
    function app_hash_test (p_email in varchar2, p_passwort in varchar2)
    return varchar2
    is
      l_passwort varchar2(4000);
      l_salt varchar2(4000) := 'DFS2J3DF4S5HG666IO7S8DJGSDF8JH';
                                
    begin
      l_passwort := utl_raw.cast_to_raw(dbms_obfuscation_toolkit.md5
      (input_string => p_passwort || substr(l_salt,10,13) || p_email ||
        substr(l_salt, 4,10)));
      return l_passwort;
    end;
    Then, a function of authentication:
    create or replace
    function app_auth_test (p_email in VARCHAR2, p_passwort in VARCHAR2)
    return number
    is
      l_passwort varchar2(4000);
      l_stored_passwort varchar2(4000);
      l_expires_on date;
      l_count number;
    begin
      select count(*) 
        into l_count 
        from tbl_user 
       where upper(usr_email) = upper(p_email);
    
      if l_count > 0 
      then
        select usr_pw 
          into l_stored_passwort
          from tbl_user 
          where upper(usr_email) = upper(p_email);
    
        l_passwort := app_hash_test(p_email, p_passwort);
    
        if l_passwort = l_stored_passwort 
        then
          return 1;
        else
          return 0;
        end if;
      else
        return 0;
      end if;
    end;
    After this, I create a form on the table tbl_user to insert the users by e-mail, password and rol (drop-down).

    On this Page (3), I create a new process to generate the hash value.
    begin
    :P3_usr_email := upper(:P3_usr_email);
    :P3_usr_pw := app_hash_test(:P3_usr_email,:P3_usr_pw);
    :P3_usr_email := lower(:P3_usr_email);
    end;
    After completing my page reg., I insert some users to test it later.

    The next step was to create a new authentication scheme in the shared components.
    Share components
    1. create
    2 starting at zero
    3. name-> TBL_USER
    4 JUMP
    5 JUMP
    6. the Page of this Application-> Page 1
    7 JUMP
    8 use my custom function to authenticate. -> return app_auth_test
    9 JUMP
    10 JUMP
    11 LOGOUT URL-> wwv_flow_custom_auth_std.logout? p_this_flow = APP_ID. & amp; p_next_flow_page_sess = & APP_ID.:1
    12. create schema

    My next step is to set the new regime as current-> current change

    I'm trying to open a session to my existing page with an e-mail and password in the tbl_user table.

    But all I got, is an error message:

    ORA-06550: line 2, column 8: PLS-00306: wrong Anzahl oder Typen von illuminated by von call 'APP_AUTH_TEST' ORA-06550: 2 line, column 1: PL/SQL: statement ignored

    ERR Fehler - 10460 implement von Funktion zum Prufen der Authentifizierungs-ID-Daten nicht possible.

    Translattion:
    Wrong number or type of argument in the call to 'APP_AUTH_TEST' ORA-06550: 2 line, column 1: PL/SQL: statement ignored

    Error ERR-10460 perform the function of evidence authentication-ID data - is not possible.

    I have check the operation, but it seems ok!
    does anyone know, what I forgot? Perhaps some parameters in the Login Page?

    NEDO

    Edited by: Mr.Nedo the 12.04.2011 07:55

    Your authentication (app_auth_test) matching mist signature exactly as shown in the window help or documentation.

    function app_auth_test (p_email in VARCHAR2, p_passwort in VARCHAR2) RETURN NUMBER

    differs from the documentation

    (p_username in varchar2, p_password in varchar2) return a Boolean value

    Change function app_auth_test so that it matches with the signature expected (return type and the parameter names and types) or write a wrapper for him with this signature and use that work more like authentication.

  • Custom authentication scheme

    Dear community,

    I tried to create a custom authentication scheme based on a tutorial. But seemed to fail since the tutorial works on version 4.0 and I'm working on 4.1.

    Step 1. create table user_repository)
    username varchar2 (8).
    VARCHAR2 (8) password,.
    primary key (username)
    );

    Step 2 insert into user_repository values ('John', '1234');

    Step 3.

    create or replace package pkg_auth as
    function authenticate (p_username in varchar2,
    p_password in varchar2) return Boolean;
    end;

    create or replace package body pkg_auth as
    function authenticate (p_username in varchar2,
    p_password in varchar2) return Boolean is
    v_result integer: = 0;
    Start
    Select 1
    in v_result
    of user_repository
    where username = lower (p_username)
    and password = p_password;
    Return (v_result = 1);
    exception
    When no_data_found then
    Returns false;
    end to authenticate;
    end;

    Step 4. They want to create an authentication scheme from scratch, which does not exist in 4.1 (so it fails pretty well by already). I created a (based on some configs by default) normal authentication scheme.

    Step 5 They want to fill me this service "customized to authenticate": return pkg_auth.authenticate;
    Unfortunenately this functionality is not there either.


    Theyre talking passhashing, who used to work since I don't even get the normal authentication scheme to work.
    If someone could help me to create a custom authentication scheme based on the table in * 4.1, that wouldve was awesome.

    Authentication and authorization have been cleaned up to 4.1

    Create a schema of authentication "based on a pre-configured gallery system", and then select the type of theme of "custom".
    You can place your pl/sql code in the source field, or keep it in your database.
    Set your pkg_auth.authenticate in the field "name of the function of authentication.

    Final note - you should not really store plaintext passwords - I hope that this example of coding has been for the demo only. Check the past of examples that use the custom_hash function, for example.

    Scott

  • Error message "the computer restarted unexpectedly or encountered an unexpected error" after starting the system on Windows 7 Recovery.

    While trying to reinstall Windows 7 on my Dell Inspiron 1545 of the reinstall DVD after you have installed a hard drive again, I got this message: error message "the computer restarted unexpectedly or encountered an unexpected error" after starting the system on Windows 7 Recovery. Tried F10, SHIFT F10 and nothing happened. Then I tried a suggestion of virtual Agent to press F8 to get to advance Boot Options, but this option does not appear! Help!

    For Dell cptrs, you will need to press F12 to access the unique Boot Order Menu(= a temporary setting), little after the Dell logo appears on the desktop. U hv only 5 seconds to do, b4 the cptr will automatically initialize to top with the internal HARD disk.

    ....... F12 is usually used to start the cptr since the DVD player or a plugged in USB-flash drive with a Win 7 install or recovery media.

    To permanently change the boot order, you must similarly press F2 to access the full Boot configuration Menu. The default boot device is the internal HARD drive, but this can be changed to DVD player, USB, disk, network drive, etc. F2 is usually used to start the cptr of an external hard drive(= USB HDD) that contains a bootable Linux operating system.

  • I have an error after installing the Adobe reader on my computer.

    I have an error after installing the Adobe reader on my computer.

    Windows 7-64 bit

    I'd appreciate any help to solve this problem.

    Thank you

    Clinton

    Post edited by: Clinton Rodriguez

    Please check this, it should have the solution: https://helpx.adobe.com/acrobat/kb/application-file-icons-change-acrobat.html

  • Error after using the FND_RESPONSIBILITY_PKG. DELETE_ROW

    Hello

    I get the error after using the FND_RESPONSIBILITY_PKG. DELETE_ROW, when I want to create respectively with the same name.

    Oracle error 20001:Oracle - 20001:FND_CANT_INSERT_USER_ROLE has been detected in FND_USER_RESP_GROUPS_API. INSERT_ASSIGNMENT

    Dear user,

    check the next ML doc
    839423.1
    559347.1
    330350.1

    Kind regards
    Taj

  • Custom authentication scheme, problem with LOGOUT_URL

    Hi all
    I use a custom database of authentication scheme in a 4.1 application. I have a problem when I logout, I use jQuery mobile because it is a tablet based application, and the navigation bar entry "Logout" is rendered using the following: -.

    a href = "& LOGOUT_URL." data-icon = "Logout" class = "interface user-btn-right" > logout ' "

    The application appears disconnected OK, I turned around to my 101 login page, but when I try to reconnect the page refreshes just, if I try again to connect, I'm connected to OK (so basically users will have to try twice to reconnect after disconnection, while the connection when the application is started first works OK).

    When I logout and I return on page 101, the URL is: -.

    < my host > /pls/apex/apex_authentication.logout?p_app_id=1000 & p_session_id = 882879595907101

    After the first attempt to connect to the URL is (so the session ID has been updated);

    < my host > / pls/apex/f? p = 1000:LOGIN:1610821365546101

    Any ideas what I'm missing here?

    Thank you

    Mike

    Published by: Mike, UK 21 June 2012 08:36

    Hi Mike,.

    I replied the same day. In case you have not received my mail, I'll paste it below:

    What I've discovered, is that submit it on the login page seems to use the old session id:

      1. User enters http://mike/pls/apex/f?p=1150:1
         -> Apex creates a new session and redirects to
            f?p=1150:LOGIN:168921246845801
      2. User enters credentials and presses Login
         -> wwv_flow.accept with p_instance=168921246845801
         -> Apex authenticates user and redirects to page 1
            f?p=1150:1:168921246845801:::::
      3. User clicks Logout
         -> apex_authentication.logout?p_app_id=1150&p_session_id=168921246845801
         -> Apex removes session
         -> Apex redirects to home page f?p=1150:1
         -> Apex creates new session and redirects to login
            f?p=1150:LOGIN:1175456815657401
      4. User enters credentials and presses Login
         -> wwv_flow.accept with p_instance=168921246845801 -- WRONG SESSION ID!
         -> Apex sees that the session id and the session cookie value do
            not match
         -> Apex creates a new session and redirects to login
            f?p=1150:LOGIN:652507970485801
    

    My solution to this problem was to change the page to page 1 model to
    have one

    data-ajax = "false".

    attribute on the logout url. This seems to have done the trick, but I'm
    a backend guy and certainly not an expert in the user interface. See

    http://jquerymobile.com/test/docs/pages/page-links.html

    for help online JQM.

    See you soon,.
    Christian

  • Error after activating the framework files

    After activating the files, when I click the files link under browse content, I get this error. Can anyone suggest how to fix?

    Event generated by the user 'weblogic' host 'localhost:16200 '. Could not generate the HTML page. Unable to evaluate the function "fldPinToStart". Null pointer is dereferenced. [Details]

    An error has occurred. The stack trace below shows more information.

    ! csUserEventMessage, weblogic, localhost:16200! $! csPageMergerUnableToGenerateHtmlPage! csDynHTMLReportMsgFunction, fldPinToStart! $! syNullPointerException

    intradoc.common.ServiceException:! csPageMergerUnableToGenerateHtmlPage

    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2220)

    at intradoc.server.Service.buildServiceException(Service.java:2404)

    at intradoc.server.Service.createServiceExceptionEx(Service.java:2398)

    at intradoc.server.Service.createServiceException(Service.java:2393)

    at intradoc.server.Service.buildResponsePage(Service.java:1403)

    at intradoc.server.Service.doResponse(Service.java:2162)

    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:833)

    at intradoc.server.Service.doRequest(Service.java:1976)

    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:520)

    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)

    at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1358)

    at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1735)

    at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:223)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

    at java.lang.reflect.Method.invoke(Method.java:606)

    at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87)

    at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305)

    at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278)

    to idcservlet. ServletUtils.executeContentServerIntegrateMethodOnConfig (ServletUtils.java:1681)

    to idcservlet. IdcFilter.doFilter (IdcFilter.java:457)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:138)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:464)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:121)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:211)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to oracle.security.jps.ee.http.JpsAbsFilter$ 1.run(JpsAbsFilter.java:138)

    at java.security.AccessController.doPrivileged (Native Method)

    at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)

    at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:464)

    at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:121)

    at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:211)

    at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)

    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.wrapRun (WebAppServletContext.java:3730)

    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3696)

    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)

    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)

    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)

    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)

    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)

    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)

    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    Caused by: java.io.IOException:! csDynHTMLReportMsgFunction, fldPinToStart

    at intradoc.common.DynamicHtmlMerger.createIOException(DynamicHtmlMerger.java:2622)

    at intradoc.common.DynamicHtmlMerger.evaluateGrammarElement(DynamicHtmlMerger.java:1232)

    at intradoc.common.DynamicHtmlMerger.substituteVariable(DynamicHtmlMerger.java:626)

    at intradoc.common.DynamicHtml.substituteVariable(DynamicHtml.java:1394)

    at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:1110)

    at intradoc.common.DynamicHtml.outputHtmlFromStart(DynamicHtml.java:1020)

    at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:1227)

    at intradoc.common.DynamicHtml.outputHtmlFromStart(DynamicHtml.java:1020)

    at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:1227)

    at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:1130)

    at intradoc.common.DynamicHtml.outputHtmlFromStart(DynamicHtml.java:1020)

    at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:1227)

    at intradoc.common.DynamicHtml.outputHtmlFromStart(DynamicHtml.java:1020)

    at intradoc.common.DynamicHtml.outputHtml(DynamicHtml.java:991)

    at intradoc.common.DynamicHtmlMerger.outputDynamicHtmlPage(DynamicHtmlMerger.java:2037)

    at intradoc.server.Service.buildResponsePage(Service.java:1356)

    ... more than 45

    Caused by: intradoc.common.ServiceException:

    * ScriptStack! csDynHTMLStackDumpStart, weblogic, IdcService = FLD_BROWSE & fFolderGUID = FLD_ROOT & doMarkSubscribed = 1. $

    ! csDynHTMLStackElementWithFilename,fld_browse_content,C:/Oracle/Oracle_ECM1/ucm/idc/components/FrameworkFolders/templates/fld_browse.htm,84,3!$

    ! csDynHTMLStackElementWithFilename,fld_folder_listing,C:/Oracle/Oracle_ECM1/ucm/idc/components/FrameworkFolders/resources/frameworkfolders_dynhtml.idoc,189,5!$

    ! csDynHTMLStackElementWithFilename,fld_prepare_folder_listing_table,C:/Oracle/Oracle_ECM1/ucm/idc/components/FrameworkFolders/resources/frameworkfolders_dynhtml.idoc,539,4!$

    ! csDynHTMLErrorMessage,C:/Oracle/Oracle_ECM1/ucm/idc/components/FrameworkFolders/resources/frameworkfolders_dynhtml.idoc,589,4!csDynHTMLReportMsgFunction,fldPinToStart!$

    -& #62; & #60; $fldPinToStart ("Folder") & #62;

    -& #62; & #60; $if pinnedNumFolders$ & #62;

    -& #62; & #60; script & #62;

    at intradoc.common.DynamicHtmlMerger.evaluateGrammarElement(DynamicHtmlMerger.java:1217)

    ... more than 59

    Caused by: java.lang.NullPointerException

    at intradoc.data.IdcProperties.getProperty(IdcProperties.java:132)

    at intradoc.data.IdcProperties.get(IdcProperties.java:102)

    at intradoc.folders.FoldersUtils.getAllowMissingFromParameters(FoldersUtils.java:533)

    at intradoc.folders.FolderItemFactoryUtils.constructFolderItemFromParameters(FolderItemFactoryUtils.java:536)

    at intradoc.folders.FolderItemFactoryUtils.constructFolderItemFromFolderInfo(FolderItemFactoryUtils.java:729)

    at intradoc.folders.FolderItemFactoryUtils.pinToStart(FolderItemFactoryUtils.java:2728)

    at intradoc.folders.FoldersScriptExtensions.evaluateFunction(FoldersScriptExtensions.java:334)

    at intradoc.common.DynamicHtmlMerger.computeFunction(DynamicHtmlMerger.java:1460)

    at intradoc.common.DynamicHtmlMerger.evaluateGrammarElement(DynamicHtmlMerger.java:915)

    ... more than 59

    You have installed any custom component, or any existing component enabled after moving to records framework? Can you check if there is any data in the table FolderFiles and FolderFolders?

  • Tecra A - Toshiba Power Saver error after loading the OS

    I have two problems with my XP Pro SP3 operating system

    (1) immediately after loading the OS, I got this error message

    http://photoserver.WS/images/oCVJ4c25d94898215.PNG

    (2) and my job doesn'r to reboot. Stüch Windows HE is shoting down, and I have to manually to swith out of turn.

    How to solve this problem?

    I don't know much about your model, but I think you should update a powerhouse of Eve:

    [Toshiba drivers | http://eu.computers.toshiba-europe.com/innovation/download_drivers_bios.jsp]

  • SideBySide errors after installing the game.

    0

    I installed a game (netKar pro) in XP 32and now find littered the observer of events with the following errors - these below after simply copying some files from one place to another on the same drive. :

    Event source: SideBySide
    Event category: no
    Event ID: 59 generate activation context failed for C:\WINDOWS\System32\erasext.dll. Reference error message: the operation completed successfully.
    .

    Event source: SideBySide
    Event category: no
    Event ID: 59

    Solves the that partial assembly failed for Microsoft.VC90.MFC. Reference error message: the referenced assembly is not installed on your system.
    .

    Event type: error
    Event source: SideBySide
    Event category: no
    Event ID: 32

    Dependent Assembly Microsoft.VC90.MFC could not be found and last error was that the referenced assembly is not installed on your system.

    Event type: error
    Event source: SideBySide
    Event category: no
    Event ID: 59

    Description:
    Generate activation context failed for C:\WINDOWS\System32\erasext.dll. Reference error message: the operation completed successfully.
    .

    Event type: error
    Event source: SideBySide
    Event category: no
    Event ID: 59

    Description:
    Solves the that partial assembly failed for Microsoft.VC90.MFC. Reference error message: the referenced assembly is not installed on your system.

    Something has been corrupted/crashed? How to get back to where I was?

    System:
    XP Pro. service pack 3
    Abit IN9-32 Max
    BFG GTX 285
    Core 2 duo Intel E6700 2.67GHz
    2G Corsair Twinx DDR2 6400 C 4
    SATA2 Seagate 2x500G
    X-fi Fatality
    850W Coolermaster Real Power Pro RS-850-EMBA
    Reference Dell 2407WFP (1920 x 1200 x 32)
    No overclocking

    Hello

    You can try to install the Visual C++ Redistributable package to your computer and check if this helps solve the problem.

    http://www.Microsoft.com/downloads/en/details.aspx?FamilyId=a7b7a05e-6de6-4D3A-A423-37bf0912db84

    Follow the above, given the link to download and install.

    You can ignore the error message in the event log.

    Hope this information is useful.

    Amrita M

    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Save the custom URL scheme

    Hello!

    Is it possible to save a custom url scheme so that the system will launch my application when the user clicks on a link in the form "customscheme://idontcareaboutthefqdn/"?

    I know you can record a complete domain name by using HttpFilterRegistry, but I really want to react to a plan.

    P.S.: As always, I forgot to include the most important information...
    BB 6.0.0 API

    THX

    A few quick answers:

    (1) ignore, memory shows just a nodule not RIM started

    (2) interesting

    (3) care

    Now, I have a theory here.  I think you are trying to add the template registry etc until your application has actually started.

    If you look at this statement:

    PatternRepository.addPattern (ApplicationDescriptor.currentApplicationDescriptor (), "^ regime:-/-/ \\S*",)

    This is handled in your main() and main is no NOT part of your application - it is used to start your application.  (in fact it becomes part of your Application, but it's out of reach for the moment). So what makes ApplicationDescriptor.currentApplicationDescriptor () actually refers to?  A null descriptor, perhaps?

    I would try to reworjk that so as the record of the model becomes an integral part of your Application, so that ApplicationDescriptor.currentApplicationDescriptor (done) actually refers to the application you want.  Something along these lines - do 'with it ':

        public static void main(String[] args) {
            MyApp theApp = new MyApp (args);
            theApp.enterEventDispatcher();
        }
    
        public MyApp(String [] args) {
            this.invokeLater(new Runnable() {
                public void run() {
                    // In here.....
                }
            });
        }
    

    Note, this is just a theory, I have not tested this.

Maybe you are looking for