Oracle WebService Management / Gateway is not up..??

hi all,
i have some doubts with OWSM. i created one sample gateway
called Gateway_test. While creating it in component url i have given
http://172.28.10.71:8888/gateway
1) While specifying this URL, Can i use any port number..?
After that, i registered creditrating service to it. Now in service details it specifies
tht
Client Access URLs
Service URL: http://172.28.10.71:8888/gateway/services/SID0003001
Service WSDL URL: http://172.28.10.71:8888/gateway/services/SID0003001?wsdl
But this URLs are not working...? it means Gateway is not running.
Plz anyone can help me out.?

Hi,
I think that this thread is going to help you:
Oracle Web Services Manager
Rgds

Similar Messages

  • Oracle WebService Management / Gateway doubts ?...

    hi all,
    i have some doubts with OWSM. i created one sample gateway
    called Gateway_test. While creating it in component url i have given
    http://172.28.10.71:8888/gateway
    1) While specifying this URL, Can i use any port number..?
    After that, i registered creditrating service to it. Now in service details it specifies
    tht
    Client Access URLs
    Service URL: http://172.28.10.71:8888/gateway/services/SID0003001
    Service WSDL URL: http://172.28.10.71:8888/gateway/services/SID0003001?wsdl
    But this URLs are not working...? it means Gateway is not running.
    Plz anyone can help me out.?
    /mishit

    Hi Mishit,
    did you configure the gateway with the registered component ID?
    Regisitering the Gateway via the OWSM Console is not enough. You have to copy the Component ID into a properties file used by the Gateway in order to establish the connection between the Gateway and the Policy Manager.
    To do this :
    Stop OWSM
    C:\oracle\owsm\bin> coresv stop
    Edit the file %OWSM_HOME/config/gateway/gateway-config-installer.properties and update the gateway.component.id attribute with the Component ID generated before :
    ex: gateway.component.id=C0003001
    Save the gateway-config-installer.properties file and re-start the OWSM :
    C:\oracle\owsm\bin> coresv start
    1) While specifying this URL, Can i use any port number..?
    The port number is the default OC4J (Oracle's J2EE container) port number.
    Hope that helps.
    Regards
    Kersten

  • Oracle Enterprise Manager 11g is not running

    Hi everyone.
    I can't open my Enterprise Manager in my browser.
    when I am typing this command "emctl status dbconsole",it gives me this error :
    C:\Windows\system32>emctl status dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    https://localhost:1158/em/console/aboutApplication
    Oracle Enterprise Manager 11g is not running.
    Logs are generated in directory E:\app\Ahmad\product\11.2.0\dbhome_1/Ahmad-PC_or
    cl/sysman/log
    Thanks.

    user9077620 wrote:
    I type emctl start dbconsole
    then it mention to set variable ORACLE_UNQNAME then i did this step
    after that i retypr emctl start dbconsole , it gives me this error:
    C:\Windows\system32>emctl start dbconsole
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2010 Oracle Corporation. All rights reserved.
    https://localhost:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 11g Database Control ...The OracleDBConsoleo
    cl service is starting..............
    The OracleDBConsoleorcl service could not be started.
    A service specific error occurred: 2.
    More help is available by typing NET HELPMSG 3547.OS/Networking mis-configuration
    Oracle is victim; not culprit

  • Oracle Enterprise Manager 10g is not running.

    Hi All,
    I cloned e-Business suite application/db to another server.After cloned Oracle Enterprise Manager 10g is not running. I've been noticing following messages during start/stop/status.
    status
    Oracle Enterprise Manager 10g is not running.
    start: doen't show any error.
    stop:
    Stopping Oracle Enterprise Manager 10g Database Control ...
    ... Failed.
    Log info:
    servername.domain_SID/sysman/log shows following errors.
    emos.log : ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.sys
    emdb.nohup log
    --- Wed Apr 16 12:37:14 2008::The agentTZRegion value in /orafissbx1/u00/app/oracle/10.2.0.3/cob-eamdbd-01.wssc.ad.root_FISSBX1/sysman/config/emd.properties is not in agreement with what agent thinks it should be.Please verify your environment to make sure that TZ setting has not changed since the last start of the agent.
    If you modified the timezone setting in the environment, please stop the agent and exectute 'emctl resetTZ agent' and also execute the script 'mgmt_target.set_agent_tzrgn' to get the value propagated to repository -----
    emoms.trc
    [Orion Launcher] ERROR app.ContextInitializer contextInitialized.272 - Integration Class not found: oracle.
    I opened the SR but still issues has n't fixed. I did all steps mentioned in TZ and etc according to metalink.
    Please suggest.
    Thanks

    This is expected behavious. It is because Enterprise Manager cannot run with the new server name. You can either go through loads to change the config files or simply drop and recreate the console.

  • Retrieve Client IP Address in a Oracle WebServices Manager Custom Policy

    Hi everybody,
    For some reasons i had to implement a custom policy in the OWSM, to restrict the access to webservices by Client IP Addresses. I´ve been following the examples for custom policies mentioned in the books: "Oracle Web Services Manager, Oracle Web Services Manager" by Sitaraman Lakshminarayanan, and the "Oracle® Web Services Manager Extensibility Guide 10g (10.1.3.3.0)" by Oracle. I followed the examples mentioned in those books to implement my Custom policy, the policy is successfully deployed to OWSM and it works, only by the issue that when i want to retrieve the Client Ip address it returns null, and following the example by the Oracle Guide, the HttpServletRequest its also returns null, im desperated because in every site that i finally find some info about it, quotes any of these 2 examples in those books, and mine doesnt work! this is the code of the custom policy, i´ve combined the 2 aproaches:
    package project1;
    import com.cfluent.ccore.util.logging.ILogger;
    import com.cfluent.ccore.util.logging.Level;
    import com.cfluent.ccore.util.logging.LogManager;
    import com.cfluent.pipelineengine.container.MessageContext;
    import com.cfluent.policysteps.sdk.AbstractStep;
    import com.cfluent.policysteps.sdk.Fault;
    import com.cfluent.policysteps.sdk.IMessageContext;
    import com.cfluent.policysteps.sdk.IResult;
    import com.cfluent.policysteps.sdk.InvocationStatus;
    import com.cfluent.policysteps.sdk.Result;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Vector;
    import javax.servlet.http.HttpServletRequest;
    public class CustomPolicy extends AbstractStep {
    private static String CLASSNAME = CustomPolicy.class.getName();
    private static ILogger LOGGER = LogManager.getLogger(CLASSNAME);
    private String allowedIpAddress = null;
    private String allowedRoleName = null;
    private String protectedServiceMethodName = null;
    public CustomPolicy() {
    public void init() throws IllegalStateException {
    // nothing to initialize
    public void destroy() {
    * This is the main method which will validate that the request is coming from
    * the correct IP Address and has permission to access the specified metod.
    public IResult execute(IMessageContext messageContext) throws Fault {
    LOGGER.entering(CLASSNAME, "execute");
    Result result = new Result();
    result.setStatus(IResult.FAILED); //initialize result
    String processingStage = messageContext.getProcessingStage();
    LOGGER.log(Level.INFO, "Processing stage is " + processingStage);
    HttpServletRequest httpServletRequest = (HttpServletRequest)
    messageContext.getProperty("javax.servlet.request");
    String remoteAddr = httpServletRequest.getHeader("Host");
    LOGGER.log(Level.SEVERE, "Dir IP:"+remoteAddr);
    String remoteHost = httpServletRequest.getRemoteHost();
    LOGGER.log(Level.INFO, "ADDR" + remoteAddr+ "HOST"+remoteHost);
    boolean isRequest =
    (IMessageContext.STAGE_REQUEST.equals(messageContext.getProcessingStage()) ||
    IMessageContext.STAGE_PREREQUEST.equals(messageContext.getProcessingStage()));
    //Execute the step Only when its a Request pipeline else return success
    if (!isRequest) {
    result.setStatus(IResult.SUCCEEDED);
    return result;
    MessageContext msgCtxt = (MessageContext)messageContext;
    String _MethodName = msgCtxt.getRequest().getMethodName();
    LOGGER.log(Level.INFO,
    "Writing Allowed IP Addr before creating SOAP header " +
    allowedIpAddress);
    LOGGER.log(Level.INFO,
    "Writing Remote IP Addr before creating SOAP header " +
    msgCtxt.getRemoteAddr());
    /*LOGGER.log(Level.INFO,
    "Writing Remote IP Addr before creating SOAP header " +
    remoteAddr);*/
    String cadTempo = allowedIpAddress;
    Vector vect = new Vector();
    for (int i = 0; i < allowedIpAddress.length(); i++) {
    if (cadTempo.indexOf(",") != -1) {
    //vect.add(cadTempo.substring(0, cadTempo.indexOf(",") - 1));
    vect.add(cadTempo.substring(0, cadTempo.indexOf(",")));
    cadTempo =
    cadTempo.substring(cadTempo.indexOf(",") + 1, cadTempo.length());
    LOGGER.log(Level.INFO,
    "AQUI111");
    } else {
    if (!cadTempo.equalsIgnoreCase("")) {
    vect.add(cadTempo);
    LOGGER.log(Level.INFO,
    "AQUI222");
    break;
    for(int i=0;i<vect.size();i++){
    String temp = (String)vect.get(i);
    if (temp.equals(msgCtxt.getRemoteAddr()) &&
    _MethodName.equals(protectedServiceMethodName)) {
    LOGGER.log(Level.INFO,
    "AQUI333");
    result.setStatus(IResult.SUCCEEDED);
    break;
    } else {
    msgCtxt.getInvocationStatus().setAuthorizationStatus(InvocationStatus.FAILED);
    LOGGER.log(Level.INFO,
    "AQUI444");
    /*if(allowedIpAddress!=null){
    result.setStatus(IResult.SUCCEEDED);
    /*if (allowedIpAddress.equals(msgCtxt.getRemoteAddr()) &&
    _MethodName.equals(protectedServiceMethodName)) {
    result.setStatus(IResult.SUCCEEDED);
    } else {
    msgCtxt.getInvocationStatus().setAuthorizationStatus(InvocationStatus.FAILED);
    // Set the result to SUCCESS
    //result.setStatus(IResult.SUCCEEDED);
    return result;
    public String getIpAddress() {
    return allowedIpAddress;
    public void setIpAddress(String IpAddress) {
    this.allowedIpAddress = IpAddress;
    LOGGER.log(Level.INFO, "IP Address is.. " + allowedIpAddress);
    public String getServiceMethodName() {
    return protectedServiceMethodName;
    public void setServiceMethodName(String serviceMethodName) {
    this.protectedServiceMethodName = serviceMethodName;
    public String getRoleName() {
    return allowedRoleName;
    public void setRoleName(String roleName) {
    this.allowedRoleName = roleName;
    And the xml:
    <csw:StepTemplate xmlns:csw="http://schemas.confluentsw.com/ws/2004/07/policy"
    name="Custom authenticate step" package="project1"
    timestamp="Oct 31, 2005 05:00:00 PM" version="1"
    id="0102030405">
    <csw:Description>Custom step that authenticates the user against the
    credentials entered here. This step requires Extract
    credentials to be present before it in the request pipeline.</csw:Description>
    <csw:Implementation>project1.CustomPolicy</csw:Implementation>
    <csw:PropertyDefinitions>
    <csw:PropertyDefinitionSet name="Basic Properties">
    <csw:PropertyDefinition name="Enabled" type="boolean">
    <csw:Description>If set to true, this step is enabled</csw:Description>
    <csw:DefaultValue>
    <csw:Absolute>true</csw:Absolute>
    </csw:DefaultValue>
    </csw:PropertyDefinition>
    </csw:PropertyDefinitionSet>
    <csw:PropertyDefinitionSet name="Custom Access Rules">
    <csw:PropertyDefinition name="IpAddress" type="string" isRequired="true">
    <csw:DisplayName>IpAddress</csw:DisplayName>
    <csw:Description>IP Address that is allowed access</csw:Description>
    <csw:DefaultValue>
    <csw:Absolute>192.168.0.1</csw:Absolute>
    </csw:DefaultValue>
    </csw:PropertyDefinition>
    <csw:PropertyDefinition name="ServiceMethodName" type="string"
    isRequired="true">
    <csw:DisplayName>ServiceMethodName</csw:DisplayName>
    <csw:Description>Service Method Name that is Protected (Secured)</csw:Description>
    <csw:DefaultValue>
    <csw:Absolute>getTime</csw:Absolute>
    </csw:DefaultValue>
    </csw:PropertyDefinition>
    </csw:PropertyDefinitionSet>
    </csw:PropertyDefinitions>
    </csw:StepTemplate>
    Please any tip or idea is welcome, thanks in advance for the help.
    Carlos.

    Hi again
    copied your code for testing. And it works fine.
    So both the code and policy-step definition is fine, log output below.
    What is your log output?
    Using soapui to send the request will give the ip of my localhost, using the test client will give the ip of the server, because that is the actual client.
    I guess the server ip is 192.168.0.1 in your case, as you are testing from test console.
    <b>anyway, results from SOAPUI:</b>
    2009-05-19 09:52:15,096 FINE [HTTPThreadGroup-4] CSWComponent - Executing policy step. Policy='SID0003004', Step Name='Custom Policy Step', Step Class='com.*.soa.wsm.CustomPolicy'
    2009-05-19 09:52:15,096 FINER [HTTPThreadGroup-4] wsm.CustomPolicy - com.*.soa.wsm.CustomPolicy execute:ENTERING
    2009-05-19 09:52:15,096 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - Processing stage is Request
    2009-05-19 09:52:15,096 SEVERE [HTTPThreadGroup-4] wsm.CustomPolicy - Dir IP:hostname.domain:8890
    2009-05-19 09:52:15,096 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - ADDRhostname.domain:8890HOST10.47.89.116
    2009-05-19 09:52:15,096 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - MethodName=getHostNameElement
    2009-05-19 09:52:15,096 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - Writing Allowed IP Addr before creating SOAP header 10.47.89.116, 192.168.0.1
    2009-05-19 09:52:15,096 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - Writing Remote IP Addr before creating SOAP header 10.47.89.116
    2009-05-19 09:52:15,096 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - AQUI111
    2009-05-19 09:52:15,096 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - AQUI222
    2009-05-19 09:52:15,097 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - AQUI333
    2009-05-19 09:52:15,097 FINER [HTTPThreadGroup-4] agent.Agent - com.cfluent.agent.Agent intercept:ENTERING
    <b>But if I use the test client the remote IP would be 10.47.137.50 and execution fails, as code is written</b>
    <i>
    2009-05-19 09:54:12,266 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - Writing Allowed IP Addr before creating SOAP header 10.47.89.116, 192.168.0.1
    2009-05-19 09:54:12,266 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - Writing Remote IP Addr before creating SOAP header 10.47.137.50
    2009-05-19 09:54:12,267 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - AQUI111
    2009-05-19 09:54:12,267 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - AQUI222
    2009-05-19 09:54:12,267 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - AQUI444
    2009-05-19 09:54:12,267 INFO [HTTPThreadGroup-4] wsm.CustomPolicy - AQUI444
    2009-05-19 09:54:12,267 FINE [HTTPThreadGroup-4] CSWComponent - Step execution failed: Policy=[SID0003004] Pipeline=[Request] Step Name=[Custom Policy Step] Step Class=[com.tandberg.soa.wsm.CustomPolicy]
    2009-05-19 09:54:12,267 FINER [HTTPThreadGroup-4] common.PrepareForServiceStep - Step PrepareForServiceStep called
    </i>

  • Oracle Enterprise Manager (localhost:localdomain) not working anymore.

    Hello,
    I sucessfully installed 10g enterprise edition and was able to run the manager in my browser staight after. now I rebooted. installed
    sql developer plus and I cant connect anymore. not to the manager and, likely because some service is not running, via sql developer.
    trying lsnrctl start
    or echo $ORACLE_HOME or tns names just retunred nothing.
    does someone have an idea how I can hardcode these variables (I no there is a file somewhere) and start the service on startup (using red hat 5 and oracle 10g)

    metalray wrote:
    oracle_home=$Oracle_Home:/u01/app/oracle...
    needs to have to $Oracle_Home: part, otherwise the variable will not be setNot for any shell I know.....
    If you are on bourne shell or its commn silblings (posix, ksh or bash) I would expect to see the following
    starting of with a PATH that does not reference an oracle home ...
    ORACLE_SID=orcl
    export ORACLE_SID
    ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
    export ORACLE_HOME
    ORACLE_BASE=/u01/app/oracle
    export ORACLE_BASE
    PATH=$PATH:$ORACLE_HOME/bin
    export PATH
    These should all show with:
    env | egrep '(ORA|^PATH)'PATH=/usr/bin:/usr/local/bin:xxxxxxxxx:/u01/app/oracle/product/10.2.0/db_1/bin
    ORACLE_BASE=/u01/app/oracle
    ORACLE_SID=orcl
    ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
    Rgds - bigdelboy

  • Oracle access manager: "You do not have sufficient access rights."

    Hi gurus,
    I'm doing self training on OAM, following an exercise I installed OAM and
    created a couple of Master Admins.
    Everything seams to work except the fact that this admins are not allowed
    to create users/orgs/groups and get the message "You do not have sufficient access rights".
    I may have missed something during the setup, however the question is: how can I recover this situation? How I can give more privileges to those admins?
    I tried to create a policy in directory server, without success.
    Please, help.
    Thank you very much.

    You will need to create a create user Workflow.
    Out of the box OAM does not know which attibutes to create for your user.
    Use the quickstart tool as follows
    http://download-west.oracle.com/docs/cd/B28196_01/idmanage.1014/b25343/workflow.htm#sthref961

  • Oracle Enterprise Manager Serices is not Starting Up!

    Hi,
    I am Using Oracle 10g Database Release 2 on Windows 2003 Server Enterprise Edition. My Service Name of Em is "OracleDBConsoleSIPDB" this Services is Not Starting Up after restarting the Server. Please Adivce me, what are the thinks has to bee Checked to resolve this Problem.
    Thanks
    Shan

    Hi,
    2010-06-01 15:17:10 Thread-5704 ERROR http: 1728: Unable to initialize ssl connection with server, aborting connection attempt
    2010-06-01 15:17:12 Thread-7368 ERROR ssl: nzos_Handshake failed, ret=29024
    2010-06-01 15:17:12 Thread-7368 ERROR http: 1740: Unable to initialize ssl connection with server, aborting connection attempt
    2010-06-01 15:17:19 Thread-2896 ERROR ssl: nzos_Handshake failed, ret=29024
    2010-06-01 15:17:19 Thread-2896 ERROR http: 1740: Unable to initialize ssl connection with server, aborting connection attempt
    I am getting above error message in "\\Oracle10g\d$\oracle\product\10.2.0\db_1\oracle10g.olaminfo_SIPDB\sysman\log\emdctl.trc" file
    I have not Changed IP Address Or Host Name in the Server.
    Please Advice...
    Thanks
    Shan

  • Oracle Performance Management Learning Path not showing

    Hi,
    Learning Path can be included in the appraisal if sepcfied on the Aprraisal Template. We have done so and have enabled the approproate personalisation on the self service pages but despite this we still cannot see the Learning Path section on the Aprraisal page. Can someone  pleaseadvise on what could be wrong, why we still can't see the Learning Path section.
    Regards.
    TL

    Dear Mak..
    Make sure that in PPM you have enter the required date when you are going to do filtering.
    also chack the opportunity status.
    The reason is for viewing of won opportunity need to set the chance of success while you create the opportuinty after save the document system calculates the status of opportunity such as:- won, loss modrate..
    Thanks

  • Installing Oracle Entrerprise Manager not Grid control separately to the DB

    Hi,
    Can I install Only Oracle Enterprise manager console 11g not grid control separately to the Database server.
    If yes, what should I do?
    Thanks in advance

    dbakely wrote:
    Hi,
    Can I install Only Oracle Enterprise manager console 11g not grid control separately to the Database server.
    If yes, what should I do?In Oracle terms, there is a world of difference between Installing and Configuring.
    If you want to Install Database Control to a different location, the answer is basically 'No' (from what I can tell).
    If you want to Configure Database Control at a different time than the database, then you use emca. However, it depends on the ORACLE_HOME of the database and generally can not be configured to a differnert location or computer. That is one reason for using Gr\id Control.

  • Unable to start Oracle Process Manager Service

    I installed EPM 11.1.2.1 on Windows 2008 R2.
    Oracle database 11g.
    I installed and configured every thing was working fine. But suddenly the Oracle Process Manager service is not starting.
    I checked in event viewer the following error i found:
    The Oracle Process Manager (EPM_epmsystem1) service failed to start due to the following error:
    The service did not respond to the start or control request in a timely fashion.
    Please help me.

    Hi Jasmin,
    The error was:
    The service did not respond to the start or control request in a timely fashion.
    Thanks,
    Ravi.

  • Oracle Enterprise Manager - HTTP error: 503 Service Unavailable

    Dear all,
    some time ago I've upgraded Oracle Database 10g up to version 10.2.0.4.0 on a Linux system.
    Now if I try to connect to HTTP Oracle Enterprise Manager interface (http://(My server name):1158/em/console/aboutApplication) I see this error into my browser: "503 Service Unavailable - Service is not initialized correctly. The Em Key is not configured properly. Run "emctl status emkey" for more details."
    If I perform "emctl status dbconsole" command from command line I have this output
    TZ set to Europe/Vatican
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://(My server name):1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is not running.
    So I've tried to restart Oracle Enterprise Manager trough command line using "emctl start dbconsole":
    TZ set to Europe/Vatican
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://(My server name):1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control .... started.
    Now dbconsole seems to be running as follows
    TZ set to Europe/Vatican
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    http://(My server name):1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is running.
    but my browser always shows the same above error.
    If I try to perform the suggested "emctl status emkey" command trough command line I have this output:
    TZ set to Europe/Vatican
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Please enter repository password: (Here I put sysman password)
    Exception caught
    ORA-06550: line 1, column 13:
    PLS-00201: identifier 'MGMT_TIME_SYNC.STARTUPSYNC' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    java.sql.SQLException: ORA-06550: line 1, column 13:
    PLS-00201: identifier 'MGMT_TIME_SYNC.STARTUPSYNC' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:111)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:330)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:287)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:744)
    at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:217)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:968)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1189)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3369)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3475)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4399)
    at oracle.sysman.emSDK.conf.ConfigManager.startupEmKey(ConfigManager.java:855)
    at oracle.sysman.emSDK.conf.ConfigManager.statusEmKeyInRepos(ConfigManager.java:1113)
    at oracle.sysman.eml.sec.rep.EmKeyUtil.statusEmKey(EmKeyUtil.java:273)
    at oracle.sysman.eml.sec.rep.EmKeyUtil.main(EmKeyUtil.java:583)
    I've done no changes on Linux operating system side.
    Could somebody help me, please?
    Thanks for help and regards.
    DragonsLordKERNEL
    Edited by: DragonsLordKERNEL on 17-nov-2008 11.06

    Check if your emkey file is still under $ORACLE_HOME/sysman/config/emkey.ora
    Also check Oracle doc,
    http://download.oracle.com/docs/cd/B19306_01/em.102/b40002/security2.htm#BABJGGIG
    consider remove the recreate emkey if it doesn't work out.

  • Repost: Oracle VM Manager (IndexError: list index out of range) error

    The Oracle VM Manager software will not import a server side created VM for management purposes. It is giving an index-out-of-range error when trying to retrieve the Memory Size from the jumpbox.xen file (I created a symbolic link to this file called vm.cfg).
    Here is the log for the index-out-of-range error:
    ovs_root.log
    "2008-08-20 02:03:26" INFO=> utl_list_dir: directory('/OVS/running_pool') => pro
    jectweb/,infinesse-web/
    "2008-08-20 02:03:26" INFO=> list_dir: directory('/OVS/running_pool') => project
    web/,infinesse-web/
    "2008-08-20 02:03:26" INFO=> utl_get_vm_size: vm('/OVS/running_pool/infinesse-we
    b') => 12020
    "2008-08-20 02:03:26" INFO=> get_vm_size:vm('/OVS/running_pool/infinesse-web') =
    success:size=12020"2008-08-20 02:03:26" ERROR=> xen_get_memory:vm('/OVS/running_pool/infinesse-web
    ')=><IndexError: list index out of range>
    "2008-08-20 02:03:26" INFO=> get_vm_memory: vm('/OVS/running_pool/infinesse-web'
    ) scope=cfg rs=failed:<IndexError: list index out of range>
    and my vm.cfg file:
    # -- mode: python; --
    # This JumpBox requires Hardware Support otherwise known as Xen's HVM mode.
    # To test your Xen installation if it supports this mode, issue the following
    # command:
    # sudo xm info | grep xen_caps
    # it should return a capabilities line like:
    # xen_caps : xen-3.0-x86_32 hvm-3.0-x86_32
    # as long as there is an hvm entry as shown above it should work.
    ## If starting Xen fails you may need to set a custom path
    ## for your kernel or device model files. Uncommant the following
    ## variables and put in the appropriate paths
    ## Uncomment and set your custom hvm loader path here
    # hvm_path = ""
    ## Uncomment and set your custom device model loader path here
    # devmodel_path = ""
    # You will probably want to uncomment the following VNC variables so you
    # can see the JumpBox console over VNC. Make sure to set the vncpassword to
    # something unique. Also, if you run multiple JumpBoxes on the same host, you
    # may want to leave vncdisplay unset and use the domid for the display numbers
    #vnc=1 # enable VNC library for graphics, default = 1
    #vnclisten="0.0.0.0" # address that should be listened on for the VNC server if vnc is set.
    #vncdisplay=1 # set VNC display number, default = domid
    #vncconsole=1 # enable spawning vncviewer for domain's console
    #vncpasswd='password' # set password for domain's VNC console
    memory = '256'
    vfb = ['type=vnc,vncunused=1,vnclisten=0.0.0.0']
    ########### You shouldn't have to edit anything below here ##############
    import os
    import sys
    # Assemble the basepath
    file = os.getcwd() + '/' + sys.argv[2]
    basepath = os.path.dirname(os.path.abspath(file))
    datatarball = basepath + '/disks/data/data.xen.tgz'
    builder = "hvm"
    hvmfiles = [
    '/usr/lib/xen/boot/hvmloader',
    '/usr/lib/xen-ioemu-3.0/boot/hvmloader'
    devfiles = [
    '/usr/lib/xen/bin/qemu-dm',
    '/usr/lib/xen-ioemu-3.0/bin/qemu-dm'
    # Check to see if the user has assigned custom HVM or device_model paths
    try:
    hvmfiles.insert(hvm_path,0)
    except NameError:
    pass
    try:
    devfiles.insert(devmodel_path,0)
    except NameError:
    pass
    # Choose the appropriate HVM Loader
    for i in hvmfiles:
    if os.path.exists(i):
    kernel = i
    break
    # Choose the appropriate Device Models
    for i in devfiles:
    if os.path.exists(i):
    device_model = i
    break
    # Need to test if device_model and kernel are set, if not return with error.
    # If this is the first time this has run, extract the data disk tarball
    # then remove the tarball
    if os.path.exists(datatarball):
    os.chdir(basepath + '/disks/data')
    os.system("tar -zxpf " + datatarball)
    os.remove(datatarball)
    # Continue normal configuration
    name = "joomla15"
    vif = ['type=ioemu, mac=00:16:3E:2B:1F:04, bridge=xenbr0']
    disk = ['file:' + basepath + '/disks/root/root.hdd,hda,w','file:' + basepath + '/disks/data/data.xen,hdb,w']
    root = "/dev/hda1 ro"
    extra = "4"

    Hi Ravi,
    the error is due to the componet JAVA(TM) 7 which is not supported.
    Better to run JAVA 6, I'm running the update 33, you can download it from http://www.oracle.com/technetwork/java/javase/downloads/jre6-downloads-1637595.html
    Remeber to remove JAVA &
    Go to control panel --> add remove programs and remove JAVA (TM) 7.
    It will solve the problem.
    Ciao,
    Massimo

  • How to integrate Microsoft project to Oracle Project Management?

    Dear All,
    How to integrate Microsoft project to Oracle Project Management?
    I tried to find Oracle Project button in Microsoft Project to send Project plan to oracle projects. But I didn’t not found any button like Oracle project to upload.
    Can anyone please let me know what the prerequisites to integrate and how to import the same data in oracle Project Management Module from Microsoft Project?

    Hi,
    Please see "Oracle Project Management User Guide", Chapter 5.
    Applications Releases 11i and 12
    http://www.oracle.com/technology/documentation/applications.html
    The following documents should be also helpful.
    Note: 277096.1 - **FAQ Integration with Microsoft Projects**
    Note: 236522.1 - Oracle Project Management Release & Installation Notes
    Note: 236585.1 - Oracle Project Management Documentation
    Note: 804746.1 - Is It Possible To Use Microsoft Projects Integration Without Oracle Project Management?
    Regards,
    Hussein

  • Help needed with starting Oracle Enterprise Manager on win 2008 server SP2

    Hi,
    i am unable to start the oracle enterprise manager. I did the following steps:
    E:\oracle\product\10.2.0\db_1\BIN>sqlplus
    SQL*Plus: Release 10.2.0.4.0 - Production on Tue Oct 12 16:59:20 2010
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    Enter user-name: /as sysdba
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Productio
    With the Partitioning, OLAP, Data Mining and Real Application Testing optio
    SQL> host
    Microsoft Windows [Version 6.1.7600]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.
    E:\oracle\product\10.2.0\db_1\BIN>emctl stop dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://primary:1158/em/console/aboutApplication
    The OracleDBConsoleorcl service is not started.
    More help is available by typing NET HELPMSG 3521.
    E:\oracle\product\10.2.0\db_1\BIN>emctl status dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://primary:1158/em/console/aboutApplication
    Oracle Enterprise Manager 10g is not running.
    E:\oracle\product\10.2.0\db_1\BIN>emctl start dbconsole
    Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://primary:1158/em/console/aboutApplication
    Agent Version : 10.1.0.6.0
    OMS Version : 10.1.0.6.0
    Protocol Version : 10.1.0.2.0
    Agent Home : E:\oracle\product\10.2.0\db_1\primary_orcl
    Agent binaries : E:\oracle\product\10.2.0\db_1
    Agent Process ID : 1740
    Agent URL : https://primary:1830/emd/main
    Started at : 2010-10-11 18:12:36
    Started by user : SYSTEM
    Last Reload : 2010-10-12 12:37:00
    Last successful upload : 2010-10-12 09:31:28
    Last attempted upload : 2010-10-12 16:55:14
    Total Megabytes of XML files uploaded so far : 2.87
    Number of XML files pending upload : 264
    Size of XML files pending upload(MB) : 1.34
    Available disk space on upload filesystem : 37.95%
    Agent is already started. Will restart the agent
    The syntax of this command is:
    NET STOP
    service

    Sorry mate,
    i have no idea why its showing different versions. I installed the software using the media i received thru Oracle for 64 bits.
    I started the Windows service for dbconsole. It worked for a minute and the page disappeared again. Does it have something to do with firewall. I had set the Firewall off.

Maybe you are looking for