Configure InstanceName

hi
Recently Steve Muench posted this discussion message
at http://groups.google.com/group/adf-methodology/msg/5b8bd1437d87b4e5
An ActionBinding can call backing bean method by using an EL expression in
the action binding's "InstanceName" attribute in the pageDef XML to
reference the bean in question. You still need to provide a data control
name that will be used for error handling. That might make for slightly
less intuitive backing bean code, but should solve the error handling issue. While trying to understand what this means, I created this example application using JDeveloper 11.1.1.3.0
at http://www.consideringred.com/files/oracle/2010/ConfigureInstanceNameApp-v0.01.zip
It has action-bindings configured like this...
  <bindings>
    <action id="myFailingServiceMethod" RequiresUpdateModel="true"
            Action="invokeMethod" MethodName="myFailingServiceMethod"
            IsViewObjectMethod="false" DataControl="ScottServiceDataControl"
            InstanceName="ScottServiceDataControl.dataProvider"/>
    <action id="myFailingBackingBeanMethod" RequiresUpdateModel="true"
            Action="invokeMethod" MethodName="myFailingBackingBeanMethod"
            IsViewObjectMethod="false" DataControl="ScottServiceDataControl"
            InstanceName="#{backingBeanScope.backing_browseEmpVO}"/>
  </bindings>
questions:
- (q1) Is the implementation in ConfigureInstanceNameApp-v0.01.zip what is intended by Steve Muench's suggestion?
- (q2) Which is exactly the "error handling issue" that should be resolved?
many thanks
Jan Vervecken

Thanks for your reply Steve.
- about the action-binding you posted
<action InstanceName="MyBean" MethodName="myMethod" id="CallBackingBeanMethod" />Its InstanceName does not use an EL expression, while you suggested "... using an EL expression in the action binding's "InstanceName" attribute ...".
- to review its behaviour I created some variations on "... an action binding like this in a binding container with no iterator bindings related to any data control and you don't specifically assign a data control to the <action> ..." in the example application
at http://www.consideringred.com/files/oracle/2010/ConfigureInstanceNameApp-v0.03.zip
- the page noDataControl.jspx has buttons like these ...
            <af:commandButton text="just myNoDCBackingBeanMethod" id="justCButton"
                              actionListener="#{backing_noDataControl.myNoDCBackingBeanMethod}"/>
            <af:commandButton text="do myNoDCBackingBeanMethodAction" id="cb1"
                              action="#{bindings.myNoDCBackingBeanMethodAction.execute}"/>
            <af:commandButton text="do myNoDCBackingBeanMethodNoELAction"
                              id="cb2"
                              action="#{bindings.myNoDCBackingBeanMethodNoELAction.execute}"/>... and noDataControlPageDef.xml looks like this ...
<pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                version="11.1.1.56.60" id="noDataControlPageDef"
                Package="configureinstancenameapp.view.pageDefs">
  <parameters/>
  <executables/>
  <bindings>
    <action id="myNoDCBackingBeanMethodAction" InstanceName="#{backing_noDataControl}" MethodName="myNoDCBackingBeanMethod"/>
    <action id="myNoDCBackingBeanMethodNoELAction" InstanceName="backing_noDataControl" MethodName="myNoDCBackingBeanMethod"/>
  </bindings>
</pageDefinition>- (sc1) the button "just myNoDCBackingBeanMethod" results in this stack-trace shown in the browser
javax.servlet.ServletException: a message for an exception thrown in the myNoDCBackingBeanMethod() method, pActionEvent.getSource() = RichCommandButton[UIXFacesBeanImpl, id=justCButton]
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:277)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Caused by: javax.faces.FacesException: a message for an exception thrown in the myNoDCBackingBeanMethod() method, pActionEvent.getSource() = RichCommandButton[UIXFacesBeanImpl, id=justCButton]
     at configureinstancenameapp.view.backing.NoDataControl.myNoDCBackingBeanMethod(NoDataControl.java:16)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
...- (sc2) the button "do myNoDCBackingBeanMethodAction" result in a dialog with message "DCInvokeMethod.null datacontrol" and this stack-trace in the log
java.lang.UnsupportedOperationException: DCInvokeMethod.null datacontrol
     at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:229)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1625)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:734)
     at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:394)
     at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)
     at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:210)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)- (sc3) the button "do myNoDCBackingBeanMethodNoELAction" behaves the same as the button "do myNoDCBackingBeanMethodAction"
- the page withDataControl.jspx has buttons like these ...
            <af:commandButton text="just myWithDCBackingBeanMethod" id="justCButton"
                              actionListener="#{backing_withDataControl.myWithDCBackingBeanMethod}"/>
            <af:commandButton text="do myWithDCBackingBeanMethodAction" id="cb1"
                              action="#{bindings.myWithDCBackingBeanMethodAction.execute}"/>
            <af:commandButton text="do myWithDCBackingBeanMethodNoELAction" id="cb2"
                              action="#{bindings.myWithDCBackingBeanMethodNoELAction.execute}"/>... and withDataControlPageDef.xml looks like this ...
<pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                version="11.1.1.56.60" id="withDataControlPageDef"
                Package="configureinstancenameapp.view.pageDefs">
  <parameters/>
  <executables>
    <variableIterator id="variables"/>
  </executables>
  <bindings>
    <action id="myWithDCBackingBeanMethodAction" InstanceName="#{backing_withDataControl}" MethodName="myWithDCBackingBeanMethod"
            DataControl="ScottServiceDataControl"/>
    <action id="myWithDCBackingBeanMethodNoELAction" InstanceName="backing_withDataControl" MethodName="myWithDCBackingBeanMethod"
            DataControl="ScottServiceDataControl"/>
  </bindings>
</pageDefinition>- (sc4) the button "just myWithDCBackingBeanMethod" results in this stack-trace shown in the browser
javax.servlet.ServletException: a message for an exception thrown in the myWithDCBackingBeanMethod() method, pActionEvent.getSource() = RichCommandButton[UIXFacesBeanImpl, id=justCButton]
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:277)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Caused by: javax.faces.FacesException: a message for an exception thrown in the myWithDCBackingBeanMethod() method, pActionEvent.getSource() = RichCommandButton[UIXFacesBeanImpl, id=justCButton]
     at configureinstancenameapp.view.backing.WithDataControl.myWithDCBackingBeanMethod(WithDataControl.java:16)
...- (sc5) the button "do myWithDCBackingBeanMethodAction" does not seem to do anything at all, no message, no stack-trace
- (sc6) the button "do myWithDCBackingBeanMethodNoELAction" results in a dialog with message "Method backing_withDataControl.myWithDCBackingBeanMethod() not supported" and this stack-trace in the log
oracle.jbo.InvalidOperException: JBO-25221: Method backing_withDataControl.myWithDCBackingBeanMethod() not supported
     at oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:491)
     at oracle.adf.model.binding.DCDataControl.invokeMethod(DCDataControl.java:2134)
     at oracle.adf.model.bc4j.DCJboDataControl.invokeMethod(DCJboDataControl.java:3020)
     at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:257)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1625)
     at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2141)
     at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:730)
     at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.executeEvent(PageLifecycleImpl.java:394)
     at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding._execute(FacesCtrlActionBinding.java:252)
     at oracle.adfinternal.view.faces.model.binding.FacesCtrlActionBinding.execute(FacesCtrlActionBinding.java:210)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)All this does not become much clearer.
question
- (q3) Which design/suggestion/approach will bring you in a situation where "... an action binding like this in a binding container with no iterator bindings related to any data control and you don't specifically assign a data control to the <action> ..."?
regards
Jan Vervecken

