Error While running WLST script to create SOA Domain in Clustered Environme

Hi,
I am trying to run WLST script to create SOA Domain in clustered environment.The script is as follows.
import sys
print "@@@ Starting the script ..."
global props
from wlstModule import *#@UnusedWildImport
from java.io import FileInputStream
from java.io import File
#=======================================================================================
# Create Boot Properties File
#=======================================================================================
def createBootPropertiesFile(directoryPath, username, password):
adminserverDir = File(directoryPath)
bool = adminserverDir.mkdirs()
fileNew=open(directoryPath + '/boot.properties', 'w')
fileNew.write('username=%s\n' % username)
fileNew.write('password=%s\n' % password)
fileNew.flush()
fileNew.close()
def createNodeManagerPropertiesFile(directoryPath, username, password):
adminserverDir = File(directoryPath)
bool = adminserverDir.mkdirs()
fileNew=open(directoryPath + '/nm_password.properties', 'w')
fileNew.write('username=%s\n' % username)
fileNew.write('password=%s\n' % password)
fileNew.flush()
fileNew.close()
def createAdminStartupPropertiesFile(directoryPath, args):
adminserverDir = File(directoryPath)
bool = adminserverDir.mkdirs()
fileNew=open(directoryPath + '/startup.properties', 'w')
args=args.replace(':','\\:')
args=args.replace('=','\\=')
fileNew.write('Arguments=%s\n' % args)
fileNew.flush()
fileNew.close()
I am getting the error :
Problem invoking WLST - Traceback (innermost last):
(no code object) at line 0
File "D:\Oracle\Middleware\Oracle_SOA1\bin\SOADomainScript.py", line 11
adminserverDir = File(directoryPath)
^
SyntaxError: invalid syntax
Do i need to set any jar in the classpath? Already jython.jar is available in the classapath.
Thanks in advance.
Regards,
Subha

Hi,
I am trying to run WLST script to create SOA Domain in clustered environment.The script is as follows.
import sys
print "@@@ Starting the script ..."
global props
from wlstModule import *#@UnusedWildImport
from java.io import FileInputStream
from java.io import File
#=======================================================================================
# Create Boot Properties File
#=======================================================================================
def createBootPropertiesFile(directoryPath, username, password):
adminserverDir = File(directoryPath)
bool = adminserverDir.mkdirs()
fileNew=open(directoryPath + '/boot.properties', 'w')
fileNew.write('username=%s\n' % username)
fileNew.write('password=%s\n' % password)
fileNew.flush()
fileNew.close()
def createNodeManagerPropertiesFile(directoryPath, username, password):
adminserverDir = File(directoryPath)
bool = adminserverDir.mkdirs()
fileNew=open(directoryPath + '/nm_password.properties', 'w')
fileNew.write('username=%s\n' % username)
fileNew.write('password=%s\n' % password)
fileNew.flush()
fileNew.close()
def createAdminStartupPropertiesFile(directoryPath, args):
adminserverDir = File(directoryPath)
bool = adminserverDir.mkdirs()
fileNew=open(directoryPath + '/startup.properties', 'w')
args=args.replace(':','\\:')
args=args.replace('=','\\=')
fileNew.write('Arguments=%s\n' % args)
fileNew.flush()
fileNew.close()
I am getting the error :
Problem invoking WLST - Traceback (innermost last):
(no code object) at line 0
File "D:\Oracle\Middleware\Oracle_SOA1\bin\SOADomainScript.py", line 11
adminserverDir = File(directoryPath)
^
SyntaxError: invalid syntax
Do i need to set any jar in the classpath? Already jython.jar is available in the classapath.
Thanks in advance.
Regards,
Subha