Similar Messages

  • A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (p

    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that
    the instance name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)(Microsoft SQL Server, Error: 2)
    The system cannot find the file specified
    Cannot connect to COWBOYS.
    Here are the technical details===================================
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider:
    Named Pipes Provider, error: 40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%20SQL%20Server&EvtSrc=MSSQLServer&EvtID=2&LinkId=20476
    Error Number: 2
    Severity: 20
    State: 0
    Program Location:
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.Connect(ServerInfo serverInfo, SqlInternalConnectionTds connHandler, Boolean ignoreSniOpenTimeout, Int64 timerExpire, Boolean encrypt, Boolean trustServerCert, Boolean integratedSecurity, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean ignoreSniOpenTimeout, TimeoutTimer timeout, Boolean withFailover)
       at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(ServerInfo serverInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString connectionOptions, SqlCredential credential, TimeoutTimer
    timeout)
       at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(TimeoutTimer timeout, SqlConnectionString connectionOptions, SqlCredential credential, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance,
    SqlConnectionString userConnectionOptions, SessionData reconnectSessionData)
       at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
       at System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
       at System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.ObjectExplorerService.ValidateConnection(UIConnectionInfo ci, IServerType server)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()
    ===================================
    The system cannot find the file specified
    I have tried from so many forms. This is so frustrating. Thank for everyone/anyone who wants to help. So this is what happened: I had to uninstall my previous sqlserver 2012(which worked great) for some reason, and I uninstalled everything from that download.
    Then I installed the trial edition of sql server 2012 (64 Bit) and It wouldn't connect to the database. (Error mentioned above.) My local DB is COWBOYS. (COWBOYS is also my computer name.) After this, I have tried downloading sqlexpress and sqlserver 64bit
    many times and cannot connect to my local DB. 
    How do I connect to my Local DB? 
    Also, I think this might help: (When I run sqlserve.exe, which I was able to find in C:\Program Files\Microsoft SQL Server\110\LocalDB\Binn, I get an error: Your SQL server installation is either corrupt or has been tampered with(Error getting
    instance ID from name). Please uninstall then re-run setup to correct this problem.
    I would happily re install it, if it wasn't my 20th time.
    I don't have any remote connections, I don't use username/password, only window authentication. I work mostly on visual studio, but without able to store /retrieve data, I don't know how to survive.
    May be the solution is very simple, but I am too frustrated. 
    Some of the things I have tried:
    From a command prompt, enter one of the following commands:
    net start "SQL Server Agent (MSSQLSERVER)" OR 
    net start "SQL Server Agent(instancename)"(for instance)
    on my sql configuration, I cannot start anything because there is nothing there to start. I can post more details, if that would help. Also, some more details about the error:
    Details
    Product:
    SQL Server
    ID:
    2
    Source:
    MSSQLServer
    Version:
    10.0
    Component:
    SQLEngine
    Message:
    An error has occurred while establishing a connection to the server. When connecting to SQL Server, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error:
    40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    Explanation
    SQL Server did not respond to the client request because the server is probably not started.
    User Action
    Make sure that the server is started.
    Version:
    9.0
    Component:
    SQLEngine
    Message:
    An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes Provider, error:
    40 - Could not open a connection to SQL Server) (.Net SqlClient Data Provider)
    Explanation
    SQL Server did not respond to the client request because the server is probably not started.
    User Action
    Make sure that the server is started.
    Any one that can help me, I will be greatful. Thank you so much. p.s. please ask me anything if you have any questions.

    It sounds like there are a couple things going on here.  First check if you have a successful install of SQL Server, then we'll figure out the connection issues.
    Can you launch SQL Server Configuration Manager and check for SQL Server (MSSQLSERVER) if default instance or SQL Server (other name) if you've configured your instance as a named instance.  Once you find this, make sure the service is started. 
    If not started, try to start it and see if it throws an error.  If you get an error, post the error message your hitting.  If the service starts, you can then launch SSMS and try to connect.  If you have a default instance, you can use the machine
    name in the connection dialog.  Ex:  "COWBOYS" where Cowboys is the machine name.  However, if you named the SQL Server instance during install, you'll need to connect using the machine\instance format.  Ex:  COWBOYS\Romo (where Romo
    is the instance name you set during install).
    You can also look at the summary.txt file in the SQL Server setup error logs to see what happened on the most recent install.  Past install history is archived in the log folder if you need to dig those up to help troubleshoot, but the most
    recent one may help get to the bottom of it if there is an issue with setup detecting a prior instance that needs to be repaired.
    Thanks,
    Sam Lester (MSFT)
    http://blogs.msdn.com/b/samlester
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click
    "Mark as Answer" and
    "Vote as Helpful" on posts that help you. This can be beneficial to other community members reading the thread.

  • How to configure sso with SSL step by step

    Purpose
    In this document, you can learn how to configure SSO with SSL. After user have certificate installed in browser, he can login without input username and password.
    Overview
    In this document we will demonstrate:
    1.     How to configure OHS support SSL
    2.     How to Register SSO with SSL
    3.     Configure SSO for certificates
    Prerequisites
    Before start this document, you should have:
    1.     Oracle AS 10g infrastructure installed (10.1.2)
    2.     OCA installed
    Note:
    1.     “When you install Oracle infrastructure, please make sure you have select OCA.
    2.     How Certificate-Enabled Authentication Works:
    a.     The user tries to access a partner application.
    b.     The partner application redirects the user to the single sign-on server for authentication. As part of this redirection, the browser sends the user's certificate to the login URL of the server (2a). If it is able to verify the certificate, the server returns the user to the requested application.
    c.     The application delivers content. Users whose browsers are configured to prompt for a certificate-store password may only have to present this password once, depending upon how their browser is configured. If they log out and then attempt to access a partner application, the browser passes their certificate to the single sign-on server automatically. This means that they never really log out. To effectively log out, they must close the browser.
    Enable SSL on the Single Sign-On Middle Tier
    The following steps involve configuring the Oracle HTTP Server. Perform them on the single sign-on middle tier. In doing so, keep the following in mind:
    l     You must configure SSL on the computer where the single sign-on middle tier is running.
    l     You are configuring one-way SSL.
    l     You may enable SSL for simple network encryption; PKI authentication is not required. Note though that you must use a valid wallet and server certificate. The default wallet location is ORACLE_HOME/Apache/Apache/conf/ssl.wlt/default.
    1.     Back up the opmn.xml file, found at ORACLE_HOME/opmn/conf
    2.     In opmn.xml, change the value for the start-mode parameter to ssl-enabled. This parameter appears in boldface in the xml tag immediately following.
    <ias-component id="HTTP_Server">
    <process-type id="HTTP_Server" module-id="OHS">
    <module-data>
    <category id="start-parameters">
    <data id="start-mode" value="ssl-enabled"/>
    </category>
    </module-data>
    <process-set id="HTTP_Server" numprocs="1"/>
    </process-type>
    </ias-component>
    3.     Update the distributed cluster management database with the change: ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct opmn
    4.     Reload the modified opmn configuration file:
    ORACLE_HOME/opmn/bin/opmnctl reload
    5.     Keep a non-SSL port active. The External Applications portlet communicates with the single sign-on server over a non-SSL port. The HTTP port is enabled by default. If you have not disabled the port, this step requires no action.
    6.     Apply the rule mod_rewrite to SSL configuration. This step involves modifying the ssl.conf file on the middle-tier computer. The file is at ORACLE_HOME/Apache/Apache/conf. Back up the file before editing it.
    Because the Oracle HTTP Server has to be available over both HTTP and HTTPS, the SSL host must be configured as a virtual host. Add the lines that follow to the SSL Virtual Hosts section of ssl.conf if they are not already there. These lines ensure that the single sign-on login module in OC4J_SECURITY is invoked when a user logs in to the SSL host.
    <VirtualHost ssl_host:port>
    RewriteEngine on
    RewriteOptions inherit
    </VirtualHost>
    Save and close the file.
    7.     Update the distributed cluster management database with the changes:
    ORACLE_HOME/dcm/bin/dcmctl updateconfig -ct ohs
    8.     Restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl stopproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl startproc process-type=HTTP_Server
    9.     Verify that you have enabled the single sign-on middle tier for SSL by trying to access the OracleAS welcome page, using the format https://host:ssl_port.
    Reconfigure the Identity Management Infrastructure Database
    Change all references of http in single sign-on URLs to https within the identity management infrastructure database. When you change single sign-on URLs in the database, you must also change these URLs in the targets.xml file on the single sign-on middle tier. targets.xml is the configuration file for the various "targets" that Oracle Enterprise Manager monitors. One of these targets is OracleAS Single Sign-On.
    1.     Change Single Sign-On URLs
    Run the ssocfg script, taking care to enter the command on the computer where the single sign-on middle tier is located. Use the following syntax:
    UNIX:
    $ORACLE_HOME/sso/bin/ssocfg.sh protocol host ssl_port
    Windows:
    %ORACLE_HOME%\sso\bin\ssocfg.bat protocol host ssl_port
    In this case, protocol is https. (To change back to HTTP, use http.) The parameter host is the host name, or server name, of the Oracle HTTP listener for the single sign-on server.
    Here is an example:
    ssocfg.sh https login.acme.com 4443
    2. Restart OC4J_SECURITY instance and verify the configuration
    To determine the correct port number, examine the ssl.conf file. Port 4443 is the port number that the OracleAS installer assigns during installation.
    If you run ssocfg successfully, the script returns a status 0. To confirm that you were successful, restart the OC4J_SECURITY instance:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Then try logging in to the single sign-on server at its SSL address:
    https://host:ssl_port/pls/orasso/
         3. Back up the file targets.xml:
    cp ORACLE_HOME/sysman/emd/targets.xml ORACLE_HOME/sysman/emd/targets.xml.backup
    4. Open the file and find the target type oracle_sso_server. Within this target type, locate and edit the three attributes that you passed to ssocfg:
    ·     HTTPMachine—the server host name
    ·     HTTPPort—the server port number
    ·     HTTPProtocol—the server protocol
    If, for example, you run ssocfg like this:
    ORACLE_HOME/sso/bin/ssocfg.sh http sso.mydomain.com:4443
    Update the three attributes this way:
    <Property NAME="HTTPMachine" VALUE="sso.mydomain.com"/>
    <Property NAME="HTTPPort" VALUE="4443"/>
    <Property NAME="HTTPProtocol" VALUE="HTTPS"/>
    5.Save and close the file.
    6.     Reload the OracleAS console:
         ORACLE_HOME/bin/emctl reload
    7. Issue these two commands:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Registering mod_osso
    1.     This command sequence that follows shows a mod_osso instance being reregistered with the single sign-on server.
    $ORACLE_HOME/sso/bin/ssoreg.sh
         -oracle_home_path $ORACLE_HOME
         -config_mod_osso TRUE
         -mod_osso_url https://myhost.mydomain.com:4443
    2.     Restarting the Oracle HTTP Server
    After running ssoreg, restart the Oracle HTTP Server:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    Configuring the Single Sign-On System for Certificates
    1.     Configure policy.properties with the Default Authentication Plugin
    Update the DefaultAuthLevel section of the policy.properties file with the correct authentication level for certificate sign-on. This file is at ORACLE_HOME/sso/conf. Set the default authentication level to this value:
    DefaultAuthLevel = MediumHighSecurity
    Then, in the Authentication plugins section, pair this authentication level with the default authentication plugin:
    MediumHighSecurity_AuthPlugin = oracle.security.sso.server.auth.SSOX509CertAuth
    2.     Restart the Single Sign-On Middle Tier
    After configuring the server, restart the middle tier:
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=HTTP_Server
    ORACLE_HOME/opmn/bin/opmnctl restartproc process-type=OC4J_SECURITY
    Bringing the SSO Users to OCA User Certificate Request URL
    The OCA server reduces the administrative and maintenance cost of provisioning a user certificate. The OCA server achieves this by authenticating users by using OracleAS SSO server authentication. All users who have an Oracle AS SSO server account can directly get a certificate by using the OCA user interface. This reduces the time normoally requidred to provision a certificate by a certificate authority.
    The URL for the SSO certificate Request is:
    https://<Oracle_HTTP_host>:<oca_ssl_port>/oca/sso_oca_link
    You can configure OCA to provide the user certificate request interface URL to SSO server for display whenever SSO is not using a sertificate to authenticate a user. After the OracleAS SSO server authenticates a user, it then display the OCA screen enabling that user to request a certificate.
    To link the OCA server to OracleAS SSO server, use the following command:
    ocactl linksso
    opmnctl stoproc type=oc4j instancename=oca
    opmnctl startproc type=oc4j instancename=oca
    You also can use ocactl unlinksso to unlink the OCA to SSO.

    I have read the SSO admin guide, and performed the steps for enabling SSL on the SSO, and followed the steps to configure mod_osso with virtual host on port 4443 as mentioned in the admin guide.
    The case now is that when I call my form (which is developed by forms developer suite 10g and deployed on the forms server which is SSO enabled) , it calls the SSO module on port 7777 using http (the default behaviour).
    on a URL that looks like this :
    http://myhostname:7777/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    and gives the error :
    ( Forbidden
    You don't have permisission to access /sso/auth on this server at port 7777)
    when I manually change the URL to :
    https://myhostname:4443/pls/orasso/orasso.wwsso_app_admin.ls_login?Site2pstoreToken=.......
    the SSO works correctly.
    The question is :
    How can I change this default behaviour and make it call SSO on port 4443 using https instead ?
    Any ideas ?
    Thanks in advance

  • OracleBAMAdapter Configuration problem in SOA suite 11g

    Hi,
    In Oracle SOA suite 11g(11.1.1.2.0), OracleBAMAdapter configuration using WebLogic server console is resulting in the following error
    * An error occurred during activation of changes, please see the log for details.
    * [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: oracle.soa.workflow.wc, exact-match: false].
    Steps used for configuration:
    1) Modify adapter configuration using navigation:: Deployments -> OracleBAMAdapter -> Configuration -> Outbound Connection Pools -> oracle.bam.adapter.adc.RMIConnectionFactory -> eis/bam/rmi
    2) Specified connection properties with BAM server port details
    HostName localhost
    InstanceName ADCServer1
    Password welcome1
    PortNumber *9001*
    UserName weblogic
    In config.xml (%Domains%/soa_domain/config/) , I could see the following library entry
    <library>
    <name>[email protected]</name>
    <target>AdminServer,soa_server1</target>
    <source-path>K:\OracleFMW\Oracle_SOA/soa/modules/oracle.soa.workflow_11.1.1/oracle.soa.workflow.wc.jar</source-path>
    <security-dd-model>DDOnly</security-dd-model>
    <staging-mode>nostage</staging-mode>
    </library>
    Could you please help resolving this issue?
    Regards
    Naveen

    I do not think that would qualify as a solution :-). I was negligient in deploying Work Flow Application, and was not deselecting the checkbox in 11.1.1.2.0 JDeveloper, which reads out like "Deploy to all the servers". Thus it was trying to deploy it to BAM server as well as the Admin Server. I had to deselect it. It's pretty mundane thing that I was missing.
    Warm regards.

  • 'register with shared services' option missing while configuring eas

    I am facing some issues while configuring a new epm system:
    While configuring eas 11.1.2.0, I am not getting the option' Register with Shared Services'. but otherwise, the configuration is successful. As a result, I don't see the Business Rules option in Shared Services/Application Groups. But we are able to use eas console and do see business rules node in eas console.
    How do I get configurator to show this option?
    I was able to configure and register all other Hyperion applications.
    Thanks,
    Edited by: 784749 on Mar 28, 2012 12:35 PM
    Edited by: 784749 on Mar 28, 2012 12:59 PM

    One way is to use the registry tool though make sure you backup the shared services database before running the utility.
    It is located in <MIDDLEWARE_HOME>/user_projects/<instancename>/bin
    to change the status for EAS for HSS then run the following
    epmsys_registry updateproperty BUSINESS_RULES_PRODUCT/system_tasks_configuration/@hubRegistration Pending
    Now if you run the configurator again it should let you select just Essbase Administration Services, you dont need to select the child components.
    It should then registry with Shared Services.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • SQL Server Configuration Tools Disappeared

    I know I used to have Server Configuration Tools, but when I just looked for it, it seems like it has disappeared.  I'm looking at this.
    I'm getting this login error.
    I used to be able to reset SQL Server using the Configuration Tools, but now I can't reset it, and I can't login.
    Please help!!
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

    Hello,
    When you connect using SSMS ( SQL server management studio) in server name give like 
    hostname\mssqlserver--if it is default instance
    hostanme\instancename if it is named instance
    hostname\SQLEXPRESS is it is express edition
    now go to run tyoe services.msc look for SQL server services check if it starte dor not if not please start in try connection using above information
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Sql Server Configuration Manager fails to start

    Hi,
    My Os is Windows 7 Enterprise.
    I have Sql Server 2008 Developer Edt. with sp1
    and Sql Server 2005 express (which comes with Visual Studio)
    When I try to open Configuration Manager it fails:
    Cannot connect to WMI provider. You do not have permission or the server is unreachable. Note that you can only manage SQL Server 2005 and later server with SQL Server Configuration Manager.
    Invalid class [0x80041010]
    I've tried everything I could find on the net. But none of them worked for me.
    Later, I realised that the file called "sqlwep-uni.mof" under "c:\Program Files\Microsoft SQL Server\MSSQL10.INSTANCENAME\MSSQL\Binn" has failed with mofcomp command.
    Microsoft (R) MOF Compiler Version 6.1.7600.16385
    Copyright (c) Microsoft Corp. 1997-2006. All rights reserved.
    Parsing MOF file: sqlwep-uni.mof
    MOF file has been successfully parsed
    Storing data in the repository...
    An error occurred while processing item 4 defined on lines 88 - 88 in file sqlwep-uni.mof:
    Error Number: 0x8004100e, Facility: WMI
    Description: Invalid namespace
    Compiler returned error 0x8004100e
    Any suggestions?

    I think this can be fixed by parsing / registering the sqlmgmproviderxpsp2up mof file.
    Have a look here - http://blogs.msdn.com/echarran/archive/2006/01/03/509061.aspx
    Thanks, Leks
    That was the first thing I tried :)
    I've also tried this: http://social.msdn.microsoft.com/Forums/en/sqltools/thread/468b8484-2729-4a06-bfc3-efe54507dcb6
    and this: http://msmvps.com/blogs/martinpoon/archive/2009/11/27/sql-server-configuration-manager-cannot-connect-to-wmi-provider-invalid-class-0x80041010.aspx
    and that: http://www.nucleustechnologies.com/Repair-WMI-Services.php
    and some other stuff I could find.
    At least I've tried to repair Sql 2008 installation. But it also did not work.
    Lastly I've uninstalled all the instances and components related with sql. And I renamed the folders (C:\Program Files\Microsoft SQL Server and the hidden folder C:\ProgramData\Microsoft\Microsoft SQL Server) and made a clean install. Voila, it worked!
    But the "Sql Server Configuration Manager"s icon has gone somewhere :) Anyway it works fine now.
    I had to do that because I have a project to finish.
    Poor Microsoft!

  • Hyperion Shared services configuration problem. 11.1.2.2

    Installed 11.1.2.2 HSS and EAS on middle tier linux server and using a 2 brand new SQL Server 2008 database(s) as the repository on Windows 2003 machine. These servers were used in 11.1.2.0 environment so should not have any tcp errors but configtool is throwing the "EPMCFG-10368 cannot connect to database error". Configtool.log only has the "INFO:Start Configuration" message in it. I can ping/telnet from Linux server to SQL Server using 1433 port. As i mentioned, the 11.1.2.0 version was used with these 2 servers and this version was un-installed completely from the Linux server and we are using a brand new SQL database that is setup with a new ID that looks to have all the proper security credentials per the start up instuctions. I do notice that the OraInventory folder and some files still remain from the 11.1.2.0 version in the home directory of the Linux server so maybe that is an issue? Any thoughts on why configtool not finding my new SQL database? Oracle ticket is open but we still in the TCP, Pipe checking phase with them...

    I assume you've already ran -
    Alter database <yourdbname> set read_committed_snapshot on
    Alter database <yourdbname> set allow_snapshot_isolation on
    and -
    Launched SQL Server Configuration Manager, Under SQL Server Network configuration selected "Protocols for <InstanceName>" ensured that the "TCP/IP" protocol is enabled and "Named pipes" is also enabled.
    If not, these changes need to be made and the DB services restarted.

  • Configuration error description: The system cannot find the path specified

    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Exit code (Decimal):           -2068643839
      Exit facility code:            1203
      Exit error code:               1
      Exit message:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then
    rerun SQL Server Setup.
      Start time:                    2012-10-26 00:24:37
      End time:                      2012-10-26 00:32:07
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20121026_002259\Detail.txt
      Exception help link:           http%3a%2f%2fgo.microsoft.com%2ffwlink%3fLinkId%3d20476%26ProdName%3dMicrosoft%2bSQL%2bServer%26EvtSrc%3dsetup.rll%26EvtID%3d50000%26ProdVer%3d10.0.1600.22%26EvtType%3d0xF57C3D6F%400xFB92A9BB
    Machine Properties:
      Machine name:                  TEST-PC
      Machine processor count:       4
      OS version:                    Windows Vista
      OS service pack:               
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                   
    Feature                                  Language            
    Edition              Version         Clustered
      Sql Server 2008      SQL                  MSSQL10.SQL                   
    Database Engine Services                 1033                 Standard Edition    
    10.0.1600.22    No        
      Sql Server 2008      SQL                  MSSQL10.SQL                   
    SQL Server Replication                   1033                 Standard Edition    
    10.0.1600.22    No        
      Sql Server 2008      SQL                  MSSQL10.SQL                   
    Full-Text Search                         1033                
    Standard Edition     10.0.1600.22    No        
      Sql Server 2008      SQL                  MSAS10.SQL                    
    Analysis Services                        1033                
    Standard Edition     10.0.1600.22    No        
      Sql Server 2008      SQL                  MSRS10.SQL                    
    Reporting Services                       1033                                     
    10.0.1600.22    No        
      Sql Server 2008      TEST                 MSSQL10.TEST                  
    Database Engine Services                 1033                 Standard Edition    
    10.0.1600.22    No        
      Sql Server 2008      TEST                 MSSQL10.TEST                  
    SQL Server Replication                   1033                 Standard Edition    
    10.0.1600.22    No        
      Sql Server 2008      TEST                 MSSQL10.TEST                  
    Full-Text Search                         1033                
    Standard Edition     10.0.1600.22    No        
      Sql Server 2008      TEST                 MSAS10.TEST                   
    Analysis Services                        1033                
    Standard Edition     10.0.1600.22    No        
      Sql Server 2008      TEST                 MSRS10.TEST                   
    Reporting Services                       1033                                     
    10.0.1600.22    No        
      Sql Server 2008      SQLSERVER            MSSQL10.SQLSERVER              Database Engine Services                
    1033                 Enterprise Evaluation Edition 10.0.1600.22    No        
      Sql Server 2008      SQLSERVER            MSSQL10.SQLSERVER              SQL Server Replication                  
    1033                 Enterprise Evaluation Edition 10.0.1600.22    No        
      Sql Server 2008      SQLSERVER            MSSQL10.SQLSERVER              Full-Text Search                        
    1033                 Enterprise Evaluation Edition 10.0.1600.22    No        
      Sql Server 2008      SQLSERVER            MSAS10.SQLSERVER               Analysis Services                       
    1033                 Enterprise Evaluation Edition 10.0.1600.22    No        
      Sql Server 2008      SQLSERVER            MSRS10.SQLSERVER               Reporting Services                      
    1033                                      10.0.1600.22   
    No        
      Sql Server 2008      SQLEXPRESS           MSSQL10.SQLEXPRESS             Database Engine Services                
    1033                 Express Edition      10.1.2531.0     No        
      Sql Server 2008      SQLEXPRESS           MSSQL10.SQLEXPRESS             SQL Server Replication                  
    1033                 Express Edition      10.1.2531.0     No        
      Sql Server 2008      MSSQLSERVER          MSSQL10.MSSQLSERVER            Database Engine Services                
    1033                 Standard Edition     10.0.1600.22    No        
      Sql Server 2008      MSSQLSERVER          MSSQL10.MSSQLSERVER            SQL Server Replication                  
    1033                 Standard Edition     10.0.1600.22    No        
      Sql Server 2008                                                         
    Management Tools - Basic                 1033                 Enterprise Evaluation Edition 10.0.1600.22   
    No        
      Sql Server 2008                                                         
    Management Tools - Complete              1033                 Enterprise Evaluation Edition 10.0.1600.22   
    No        
      Sql Server 2008                                                         
    Client Tools Connectivity                1033                 Enterprise Evaluation Edition 10.0.1600.22   
    No        
      Sql Server 2008                                                         
    Client Tools Backwards Compatibility     1033                 Enterprise Evaluation Edition 10.0.1600.22    No      
      Sql Server 2008                                                         
    Client Tools SDK                         1033                
    Enterprise Evaluation Edition 10.0.1600.22    No        
      Sql Server 2008                                                         
    Integration Services                     1033                 Enterprise Evaluation
    Edition 10.0.1600.22    No        
    Package properties:
      Description:                   SQL Server Database Services 2008
      SQLProductFamilyCode:          {628F8F38-600E-493D-9946-F4178F20A8A9}
      ProductName:                   SQL2008
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         C:\instal_sw\SQL Server 2008\SQL Server 2008\x64\setup\
      Installation edition:          EVAL
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 NT AUTHORITY\SYSTEM
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Automatic
      ASBACKUPDIR:                   Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   Config
      ASDATADIR:                     Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  <empty>
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            <empty>
      ASTEMPDIR:                     Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20121026_002259\ConfigurationFile.ini
      ENABLERANU:                    False
      ERRORREPORTING:                False
      FEATURES:                      SQLENGINE,REPLICATION,BOL,SNAC_SDK,OCS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  NT AUTHORITY\LOCAL SERVICE
      FTSVCPASSWORD:                 *****
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    sqlserver2008
      INSTANCENAME:                  SQLSERVER2008
      ISSVCACCOUNT:                  NT AUTHORITY\NetworkService
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      MEDIASOURCE:                   C:\instal_sw\SQL Server 2008\SQL Server 2008\
      NPENABLED:                     0
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  <empty>
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 NT AUTHORITY\SYSTEM
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           Test-PC\Test
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    0
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20121026_002259\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xFB92A9BB
      Configuration error description: The system cannot find the path specified
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20121026_002259\Detail.txt
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Server Replication
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xFB92A9BB
      Configuration error description: The system cannot find the path specified
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20121026_002259\Detail.txt
      Feature:                       SQL Server Books Online
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Microsoft Sync Framework
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20121026_002259\SystemConfigurationCheck_Report.htm

    Hi Maggie,
    Even i am facing the same problem while installing sql server 2008 R2 on windows server 2012 R2 
    The required error message is provided below:
    Overall summary:
      Final result:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Exit code (Decimal):           -2068643839
      Exit facility code:            1203
      Exit error code:               1
      Exit message:                  SQL Server installation failed. To continue, investigate the reason for the failure, correct the problem, uninstall SQL Server, and then rerun SQL Server Setup.
      Start time:                    2014-11-24 06:23:13
      End time:                      2014-11-24 06:47:19
      Requested action:              Install
      Log with failure:              C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141124_061929\Detail.txt
      Exception help link:           http%3a%2f%2fgo.microsoft.com%2ffwlink%3fLinkId%3d20476%26ProdName%3dMicrosoft%2bSQL%2bServer%26EvtSrc%3dsetup.rll%26EvtID%3d50000%26ProdVer%3d10.0.1600.22%26EvtType%3d0xCEC86A55%400xFB92A9BB
    Machine Properties:
      Machine name:                  M2MBUILDTEST01
      Machine processor count:       2
      OS version:                    Windows Server 2008
      OS service pack:               
      OS region:                     United States
      OS language:                   English (United States)
      OS architecture:               x64
      Process architecture:          64 Bit
      OS clustered:                  No
    Product features discovered:
      Product              Instance             Instance ID                    Feature                
                     Language             Edition              Version         Clustered 
    Package properties:
      Description:                   SQL Server Database Services 2008
      SQLProductFamilyCode:          {628F8F38-600E-493D-9946-F4178F20A8A9}
      ProductName:                   SQL2008
      Type:                          RTM
      Version:                       10
      SPLevel:                       0
      Installation location:         C:\SQL Server 2008\Developer RTM\x64\setup\
      Installation edition:          DEVELOPER
    User Input Settings:
      ACTION:                        Install
      ADDCURRENTUSERASSQLADMIN:      False
      AGTSVCACCOUNT:                 swg\gverma
      AGTSVCPASSWORD:                *****
      AGTSVCSTARTUPTYPE:             Manual
      ASBACKUPDIR:                   C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Backup
      ASCOLLATION:                   Latin1_General_CI_AS
      ASCONFIGDIR:                   C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Config
      ASDATADIR:                     C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Data
      ASDOMAINGROUP:                 <empty>
      ASLOGDIR:                      C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Log
      ASPROVIDERMSOLAP:              1
      ASSVCACCOUNT:                  swg\gverma
      ASSVCPASSWORD:                 *****
      ASSVCSTARTUPTYPE:              Automatic
      ASSYSADMINACCOUNTS:            SWG\gverma
      ASTEMPDIR:                     C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Temp
      BROWSERSVCSTARTUPTYPE:         Disabled
      CONFIGURATIONFILE:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141124_061929\ConfigurationFile.ini
      ENABLERANU:                    False
      ERRORREPORTING:                False
      FEATURES:                      SQLENGINE,REPLICATION,FULLTEXT,AS,RS,BIDS,CONN,IS,BC,SDK,BOL,SSMS,ADV_SSMS,SNAC_SDK,OCS
      FILESTREAMLEVEL:               0
      FILESTREAMSHARENAME:           <empty>
      FTSVCACCOUNT:                  NT AUTHORITY\LOCAL SERVICE
      FTSVCPASSWORD:                 *****
      HELP:                          False
      INDICATEPROGRESS:              False
      INSTALLSHAREDDIR:              C:\Program Files\Microsoft SQL Server\
      INSTALLSHAREDWOWDIR:           C:\Program Files (x86)\Microsoft SQL Server\
      INSTALLSQLDATADIR:             <empty>
      INSTANCEDIR:                   C:\Program Files\Microsoft SQL Server\
      INSTANCEID:                    MSSQLSERVER
      INSTANCENAME:                  MSSQLSERVER
      ISSVCACCOUNT:                  NT AUTHORITY\NetworkService
      ISSVCPASSWORD:                 *****
      ISSVCSTARTUPTYPE:              Automatic
      MEDIASOURCE:                   C:\SQL Server 2008\Developer RTM\
      NPENABLED:                     0
      PID:                           *****
      QUIET:                         False
      QUIETSIMPLE:                   False
      RSINSTALLMODE:                 FilesOnlyMode
      RSSVCACCOUNT:                  SWG\gverma
      RSSVCPASSWORD:                 *****
      RSSVCSTARTUPTYPE:              Automatic
      SAPWD:                         *****
      SECURITYMODE:                  SQL
      SQLBACKUPDIR:                  <empty>
      SQLCOLLATION:                  SQL_Latin1_General_CP1_CI_AS
      SQLSVCACCOUNT:                 swg\gverma
      SQLSVCPASSWORD:                *****
      SQLSVCSTARTUPTYPE:             Automatic
      SQLSYSADMINACCOUNTS:           SWG\gverma
      SQLTEMPDBDIR:                  <empty>
      SQLTEMPDBLOGDIR:               <empty>
      SQLUSERDBDIR:                  <empty>
      SQLUSERDBLOGDIR:               <empty>
      SQMREPORTING:                  False
      TCPENABLED:                    0
      X86:                           False
      Configuration file:            C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141124_061929\ConfigurationFile.ini
    Detailed results:
      Feature:                       Database Engine Services
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xFB92A9BB
      Configuration error description: The system cannot find the file specified
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141124_061929\Detail.txt
      Feature:                       SQL Client Connectivity SDK
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Server Replication
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xFB92A9BB
      Configuration error description: The system cannot find the file specified
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141124_061929\Detail.txt
      Feature:                       Full-Text Search
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Failed: see details below
      Configuration error code:      0xFB92A9BB
      Configuration error description: The system cannot find the file specified
      Configuration log:             C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141124_061929\Detail.txt
      Feature:                       Analysis Services
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Reporting Services
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Integration Services
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Client Tools Connectivity
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Complete
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Management Tools - Basic
      Status:                        Failed: see logs for details
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Client Tools SDK
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Client Tools Backwards Compatibility
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Business Intelligence Development Studio
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       SQL Server Books Online
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
      Feature:                       Microsoft Sync Framework
      Status:                        Passed
      MSI status:                    Passed
      Configuration status:          Passed
    Rules with failures:
    Global rules:
    Scenario specific rules:
    Rules report file:               C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20141124_061929\SystemConfigurationCheck_Report.htm

  • Cannot enable TCP/IP through the Configuration Manager

    Hi,
    I am using SQL Server 2008 sp1 Developer Edition.  The database engine service is running and the SQL browser service is running. It is set to allow remote connections.
    When I open SQL Server Configuration Manager and expand the SQL Server Network Configuration mode and select Protocols for <server name>, it shows Shared Memory as Enabled and all others as Disabled.
    If I right click on TCP/IP and select Enable, I get a warning stating that the changes will be saved but will not take effect until after I restart the service. When I click OK on the warning popup to close it, it still shows TCP/IP as Disabled.
    After I restart the service I return to the Protocols screen and check the value of TCP/IP. It is still Disabled. I am still unable to connect to it remotely.
    Configuration Manager is not allowing me to enable TCP/IP. I need to do this. I looked for an alternate way to enable TCP/IP but have not been able to find one that works. 
    Any thoughts?

    Hi,
    It seems, you do not have enough permission for modifying values.
    a. Try to change using sysadmin account.
    b. Open configuration manager with "Run as Administrator" method and try to modify the changes.
    If you will not able to modify using sysadmin, do below steps. Please note that changing registry will cause lot of issues.
    1. append existing value with "tcp" (ie eg  "tcp np")
    HKLM\SOFTWARE\Microsoft\Microsoft SQL Server\InstanceName\MSSQLServer\SuperSocketNetLib
    \ProtocolList
    2. Create a new key "TCP" in below path
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQLServer\SuperSocketNetLib\
    3. Create a string value "TcpPort" in "TCP" and desired value.
    Please compare your other server for registry reference.
    Ramesh S
    www.sequalserver.com

  • Configuring HFM 11.1.2 with sql2008 with multiple instances.

    Hello All,
    I have installed and configured HFM against an SQL 2008 server that has more than one DB instance. So, in order for me to successfully connect to the DB instance (say for example in a UDL), I first have to put the server name and the a “\instancename”. Unfortunately, it seems that the “\instancename” doesn’t seem to be saved in the conifg utility. If I rerun the config, only the server name shows in the config. I believe that this is causing me to not be able to register the HFM cluster with Shared Services. I look in the log files (specifically the HsvEventLog.log file) and I can see in there errors that state “SQL Server does not exist or access denied”. I know that I am a DBO on this DB and that this error is exactly the same error that I get in a UDL that does not have the “\instance” when I try to connect. When I go into Shared Services deployment artifacts for HFM, I can see that it is also not saving the “\instance” name in their either. I try to export/import with the “\instance” name added in and it fails upon import stating that the servername\instance host is unreachable or does not exist. So, all of this to ask is if there is a simple fix out there that already exist on how to configure HFM if the DB has multiple instances. Thank you in advance for any help or information that you are able to provide.

    I think you would need to file a support call for us to take a look. Something is amiss here. You have 2 OHS running. Are they on 2 different boxes using the same shared service? How are these 2 OHS controlled? Do you have a load balancer in front of it?
    Run the epmsys_registry.bat and look at the output. Search for CALC_LWA (LOGICAL_WEB_APP). Look at the children of that. How many CALC_WEBAPP do you see?
    Based on that I can tell if it is a problem with the configuration.
    In the meantime,
    If you can get to the exploded directory of CALC manager, (On my Windows box it is C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\CalcMgr0\tmp\servers\CalcMgr0\tmp\_WL_user\CALC_11.1.2.0\qxf61x\war), edit CalcMgrConfig.properties under WEB-INF\conf
    Add the following line to the end:
    DATABASE_CACHE_CLUSTER=true
    Now save the file and REPEAT the same for the other instances of CALC manager.
    Now restart all CALC servers and see if the issue is resolved (just a temporary check to see if it working without any issues)
    -Sree Menon

  • Error in Device configuration

    Hi all
    I get the following error when trying to add the mobile components to the created Device Configuration.
    com.sap.ip.mi.admin.core.ApplicationException:Field SEQUENCE_NO not a member of MEMGMT_APPLICATIONS_STR
    Had any one had this kind of problem. Please advice
    Thanks, Raj

    First of all check whether your JCo RFC provider service is configured in your J2EE engine. This you can check by going to Visual Admin. In your server, got to usr\sap\<instancename>\DVEBMGS00\j2ee\admin and double click go.bat. Then login as J2EE_admin. Go to services in the cluster tab ->JCo RFC Provider and see whether your ABAP stack is configured.
    1.If it is not, then login to NWA through your browser as J2ee admin, go to Administration->Deploy and Change-> Select MI Scenario and then select option 02 from the Template drop down list box, click on "Execute Template" Give the necessary details in the different text boxes and click install. Do the same for option 03 and 04.
    2.If your Jco RFC Provider service is already configured/or you did the above step, log into your ABAP client through SAP Logon with the User which has all sap privileges - dont use ddic or SAP*. Then goto transaction SE11 click on DATA type, type MEMGMT_APPLICATIONS_STR and click Display. Check for the field SEQUENCE_NO. If it is not there, then click on Display/Change. Here you may require an access key - ask your Basis Administrator/Consultant for the same. Add the particular field to the structure and probably....your problem will be solved.
    Edit: The type of the field is :
    Component Type: NUM6
    Datatype : NUMC
    Length: 6
    Short Text: Numerical Character Field of Length 6
    Message was edited by:
            Veeraraagavan R

  • Configure Distribution.error

    When I try to configure distribution for replication, I get an error stating that it cant connect to local host and that I need to connect using the computer name.  The thing is, I am ALREADY connecting using the computer name! 
    SQL was installed, and then the computer name was changed.  It now wants me to connect using the old name, but that is not valid any more.  I have tried to go into all the SQL setup areas that I can find, but they all reference the new, correct,
    server name.  Not sure why SQL is hung up on the old name or where to fix this.  Any / all help is appreciated!

    Olaf is correct.  Did you run the procedures in the document Olaf provided?
    After the computer is renamed, for a default instance of SQL Server:
    sp_dropserver <old_name>;
    GO
    sp_addserver <new_name>, local;
    GO
    For a named instance of SQL Server:
    sp_dropserver <old_name\instancename>;
    GO
    sp_addserver <new_name\instancename>, local;
    GO
    That should clear things up.
    Brandon Williams (blog |
    linkedin)

  • Running CM SDK Configuration Assistant occurs error!

    Hi,
    I am using Oracle CM SDK 10g version 9.0.4.1.0
    The Oracle Database 10g version is 10.1.0
    The Oracle Application Server 10g version is 9.0.4
    When I run CM SDK Configuration Assistant, it happens error like these
    these error message is from CmsdkConfig.log file.
    *********************** Starting CreateIfsUsersActionForIfsCm ***********************
    BaseApp arguments:
    SystemPassword=<password hidden>
    EmailAddressSuffix=
    jdbc.user.name=USERS
    Domain=ifs://morris:1521:orcl.idv:USERS
    jdbc.user.password=<password hidden>
    SchemaPassword=<password hidden>
    parameterfile=E:\oracle\OraJ2EE_904\ifs\cmsdk\admin/create/common/CreateIfsUsers.def
    GuestPassword=<password hidden>
    ScottPassword=<password hidden>
    jdbc.database.url=jdbc:oracle:thin:@(description=(address=(host=morris)(protocol=tcp)(port=1521))(connect_data=(service_name=orcl.idv)))
    Starting service
    java.lang.UnsatisfiedLinkError: make_c_state
         at oracle.jdbc.oci8.OCIDBAccess.make_c_state(Native Method)
         at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:458)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:377)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:515)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:345)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at oracle.ifs.server.LibraryConnection.<init>(LibraryConnection.java:284)
         at oracle.ifs.server.ConnectionPool.constructLibraryConnection(ConnectionPool.java:730)
         at oracle.ifs.server.ConnectionPool.createLibraryConnection(ConnectionPool.java:691)
         at oracle.ifs.server.ConnectionPool.<init>(ConnectionPool.java:326)
         at oracle.ifs.server.S_LibraryService.resetConnectionPools(S_LibraryService.java:3923)
         at oracle.ifs.server.S_LibraryService.<init>(S_LibraryService.java:1240)
         at oracle.ifs.server.S_LibraryService.startService(S_LibraryService.java:1615)
         at oracle.ifs.beans.LibraryService.startService(LibraryService.java:369)
         at oracle.ifs.admin.tools.credential.CreateIfsUsers.run(CreateIfsUsers.java:166)
         at oracle.ifs.admin.actions.CreateIfsUsersAction.execute(CreateIfsUsersAction.java:51)
         at oracle.ifs.admin.actions.BaseAppAction.perform(BaseAppAction.java:179)
         at oracle.ifs.utils.action.ActionQueue.performActions(ActionQueue.java:303)
         at oracle.ifs.utils.action.ActionQueue.run(ActionQueue.java:229)
         at java.lang.Thread.run(Thread.java:534)
    Failed = oracle.ifs.utils.action.ActionFailedException: java.lang.UnsatisfiedLinkError: make_c_state
    oracle.ifs.utils.action.ActionFailedException: java.lang.UnsatisfiedLinkError: make_c_state
         at oracle.ifs.admin.actions.BaseAppAction.perform(BaseAppAction.java:188)
         at oracle.ifs.utils.action.ActionQueue.performActions(ActionQueue.java:303)
         at oracle.ifs.utils.action.ActionQueue.run(ActionQueue.java:229)
         at java.lang.Thread.run(Thread.java:534)
    recording that configuration failed
    iFS configuration failed; the following error occurred:
    Exception traces ---->
    oracle.ifs.utils.action.ActionFailedException: oracle.ifs.utils.action.ActionFailedException: java.lang.UnsatisfiedLinkError: make_c_state
         at oracle.ifs.admin.tools.schema.SchemaCreator.perform(SchemaCreator.java:180)
         at oracle.ifs.utils.action.ActionQueue.performActions(ActionQueue.java:303)
         at oracle.ifs.utils.action.ActionQueue.run(ActionQueue.java:229)
         at java.lang.Thread.run(Thread.java:534)
    oracle.ifs.utils.action.ActionFailedException: java.lang.UnsatisfiedLinkError: make_c_state
         at oracle.ifs.admin.actions.BaseAppAction.perform(BaseAppAction.java:188)
         at oracle.ifs.utils.action.ActionQueue.performActions(ActionQueue.java:303)
         at oracle.ifs.utils.action.ActionQueue.run(ActionQueue.java:229)
         at java.lang.Thread.run(Thread.java:534)
    java.lang.UnsatisfiedLinkError: make_c_state
         at oracle.jdbc.oci8.OCIDBAccess.make_c_state(Native Method)
         at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:458)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:377)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:515)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:345)
         at java.sql.DriverManager.getConnection(DriverManager.java:512)
         at java.sql.DriverManager.getConnection(DriverManager.java:171)
         at oracle.ifs.server.LibraryConnection.<init>(LibraryConnection.java:284)
         at oracle.ifs.server.ConnectionPool.constructLibraryConnection(ConnectionPool.java:730)
         at oracle.ifs.server.ConnectionPool.createLibraryConnection(ConnectionPool.java:691)
         at oracle.ifs.server.ConnectionPool.<init>(ConnectionPool.java:326)
         at oracle.ifs.server.S_LibraryService.resetConnectionPools(S_LibraryService.java:3923)
         at oracle.ifs.server.S_LibraryService.<init>(S_LibraryService.java:1240)
         at oracle.ifs.server.S_LibraryService.startService(S_LibraryService.java:1615)
         at oracle.ifs.beans.LibraryService.startService(LibraryService.java:369)
         at oracle.ifs.admin.tools.credential.CreateIfsUsers.run(CreateIfsUsers.java:166)
         at oracle.ifs.admin.actions.CreateIfsUsersAction.execute(CreateIfsUsersAction.java:51)
         at oracle.ifs.admin.actions.BaseAppAction.perform(BaseAppAction.java:179)
         at oracle.ifs.utils.action.ActionQueue.performActions(ActionQueue.java:303)
         at oracle.ifs.utils.action.ActionQueue.run(ActionQueue.java:229)
         at java.lang.Thread.run(Thread.java:534)
    anyone can help me
    thank so much,
    Morris

    Hi Joe,
    This doesn't look to good.. you may be able to redeploy the cmsdk.ear file to the OC4J_iFS_cmsdk instance - but the safest bet may be to delete the OC4J_iFS_cmsdk instance alltogether - then re-run the cm sdk configuration assistant.
    After (re)deployment the oc4j.properties and opmn.xml files should be updated to contain something along the lines of:
    oc4j.properties file in ORACLE_HOME/j2ee/OC4J_iFS_cmsdk/config has the settings:
    IFS.DOMAIN.Name=ifs://optimo.33.Red-80-58-0.pooles.rima-tde.net:1521:joe:ESQUEMA17102003
    IFS.DOMAIN.NODE.Name=optimo HTTP Node
    IFS.DOMAIN.NODE.OracleHome=C:/OracleIASOptimo
    IFS.DOMAIN.NODE.IfsHome=C:/OracleIASOptimo/ifs/cmsdk
    and the ORACLE_HOME/opmn/conf/opmn.xml has entries along the lines of:
    <oc4j instanceName="OC4J_iFS_cmsdk" gid="OC4J_iFS_cmsdk">
    <environment>
    <prop name="PATH" value="C:/OracleIASOptimo\bin"/>
    <prop name="NLS_LANG" value=".UTF8"/>
    </environment>
    </oc4j>
    Matt.

  • The operation CONFIGURE of addon am-configurator completed with an error

    I don't know why, but I can't get App Server to Start any more.
    The only thing I can think of is that I've installed Tomcat & JBoss since the server was installed initially as part of JEE SDK. I am on Java version 1.6.0_04 & App Server is release 91. Googling has not led me to a resolution I can understand.
    BTW:Both Tomcat/JBoss are services have been stopped when I attempt to start
    Sun's incarnation...
    Cheers folks/
    asadmin start-domain domain1
    Starting Domain domain1, please wait.
    Log redirected to C:\Sun\SDK\domains\domain1\logs\server.log.
    INFO: Admin Host name : null
    java.lang.NullPointerException
    at java.util.Hashtable.put(Hashtable.java:394)
    at java.util.Properties.setProperty(Properties.java:143)
    at com.sun.am.AMConfigurator.generateConfiguration(AMConfigurator.java:771)
    at com.sun.am.AMConfigurator.main(AMConfigurator.java:366)
    at com.sun.am.AMConfigurator.configure(AMConfigurator.java:1879)
    at com.sun.enterprise.addons.AddonConfigurationController.invokeApi(AddonConfigurationController.java:270)
    at com.sun.enterprise.addons.AddonConfigurationController.configure(AddonConfigurationController.java:169)
    at com.sun.enterprise.addons.AddonConfigurationController.configureDAS(AddonConfigurationController.java:136)
    at com.sun.enterprise.addons.AddonFacade.configureDAS(AddonFacade.java:110)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sun.enterprise.cli.commands.AddonControl.configureDAS(AddonControl.java:100)
    at com.sun.enterprise.cli.commands.StartDomainCommand.configureAddons(StartDomainCommand.java:486)
    at com.sun.enterprise.cli.commands.StartDomainCommand.init(StartDomainCommand.java:455)
    at com.sun.enterprise.cli.commands.StartDomainCommand.startDomain(StartDomainCommand.java:123)
    at com.sun.enterprise.cli.commands.StartDomainCommand.runCommand(StartDomainCommand.java:215)
    at com.sun.enterprise.cli.framework.CLIMain.invokeCommand(CLIMain.java:171)
    at com.sun.enterprise.cli.framework.CLIMain.main(CLIMain.java:79)
    The operation CONFIGURE of addon am-configurator completed with an error. Error message : (java.lang.NullPointerExceptio
    n)
    Redirecting output to C:/Sun/SDK/domains/domain1/logs/server.log
    Domain domain1 is ready to receive client requests. Additional services are being started in background.
    Domain [domain1] is running [Sun Java System Application Server 9.1_01 (build b09d-fcs)] with its configuration and logs
    at: [C:\Sun\SDK\domains].
    Admin Console is available at [http://localhost:4848].
    Use the same port [4848] for "asadmin" commands.
    User web applications are available at these URLs:
    [http://localhost:8080 https://localhost:8181 ].
    Following web-contexts are available:
    [web1 /__wstx-services portletdriver ].
    Standard JMX Clients (like JConsole) can connect to JMXServiceURL:
    [service:jmx:rmi:///jndi/rmi://JDL:8686/jmxrmi] for domain management purposes.
    Domain listens on at least following ports for connections:
    [8080 8181 4848 3700 3820 3920 8686 ].
    Domain does not support application server clusters and other standalone instances.
    Here is the server.log file, in case it helps to shed some light on the issue:
    29-Feb-2008 19:32:25 com.sun.enterprise.admin.servermgmt.launch.ASLauncher buildCommand
    INFO:
    C:/Sun/SDK/jdk\bin\java
    -Dcom.sun.aas.instanceRoot=C:/Sun/SDK/domains/domain1
    -Dcom.sun.aas.ClassPathPrefix=
    -Dcom.sun.aas.ClassPathSuffix=
    -Dcom.sun.aas.ServerClassPath=
    -Dcom.sun.aas.classloader.appserverChainJars.ee=
    -Dcom.sun.aas.classloader.appserverChainJars=admin-cli.jar,admin-cli-ee.jar,j2ee-svc.jar
    -Dcom.sun.aas.classloader.excludesList=admin-cli.jar,appserv-upgrade.jar,sun-appserv-ant.jar
    -Dcom.sun.aas.classloader.optionalOverrideableChain.ee=
    -Dcom.sun.aas.classloader.optionalOverrideableChain=webservices-rt.jar,webservices-tools.jar
    -Dcom.sun.aas.classloader.serverClassPath.ee=Does not exist/lib/hadbjdbc4.jar,C:/Sun/SDK/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,Does not exist/lib/dbstate.jar,Does not exist/lib/hadbm.jar,Does not exist/lib/hadbmgt.jar,C:/Sun/SDK/lib/SUNWmfwk/lib/mfwk_instrum_tk.jar
    -Dcom.sun.aas.classloader.serverClassPath=C:/Sun/SDK/lib/install/applications/jmsra/imqjmsra.jar,C:/Sun/SDK/imq/lib/jaxm-api.jar,C:/Sun/SDK/imq/lib/fscontext.jar,C:/Sun/SDK/imq/lib/imqbroker.jar,C:/Sun/SDK/imq/lib/imqjmx.jar,C:/Sun/SDK/lib/ant/lib/ant.jar,C:/Sun/SDK/lib/SUNWjdmk/5.1/lib/jdmkrt.jar
    -Dcom.sun.aas.classloader.sharedChainJars.ee=appserv-se.jar,appserv-ee.jar,jesmf-plugin.jar,Does not exist/lib/dbstate.jar,Does not exist/lib/hadbjdbc4.jar,jgroups-all.jar,C:/Sun/SDK/lib/SUNWmfwk/lib/mfwk_instrum_tk.jar
    -Dcom.sun.aas.classloader.sharedChainJars=javaee.jar,C:/Sun/SDK/jdk/lib/tools.jar,install/applications/jmsra/imqjmsra.jar,com-sun-commons-launcher.jar,com-sun-commons-logging.jar,C:/Sun/SDK/imq/lib/jaxm-api.jar,C:/Sun/SDK/imq/lib/fscontext.jar,C:/Sun/SDK/imq/lib/imqbroker.jar,C:/Sun/SDK/imq/lib/imqjmx.jar,C:/Sun/SDK/imq/lib/imqxm.jar,webservices-rt.jar,webservices-tools.jar,mail.jar,appserv-jstl.jar,jmxremote_optional.jar,C:/Sun/SDK/lib/SUNWjdmk/5.1/lib/jdmkrt.jar,activation.jar,appserv-rt.jar,appserv-admin.jar,appserv-cmp.jar,C:/Sun/SDK/updatecenter/lib/updatecenter.jar,C:/Sun/SDK/jbi/lib/jbi.jar,C:/Sun/SDK/imq/lib/imqjmx.jar,C:/Sun/SDK/lib/ant/lib/ant.jar,dbschema.jar
    -Dcom.sun.aas.configName=server-config
    -Dcom.sun.aas.configRoot=C:/Sun/SDK/config
    -Dcom.sun.aas.defaultLogFile=C:/Sun/SDK/domains/domain1/logs/server.log
    -Dcom.sun.aas.domainName=domain1
    -Dcom.sun.aas.installRoot=C:/Sun/SDK
    -Dcom.sun.aas.instanceName=server
    -Dcom.sun.aas.processLauncher=SE
    -Dcom.sun.aas.promptForIdentity=true
    -Dcom.sun.enterprise.config.config_environment_factory_class=com.sun.enterprise.config.serverbeans.AppserverConfigEnvironmentFactory
    -Dcom.sun.enterprise.overrideablejavaxpackages=javax.help,javax.portlet
    -Dcom.sun.enterprise.taglibs=appserv-jstl.jar,jsf-impl.jar
    -Dcom.sun.enterprise.taglisteners=jsf-impl.jar
    -Dcom.sun.updatecenter.home=C:/Sun/SDK/updatecenter
    -Ddomain.name=domain1
    -Djava.endorsed.dirs=C:/Sun/SDK/lib/endorsed
    -Djava.ext.dirs=C:/Sun/SDK/jdk/lib/ext;C:/Sun/SDK/jdk/jre/lib/ext;C:/Sun/SDK/domains/domain1/lib/ext;C:/Sun/SDK/javadb/lib
    -Djava.library.path=C:\Sun\SDK\lib;C:\Sun\SDK\lib;C:\Sun\SDK\bin;C:\Sun\SDK\bin
    -Djava.security.auth.login.config=C:/Sun/SDK/domains/domain1/config/login.conf
    -Djava.security.policy=C:/Sun/SDK/domains/domain1/config/server.policy
    -Djava.util.logging.manager=com.sun.enterprise.server.logging.ServerLogManager
    -Djavax.management.builder.initial=com.sun.enterprise.admin.server.core.jmx.AppServerMBeanServerBuilder
    -Djavax.net.ssl.keyStore=C:/Sun/SDK/domains/domain1/config/keystore.jks
    -Djavax.net.ssl.trustStore=C:/Sun/SDK/domains/domain1/config/cacerts.jks
    -Djdbc.drivers=org.apache.derby.jdbc.ClientDriver
    -Djmx.invoke.getters=true
    -Dsun.rmi.dgc.client.gcInterval=3600000
    -Dsun.rmi.dgc.server.gcInterval=3600000
    -client
    -XX:+UnlockDiagnosticVMOptions
    -XX:MaxPermSize=192m
    -Xmx512m
    -XX:NewRatio=2
    -XX:+LogVMOutput
    -XX:LogFile=C:/Sun/SDK/domains/domain1/logs/jvm.log
    -cp
    C:/Sun/SDK/lib/jhall.jar;C:\Sun\SDK\lib\appserv-launch.jar
    com.sun.enterprise.server.PELaunch
    start
    [#|2008-02-29T19:32:26.203+0000|INFO|sun-appserver9.1|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;|Starting Sun Java System Application Server 9.1_01 (build b09d-fcs) ...|#]
    [#|2008-02-29T19:32:26.343+0000|INFO|sun-appserver9.1|javax.enterprise.system.core|_ThreadID=11;_ThreadName=pool-1-thread-2;com.sun.enterprise.interceptor.DynamicInterceptor;|MBeanServer started: com.sun.enterprise.interceptor.DynamicInterceptor|#]
    [#|2008-02-29T19:32:26.906+0000|INFO|sun-appserver9.1|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;|CORE5098: AS Socket Service Initialization has been completed.|#]
    [#|2008-02-29T19:32:26.937+0000|INFO|sun-appserver9.1|javax.enterprise.system.core|_ThreadID=10;_ThreadName=main;Java HotSpot(TM) Client VM;1.6.0_04;Sun Microsystems Inc.;|CORE5076: Using [Java HotSpot(TM) Client VM, Version 1.6.0_04] from [Sun Microsystems Inc.]|#]
    [#|2008-02-29T19:32:26.968+0000|INFO|sun-appserver9.1|javax.enterprise.system.core.security|_ThreadID=10;_ThreadName=main;|SEC1002: Security Manager is OFF.|#]
    [#|2008-02-29T19:32:27.562+0000|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=10;_ThreadName=main;|C:/Sun/SDK/domains/domain1/config/.__com_sun_appserv_pid|#]
    [#|2008-02-29T19:32:27.734+0000|INFO|sun-appserver9.1|javax.enterprise.system.tools.admin|_ThreadID=10;_ThreadName=main;|ADM0001:SunoneInterceptor is now enabled|#]
    [#|2008-02-29T19:32:27.828+0000|INFO|sun-appserver9.1|javax.enterprise.system.core.security|_ThreadID=10;_ThreadName=main;com.sun.enterprise.security.provider.PolicyWrapper;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2008-02-29T19:32:28.296+0000|INFO|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;server;|WEB0114: SSO is disabled in virtual server [server]|#]
    [#|2008-02-29T19:32:28.312+0000|INFO|sun-appserver9.1|javax.enterprise.system.container.web|_ThreadID=10;_ThreadName=main;__asadmin;|WEB0114: SSO is disabled in virtual server [__asadmin]|#]
    [#|2008-02-29T19:32:28.765+0000|INFO|sun-appserver9.1|javax.enterprise.system.tools.admin|_ThreadID=10;_ThreadName=main;|ADM1079: Initialization of AMX MBeans started|#]

    I have this same error when I start a freshly-created domain on 9.1_02 with patch 2 (build b06-p02).
    Adding the line to $GLASSFISH_HOME/addons/accessmanager/am-install.properties didn't help.
    Regards,
    Ed
    Starting Domain tahoe, please wait.
    Log redirected to /tahoe/java/tahoe/logs/server.log.
    java.lang.NullPointerException
            at java.util.regex.Matcher.appendReplacement(Matcher.java:699)
            at java.util.regex.Matcher.replaceAll(Matcher.java:813)
            at java.lang.String.replaceAll(String.java:2190)
            at com.sun.am.AMConfigurator.replace(AMConfigurator.java:1574)
            at com.sun.am.AMConfigurator.updateAMConfig(AMConfigurator.java:569)
            at com.sun.am.AMConfigurator.main(AMConfigurator.java:399)
            at com.sun.am.AMConfigurator.configure(AMConfigurator.java:1879)
            at com.sun.enterprise.addons.AddonConfigurationController.invokeApi(AddonConfigurationController.java:270)
            at com.sun.enterprise.addons.AddonConfigurationController.configure(AddonConfigurationController.java:169)
            at com.sun.enterprise.addons.AddonConfigurationController.configureDAS(AddonConfigurationController.java:136)
            at com.sun.enterprise.addons.AddonFacade.configureDAS(AddonFacade.java:110)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:597)
            at com.sun.enterprise.cli.commands.AddonControl.configureDAS(AddonControl.java:100)
            at com.sun.enterprise.cli.commands.StartDomainCommand.configureAddons(StartDomainCommand.java:486)
            at com.sun.enterprise.cli.commands.StartDomainCommand.init(StartDomainCommand.java:455)
            at com.sun.enterprise.cli.commands.StartDomainCommand.startDomain(StartDomainCommand.java:123)
            at com.sun.enterprise.cli.commands.StartDomainCommand.runCommand(StartDomainCommand.java:215)
            at com.sun.enterprise.cli.framework.CLIMain.invokeCommand(CLIMain.java:171)
            at com.sun.enterprise.cli.framework.CLIMain.main(CLIMain.java:79)
    The operation CONFIGURE of addon am-configurator completed with an error. Error message : (java.lang.NullPointerException)
    Redirecting output to /tahoe/java/tahoe/logs/server.log
    Domain tahoe is ready to receive client requests. Additional services are being started in background.
    Domain [tahoe] is running [Sun Java System Application Server 9.1_02 (build b06-p02)] with its configuration and logs at: [/tahoe/java].

Maybe you are looking for