Similar Messages

  • Error While Running WLST

    Hi,
    I am getting following error while running WLST using ANT.
    Traceback (innermost last):
    File "<iostream>", line 13, in ?
    ImportError: no module named weblogic
    We have written our custom ant task to create WLST script and invoke it from there. Other details of environment>>>
    1. Weblogic 8.1sp5
    2. Ant 1.6.5
    I added debug statements in the custom task and found that it has failed in creating WLSTInterpreter instance.
    Detailed Stacktrace...
    at org.python.core.Py.ImportError(Py.java)
    at org.python.core.imp.import_first(imp.java)
    at org.python.core.imp.import_name(imp.java)
    at org.python.core.imp.importName(imp.java)
    at org.python.core.ImportFunction.load(__builtin__.java)
    at org.python.core.ImportFunction.__call__(__builtin__.java)
    at org.python.core.PyObject.__call__(PyObject.java)
    at org.python.core.__builtin__.__import__(__builtin__.java)
    at org.python.core.imp.importOne(imp.java)
    at org.python.pycode._pyx0.f$0(<iostream>:13)
    at org.python.pycode._pyx0.call_function(<iostream>)
    at org.python.core.PyTableCode.call(PyTableCode.java)
    at org.python.core.PyCode.call(PyCode.java)
    at org.python.core.Py.runCode(Py.java)
    at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java)
    at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java)
    at weblogic.management.scripting.utils.WLSTInterpreter.<init>(WLSTInterpreter.java:35)
    In case anyone has faced this error before please suggest.
    Thanks in Advance.

    Hi,
    Solved it by putting weblogic.jar, jython.jar & wlst.jar in system classpath.
    Thanks.

  • Error while running OMBPlus Script

    Hi,
    I am getting below error while running OMBPlus script.
    +../../../jdk/bin/java[87]: getconf: not found+
    OMB*Plus: Release 9.2.0.4.0
    Copyright (c) 2003 Oracle Corporation. All rights reserved.
    Exception in thread "main"
    I am not even able to run ./OMBPlus.sh.
    Can anyone help me on this?
    Thanks in advance,
    Regards,
    Sachin Bansal

    Hi Nawneet,
    Thanks for the reply..
    I tried the same thing on our server. But there also I am getting the same error.
    Am I missing anything?
    What I am doing is:
    1. Created one .tcl file (deploy_map.tcl).
    2. Going to path where OMBPlus.sh resides i.e.$OWB_HOME/bin/unix
    3.Then I called ./OMBPlus.sh and passed the path of deploy_map.tcl as an argument.
    For e.g. if path of deploy_map.tcl is /abc/xyz/deploy_map.tcl
    Then I would call OMBPlus like below:
    ./OMBPlus.sh /abc/xyz/deploy_map.tcl
    Even if I would not pass any argument then still it should be connected to OMBPlus. But that's not happening.
    Regards,
    Sachin Bansal

  • Error while running InstallOracleProfile script

    good evening every one,
    i have installed odac for VS 2010,while running the InstallOracleProfile script the following error occurs can any one help me in solving this problem.im using windows os. the error as follows
    Connected.
    ------ Running 'C:\Users\johny.OOMSYSTECH.000\Desktop\prakash\odac_path\product\11.2.0\client_1\ASP.NET\SQL\InstallOracleProfile.sql' @PRAKASH.orcl ------
    USER
    PRAKASH
    old 33: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_GetProperties FOR &CurrentUser..ora_aspnet_Prof_GetProperties';
    new 33: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_GetProperties FOR PRAKASH.ora_aspnet_Prof_GetProperties';
    old 34: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_SetProperties FOR &CurrentUser..ora_aspnet_Prof_SetProperties';
    new 34: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_SetProperties FOR PRAKASH.ora_aspnet_Prof_SetProperties';
    old 35: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_GetNOfInactPf FOR &CurrentUser..ora_aspnet_Prof_GetNOfInactPf';
    new 35: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_GetNOfInactPf FOR PRAKASH.ora_aspnet_Prof_GetNOfInactPf';
    old 36: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_GetProfiles FOR &CurrentUser..ora_aspnet_Prof_GetProfiles';
    new 36: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_GetProfiles FOR PRAKASH.ora_aspnet_Prof_GetProfiles';
    old 37: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_DeleteProfiles FOR &CurrentUser..ora_aspnet_Prof_DeleteProfiles';
    new 37: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_DeleteProfiles FOR PRAKASH.ora_aspnet_Prof_DeleteProfiles';
    old 38: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_DeleteInactPf FOR &CurrentUser..ora_aspnet_Prof_DeleteInactPf';
    new 38: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_DeleteInactPf FOR PRAKASH.ora_aspnet_Prof_DeleteInactPf';
    old 39: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_pkg FOR &CurrentUser..ora_aspnet_Prof_pkg';
    new 39: execute immediate 'CREATE PUBLIC SYNONYM ora_aspnet_Prof_pkg FOR PRAKASH.ora_aspnet_Prof_pkg';
    PL/SQL procedure successfully completed.
    Package created.
    Package body created.
    Function created.
    Function created.
    Function created.
    Function created.
    Function created.
    Function created.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    GRANT ora_aspnet_Prof_BasicAccess TO ora_aspnet_Prof_FullAccess
    ERROR at line 1:
    ORA-01919: role 'ORA_ASPNET_PROF_BASICACCESS' does not exist
    GRANT ora_aspnet_Prof_ReportAccess TO ora_aspnet_Prof_FullAccess
    ERROR at line 1:
    ORA-01919: role 'ORA_ASPNET_PROF_REPORTACCESS' does not exist
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    Grant succeeded.
    ---------------------- Done ----------------------
    thank you
    prakash

    Earlier in the script, the following CREATE statements were called:
    -- Create roles. Create role privilege is required.
    execute immediate 'CREATE ROLE ora_aspnet_Prof_BasicAccess';
    execute immediate 'CREATE ROLE ora_aspnet_Prof_ReportAccess';
    execute immediate 'CREATE ROLE ora_aspnet_Prof_FullAccess';
    If they didn't succeed, that would explain the GRANT errors you see. If you didn't grant the CREATE ROLE privilege to the user, that would explain why CREATE ROLE calls failed.

  • Data access error while running  the script in fdm workbench script editor

    Hello Experts,
    I have been getting the error when i run the script in script editor of fdqm workbench client.this is the error
                              -2147467259 Data access error and it is navigating the error at line 30 about this script "Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)"
    Please revert me asap where i should load the data from peoplesoft to one of my planning database through fdm.
    Thanks in advance...

    Hi,
    Thanks for your suggestion's here i am going to run the datapump script so while i am running in workbench it is throwing data access error.So as you guy's suggested i created one import format and added this script to that import format which is added to one of my location even it is throwing the same error.I am getting the error at this sentence   "strWorkTableName" I want to know what is this where it reflect's?So my question is Is there any difference while running data pump or integration script.Please let me know a detailed navigation steps to run this script's with out data access error to run these kind of scripts.
    Note:Again my target is to load the data to planning database through fdqm which i am doing through sql statement's.
    Suggest your valuable suggestion's
    Thanks in advance...
    I am getting the error at this sentence   "strWorkTableName" I want to know what is this where it reflect's?

  • Getting error while running shell scripts

    Hi DBAS,
    I Have one requirement,i want connect n database dynamically by using dynamic password and execute some oracle commands,i written some script ,but while running i am getting error,please any one correct my error ,i am not able to getting error
    passwrd.pw like this
    abc@abc
    aaa@aaa
    # vi healthcheck.ksh
    #!/bin/ksh
    export PW=`cat /applis/forum/pune/dbhealthchecks/.pw/passwrd.pw`
    for (( i = 0 ; i < ${#PW[@]} ; i++ ))
    do
    sqlplus -s larry/$PW<<EOI
    spool sysdate.dat
    select sysdate from dual;
    done
    exit;
    EOI
    error :
    line 2: syntax error at line 11: `for' unmatched
    thanks!
    larry
    Edited by: tmadugula on Mar 18, 2011 6:26 AM

    Could you explain the reason for the for loop and connection attempts while incrementing var $i?
    It is also no a good idea to provide a password at the command line since it can be seen with 'ps' command.
    Better:
    sqlplus -s <<-EOI
    connect larry/$PW
    etc.

  • IDCS5-win. Error while running a script from indesign(not via estk)

    Hi all,
    After running the script from indesign, I get following error
    ASSERT '(engine->getDebugFlags() & ScScript::kExtendedErrors) == ScScript::kExtendedErrors' in ..\..\..\source\components\script\javascript\JavaScriptRunner.cpp at line 412 failed.
    ..\..\..\source\components\script\javascript\JavaScriptRunner.cpp (412)
    any idea about this?
    The script runs fine when run from ES tool kit.
    Thanks

    Hi,
    My colleague found the problem. We were using extendables library and we still haven't figured out what was actually happening, but removing it solved the problem.

  • Error while running the script

    Hi all,
    when i try to run a script in oracle it is failing throwing the error
    'ORA-00913: too many values
    ORA-06512: at "scema_name.procedure_name", line 229
    ORA-06512: at line 1"
    please help me out....
    Thanks in advance
    Ismail

    I think the procedure can accept only one value & u r trying to fetch more than 1 value , that's y problem occur . u've to use
    1)cursor for resolving this problem
    or
    2)write an exception
    exception
    When TOO_MANY_ROWS Then
    --Code                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Getting Error while running a script.

    I just installed InDesign Server to our Server and then
    <br />I ran a simple script "hello world" which is embbeded to ASP web programming
    <br />test.asp
    <br /><%<br />Set myInDesignServer = CreateObject("InDesignServer.Application.CS3") <br />Set myDocument = myInDesignServer.Documents.Add <br />Set myPage = myDocument.Pages.Item(1) <br />Set myTextFrame = myPage.TextFrames.Add <br />myTextFrame.GeometricBounds = Array("6p0", "6p0", "18p0", "18p0") <br />myTextFrame.Contents = "Hello World!" <br />myDocument.Save server.MapPath(".") & "\HelloWorld.indd" <br />myInDesignServer.Documents.Item(1).Close<br />set myInDesignServer = nothing<br />%>
    <br />
    <br />and found this error:
    <br />Microsoft VBScript runtime (0x800A01AD)
    <br />ActiveX component can't create object:
    <br />'InDesignServer.Application.CS3'
    <br />/test/test.asp, line 3
    <br />
    <br />anyone knows about the error?
    <br />Please, help me.
    <br />
    <br />Thanks.

    It sounds like its a security issue. The user that runs InDesign server needs access to various files and folders. In the standard setup it will be the IIS_WPG or Network Service that runs the server, and I think thats what courses your problem.
    In the component manager (Component Services) you will be able to set a different user to launch the InDesign server. Find the Adobe InDesign Server Application under the DCOM Config node, and select Properties, then select Identity. If you instead of The launching user selects This user and then specifies a user with Administrator rights, I think it will work
    But can anyone tell me what rights are required to run the application? I dont hope that it has to be an Administrator account??? I tried with a Power User, but it did not work

  • Getting Error while Running Agentdownload Script

    Hi
    All
    I am Installing agent via agentdownload script using windows server on both side.
    But somehow I am getting error like this
    C:\>cscript.exe agentDownload.vbs -b c:\OEMAGENT -m wsi-woodstock.psi.nd.edu -r 4889
    Microsoft (R) Windows Script Host Version 5.6
    Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
    Unrecognized option
    Usage: AgentDownload [bcdhilmnoprstu]
    Do you know how to resolve problem?
    Thanks,
    Vishal

    Hi
    All,
    I am getting this error I don't know why.. that .rsp file already exist on that machine..
    C:\>cscript.exe agentDownload.vbs b c:\OEMAGENT m wsi-woodstock.wsi.nd.gov r 4889
    Microsoft (R) Windows Script Host Version 5.6
    Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
    c:\OEMAGENT
    C:\
    C:\agtDownload102
    baseDir is created
    cmd is:WGET.exe http://wsi-woodstock.psi.nd.edu:4889/agent_download/10.2.0.2.0/
    agent_download.rsp
    C:\agentDownload.vbs(77, 4) (null): The system cannot find the file specified.
    Thanks,
    Vishal

  • Error while running the script ValidateRollup

    STACK TRACE
    TXK::Error::abort('TXK::Error', 'HASH(0x815eae0)') called at /data/apps/clone/5985992/fnd/perl/TXK/Common.pm line 299 TXK::Common::doError('TXK::SQLPLUS=HASH(0x8c3240c)', 'SQLPLUS error: buffer=^J^JSQL*Plus: Release 8.0.6.0.0 - Production...', undef) called at /data/apps/clone/5985992/fnd/perl/TXK/Common.pm line 314
    TXK::Common::setError('TXK::SQLPLUS=HASH(0x8c3240c)', 'SQLPLUS error: buffer=^J^JSQL*Plus: Release 8.0.6.0.0 - Production...') called at /data/apps/clone/5985992/fnd/perl/TXK/SQLPLUS.pm line 832
    TXK::SQLPLUS::_doExecute('TXK::SQLPLUS=HASH(0x8c3240c)', 0) called at /data/apps/clone/5985992/fnd/perl/TXK/SQLPLUS.pm line 234
    TXK::SQLPLUS::execute('TXK::SQLPLUS=HASH(0x8c3240c)', 'HASH(0x8cfbe4c)') called at /data/apps/clone/5985992/fnd/perl/TXK/TechstackDB.pm line 601
    TXK::TechstackDB::_getSQLValue('TXK::TechstackDB=HASH(0x8784b3c)', 'SELECT lower(node_name)||\'.\'||lower(domain)||\',\' FROM fnd_no...') called at /data/apps/clone/5985992/fnd/perl/TXK/TechstackDB.pm line 565
    TXK::TechstackDB::getSQLValue('TXK::TechstackDB=HASH(0x8784b3c)', 'SELECT lower(node_name)||\'.\'||lower(domain)||\',\' FROM fnd_no...') called at /data/apps/clone/5985992/fnd/perl/TXK/Validate.pm line 3235
    97,0-1 91%

    Do a which perl. Are you using the iAS/Apache/perl/bin version?
    What is your OS?

  • Getting error while running baseline_update.sh

    Hi, getting the below error while running baseline_update script:
    [10.22.13 16:57:17] INFO: Pushing authoring content to dgraph: AuthoringDgraph
    [10.22.13 16:57:17] SEVERE: Service Unavailable (503):
    Occurred while executing line 5 of valid BeanShell script:
    2|
    3|        compId = invokingObject.getElementId();
    4|        log.info("Publishing Workbench 'authoring' configuration to MDEX '" + compId + "'");
    5|        IFCR.pushAuthoringContentToDgraphById(compId);
    6|
    7|
    [10.22.13 16:57:17] WARNING: Caught an exception while executing post-startup script for server component 'AuthoringDgraph'.
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by com.endeca.soleng.eac.toolkit.utility.IFCRUtility$HttpStatusException
    com.endeca.soleng.eac.toolkit.utility.IFCRUtility execute - Service Unavailable (503):
    [10.22.13 16:57:17] INFO: [AuthoringMDEXHost] Starting shell utility 'rmdir_dgraph-input-old'.
    [10.22.13 16:57:18] INFO: [LiveMDEXHostA] Starting shell utility 'cleanDir_local-dgraph-input'.
    [10.22.13 16:57:18] SEVERE: Error communicating with EAC agent while starting utility 'cleanDir_local-dgraph-input'.
    Occurred while executing line 7 of valid BeanShell script:
    4|    AuthoringDgraphCluster.copyIndexToDgraphServers();
    5|    AuthoringDgraphCluster.applyIndex();
    6|
    7|    LiveDgraphCluster.cleanDirs();
    8|    LiveDgraphCluster.copyIndexToDgraphServers();
    9|    LiveDgraphCluster.applyIndex();
    10|
    [10.22.13 16:57:18] SEVERE: Error executing valid BeanShell script.
    Occurred while executing line 29 of valid BeanShell script:
    26|        Dgidx.run();
    27|
    28|        // distributed index, update Dgraphs
    29|        DistributeIndexAndApply.run();
    30|
    31|        // Upload the generated dimension values to Workbench
    32|        WorkbenchManager.cleanDirs();
    [10.22.13 16:57:18] SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by com.endeca.soleng.eac.toolkit.exception.EacCommunicationException
    com.endeca.soleng.eac.toolkit.utility.Utility start - Error communicating with EAC agent while starting utility 'cleanDir_local-dgraph-input'.
    Caused by com.endeca.eac.client.EACFault
    sun.reflect.NativeConstructorAccessorImpl newInstance0 - null
    Please help??

    Hi TimK,
    File is empty.Nothing is there.I am using windows8 .
    Please help .

  • Error while running my javascript file

    I got javascript error while running my script file through visual basic. But i did not get error if i run the script strightly through script folder. Kindly advice me how to solve it

    Photoshop Scripting Forum http://www.adobeforums.com/webx?13@@.3bbf2765

  • Error while running the ant script of fusion order demo -Infrastructure.jws

    Hi All,
    I was trying to run the store front application.
    As i was trying to run the scripts to create the tables, stored procedure, schemas etc, the execution of the ant script failed with the following error:
    The apache Ant log reads as follows:
    *[echo] USER_CONTEXT Package Created*
    compileImagesApp:
    *[javac] Compiling 3 source files to D:\11g\ADF-11g\FusionOrderDemo_R1PS1\Infrastructure\DBSchema\classes*
    BUILD FAILED
    D:\11g\ADF-11g\FusionOrderDemo_R1PS1\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    D:\11g\ADF-11g\FusionOrderDemo_R1PS1\Infrastructure\DBSchema\build.xml:312: D:\Jdev11g\oracle_common\modules\oracle.javacache_11.1.1 not found.
    Total time: 2 minutes 26 seconds
    I ignored the above error and when i tried to run the StoreFrontUI project, i was unable to see the images rendered on the User Interface.
    Can anybody help me as to why this would have happened?
    Is it not getting rendered because the ant script failed @ compileImagesApp? If so, what is the solution for the same?
    Thanks in Advance,
    Vijay

    Hi,
    Even after commenting and uncommenting the path for the imageurl variable in the ImageLoaderServiceAMImpl.java, i am getting the following error when trying to build the schema from the MasterbuildScript Project:
    compileImagesApp:
    *[javac] Compiling 3 source files to D:\11g\adf-Handson\FOD_11\Infrastructure\DBSchema\classes*
    BUILD FAILED
    D:\11g\adf-Handson\FOD_11\Infrastructure\Ant\build.xml:52: The following error occurred while executing this line:
    D:\11g\adf-Handson\FOD_11\Infrastructure\DBSchema\build.xml:262: D:\Jdev11g\jdeveloper\modules\oracle.xdk_11.1.1 not found.
    Total time: 59 seconds
    One more observation when i was changing the path in the ImageLoaderServiceAMImpl.java was that, there were lot many errors that were shown in the file:
    Following import statements were erroring out:
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.domain.BlobDomain;
    import oracle.jbo.domain.DBSequence;
    import oracle.jbo.domain.Timestamp;
    import oracle.jbo.domain.Number;
    import oracle.jbo.server.ApplicationModuleImpl;
    import oracle.jbo.server.ViewObjectImpl;
    Can you please provide some pointers on this as well?
    Regards,
    Vijay Swaminathan

  • Error while running the initialize service to create a new application

    Hi,
    I tried running the initialze service,when I encountered this error.Can anyone help me whith this.
    Setting EAC provisioning and performing initial setup...
    [03.20.13 23:32:37] INFO: Checking definition from AppConfig.xml against existing EAC provisioning.
    [03.20.13 23:32:38] INFO: Setting definition for application 'Endeca'.
    [03.20.13 23:32:38] INFO: Setting definition for host 'AuthoringMDEXHost'.
    [03.20.13 23:32:39] INFO: Setting definition for host 'LiveMDEXHostA'.
    [03.20.13 23:32:39] INFO: Setting definition for host 'ReportGenerationHost'.
    [03.20.13 23:32:39] INFO: Setting definition for host 'WorkbenchHost'.
    [03.20.13 23:32:39] INFO: Setting definition for host 'ITLHost'.
    [03.20.13 23:32:40] INFO: Setting definition for component 'AuthoringDgraph'.
    [03.20.13 23:32:40] INFO: [AuthoringMDEXHost] Starting shell utility 'mkpath_dgidx-output'.
    [03.20.13 23:32:41] INFO: [AuthoringMDEXHost] Starting shell utility 'mkpath_forge-output'.
    [03.20.13 23:32:42] INFO: [AuthoringMDEXHost] Starting shell utility 'mkpath_cumulative-partials'.
    [03.20.13 23:32:44] INFO: [AuthoringMDEXHost] Starting shell utility 'mkpath_dgraph-config'.
    [03.20.13 23:32:45] INFO: [AuthoringMDEXHost] Starting shell utility 'mkpath_local-dgraph-input'.
    [03.20.13 23:32:46] INFO: [AuthoringMDEXHost] Starting shell utility 'mkpath_local-cumulative-partials'.
    [03.20.13 23:32:48] INFO: [AuthoringMDEXHost] Starting shell utility 'mkpath_local-dgraph-config'.
    [03.20.13 23:32:49] INFO: Setting definition for component 'DgraphA1'.
    [03.20.13 23:32:50] INFO: Setting definition for script 'PromoteAuthoringToLive'.
    [03.20.13 23:32:50] INFO: Setting definition for custom component 'WorkbenchManager'.
    [03.20.13 23:32:51] INFO: Updating provisioning for host 'ITLHost'.
    [03.20.13 23:32:51] INFO: Updating definition for host 'ITLHost'.
    [03.20.13 23:32:51] INFO: [ITLHost] Starting shell utility 'mkpath_temp'.
    [03.20.13 23:32:53] INFO: Setting definition for custom component 'IFCR'.
    [03.20.13 23:32:53] INFO: Updating provisioning for host 'ITLHost'.
    [03.20.13 23:32:53] INFO: Updating definition for host 'ITLHost'.
    [03.20.13 23:32:54] INFO: Setting definition for component 'LogServer'.
    [03.20.13 23:32:54] INFO: [ReportGenerationHost] Starting shell utility 'mkpath_input'.
    [03.20.13 23:32:56] INFO: Setting definition for script 'DaySoFarReports'.
    [03.20.13 23:32:56] INFO: Setting definition for script 'DailyReports'.
    [03.20.13 23:32:56] INFO: Setting definition for script 'WeeklyReports'.
    [03.20.13 23:32:57] INFO: Setting definition for script 'DaySoFarHtmlReports'.
    [03.20.13 23:32:57] INFO: Setting definition for script 'DailyHtmlReports'.
    [03.20.13 23:32:57] INFO: Setting definition for script 'WeeklyHtmlReports'.
    [03.20.13 23:32:57] INFO: Setting definition for component 'WeeklyReportGenerator'.
    [03.20.13 23:32:58] INFO: Setting definition for component 'DailyReportGenerator'.
    [03.20.13 23:32:58] INFO: Setting definition for component 'DaySoFarReportGenerator'.
    [03.20.13 23:32:59] INFO: Setting definition for component 'WeeklyHtmlReportGenerator'.
    [03.20.13 23:32:59] INFO: Setting definition for component 'DailyHtmlReportGenerator'.
    [03.20.13 23:33:00] INFO: Setting definition for component 'DaySoFarHtmlReportGenerator'.
    [03.20.13 23:33:00] INFO: Setting definition for script 'BaselineUpdate'.
    [03.20.13 23:33:00] INFO: Setting definition for script 'PartialUpdate'.
    [03.20.13 23:33:01] INFO: Setting definition for component 'Forge'.
    [03.20.13 23:33:01] INFO: [ITLHost] Starting shell utility 'mkpath_incoming'.
    [03.20.13 23:33:03] INFO: Setting definition for component 'PartialForge'.
    [03.20.13 23:33:03] INFO: [ITLHost] Starting shell utility 'mkpath_incoming'.
    [03.20.13 23:33:05] INFO: Setting definition for component 'Dgidx'.
    [03.20.13 23:33:05] INFO: Definition updated.
    [03.20.13 23:33:05] INFO: Provisioning site from prototype...
    [03.20.13 23:33:06] SEVERE: null
    Occurred while executing line 3 of valid BeanShell script:
    1|
    2|
    3| IFCR.provisionSite();
    4| WorkbenchManager.updateWsConfig();
    5|
    6|
    [03.20.13 23:33:06] SEVERE: Caught an exception while invoking method 'run' on object 'InitialSetup'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by java.lang.NullPointerException
    com.endeca.soleng.eac.toolkit.utility.IFCRUtility extractIfcrErrorMessage - null
    regards,
    Rahul

    Hi Ritwik,
    I got this error while running the initialze service . I checked the Dgidx log but there was no log generated as I'm still running the initialize service.
    I even checked the workbench port and hostname.Every thing looks fine.
    but im not able to login or see the workbench login web page whn i try to access it with the hostname:portnumber .
    Regards,
    Rahul

Maybe you are looking for

  • Want to do a non-destru​ctive restore of XP Profession​al SP3 (Was SP2)

    System:  Presario SR1817cl, as originally configured from factory.  XP Professional 32-bit SP3 (was SP2) 512 MB RAM, onboard card reader, ATI onboard video.  AMD processor.  IE8 installed. System was badly infected with 31 malware, (trojans, exploits

  • Omit Customer with negative balance when printing aging

    Hi All I am using a crystal layout (converted from PLD) "Collection Report - CR (GB)" that I have downloaded from the portal. This is a SAP8.8 version. I have managed to add fields that he client wants, but Im having an issue with the selection Crite

  • Export of the images on HDD in Bridge CC

    How do you export the images on HDD in Bridge CC? Externaly only via PS? I have used the export fn in the Bridge CS 5 quite often. I have also LR 5.3. Shall I use the Export from there? Thx for ideas

  • How come I don't have the Blur Gallery or the Path Blur?

    I have the "updated" version of Photoshop CC, but I don't have the Blur Gallery or Path Blur in my filters. Any ideas as to why they are missing?

  • Where are my movies and notes post ios5?

    hi - post downloading IOs 5 I had major problems finding my apps again - many are there - but my movies are not, nor are my notes...can they be found? In the "genius" tab in i tunes it knows what I purchased, but I can no longer find them....I am cle