Netlet and Admin Console

Hello,
I am using Secure Remote Access Portal Server 6.0
I did the instalation of Portal Server and Secure Remote Access support on on machine.
In another machine I did the installation of the gateway service.
In a thir machine I did the installation of the Netlet Proxy.
Now I would like to configure and test the Netlet component, but didn't see any reference to it in the Admin Console, under SRAP configuration.
Any ideas,
Sergio

Hey Mike,
The problem I was experiencing was that we had code that was applying an XSL stylesheet against XML we are getting from the database. In order for this stylesheet to work, we had to set code that does the following:
System.setProperty("javax.xml.transform.TransformerFactory", "net.sf.saxon.TransformerFactoryImpl");
Now the first time this code was called, and someone subsequently went to the Weblogic admin console, the screens would be completely unreachable...we were experiencing loads of compilation errors. So I did some digging and tried various other ways to set the TransformerFactory class that wouldn't affect the system as a whole. I found, by sheer luck, the fact that you can set this parameter in the weblogic-application.xml file located in the META-INF directory of your root EAR folder. The very first element in the XML of my weblogic-application.xml file is now:
<wls:xml>
     <wls:parser-factory>
          <wls:transformer-factory>net.sf.saxon.TransformerFactoryImpl</wls:transformer-factory>
     </wls:parser-factory>
</wls:xml>
I now deploy the application with this and my reports are transformed properly and the admin console and command-line WLST scripts are all working uninterrupted as well without any adverse side-effects. Hope that helps. Just an aside, in preparation for the upgrade to WLS10, I restructured our application to a split development directory structure...this structure in combination with Workshop 10 really has made development and deployment much easier.
Best of luck. Cheers!
Rob

Similar Messages

  • Weblogic 10, WLST and Admin Console Classpath Exceptions

    I've been deploying an application to Weblogic 10 (not 10.3 from Oracle, the last version under the BEA logo) for a few weeks now without a problem. We're going to upgrade to 10.3 from Oracle in our development environment and play around with that hopefully today but I can't imagine a dot-version being much different so I figured I'd post the issue anyway.
    Recently, we've been having some issues with the WLST script we use to deploy/redeploy the application. It seems to have just started happening randomly which is odd because the script has not been modified since the get-go. What's happening is the application is compiled, staged and then the WLST script kicks off, log into the application server, looks to see if the app is already deployed, if it is, it redploys it with the latest code and then starts it up and then exits. Every now and again, the next time we go to deploy the application, the WLST fails saying that someone currently has a lock on the admin console. When we log in to the admin console, we see that the user the WLST script uses to log into the admin console currently has a lock on the console and we have the option to take the lock from this user.
    When we click the button to take the lock, we get a HUGE exception in the lefthand panel where the Lock & Edit button typically is that says something along the lines of:
    Error opening ...
    The source of this error is javax.servlet.ServletException: javax.xml.transform.TransformerFactoryConfigurationError: Provider net.sf.saxon.TransformerFactoryImpl not found at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:324) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:528) at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:454) at org.apache.beehive.netui.pageflow.scoping.internal.ScopedRequestDispatcher.include(ScopedRequestDispatcher.java:119) at com.bea.netuix.servlets.controls.content.JspContent.beginRender(JspContent.java:551) at ...
    If I click on the 'Home' button along the upper righthand corner to go back to the home page of the admin console, the error goes away, the 'Activate Changes' button reappears, and then I click that and the Lock & Edit button reappears, then if I go back to my WLST script and run it, it runs successfully. If I log back into the admin console, everything appears normally. This happens intermittently and I'm not sure why it's happening some times and not others. If my WLST script is incorrect I would assume it would behave this way EVERY time.
    I also don't get why the xml transformer factory SOMETIMES throws the exception and sometimes it doesn't. It also happens when I try to click on a JDBC data source. Same exact exception is thrown on the default configuration tab, if I click on any of the other tabs available after clicking on my JDBC data source, those all appear fine, just the initial default Configuration > General tab shows this huge exception. If I stop and restart the application server, these exceptions magically go away...the odd thing is this exception being thrown seems to be referencing libraries made available by my deployed application (the whole net.sf.saxon.TransformerFactoryImpl class is in a library we deploy with our application). These jar files containing these libraries should ONLY be available to the deployed application, I'm not putting these files on the classpath of the application server, so why the application server's admin console have any knowledge of these libraries? Could these be mucking with the overall functionality of the admin server's behavior?
    Here is my WLST script I use the deploy the application. If you see something wrong with it, any feedback would be greatly appreciated. Any thoughts on the whole classpath of my application being used by the Weblogic Admin console would be helpful too.
    WLST Script:
    connect("merlin", "merlin595")
    # check to see if the apb data source exists and if so, make sure it's targeting the AdminServer
    try:
         # Either deploy or redeploy application
         try:
              print 'Checking for the existence of the APB application.'
              cd('/AppDeployments/apbEar')
              print 'The APB application will be redeployed.'
              progress=redeploy('apbEar')
              print 'Status of redeployment: ' + progress.getState()
         except WLSTException:
              print 'The APB application has not yet been deployed to this server, so application will be deployed for the first time now.'
              progress=deploy(appName='apbEar', path='/opt/weblogic/merlinpb/merlinpbEar/apbEar', targets='AdminServer')
              print 'Status of initial deployment: ' + progress.getState()
         # Start application
         try:
              print 'Starting APB application'
              startApplication(appName='apbEar')
         except WLSTException:
              pass
         disconnect()
         print 'End of script, exiting WLST...'
         exit()
    except WLSTException:
         print 'Could not deploy apb. Please log into the admin console and attempt the deployment manually.'
    Oh, one final thing I've noticed when I use this script. The last thing the script says WHEN it actually runs successfully is:
    <Nov 13, 2008 10:57:13 AM EST> <Warning> <JNDI> <BEA-050001> <WLContext.close() was called in a different thread than the one in which it was created.>
    Why does it say that? What does that mean? Is my script mot structure correctly above?
    Any help is greatly appreciated. Thanks again!
    Rob

    Hey Mike,
    The problem I was experiencing was that we had code that was applying an XSL stylesheet against XML we are getting from the database. In order for this stylesheet to work, we had to set code that does the following:
    System.setProperty("javax.xml.transform.TransformerFactory", "net.sf.saxon.TransformerFactoryImpl");
    Now the first time this code was called, and someone subsequently went to the Weblogic admin console, the screens would be completely unreachable...we were experiencing loads of compilation errors. So I did some digging and tried various other ways to set the TransformerFactory class that wouldn't affect the system as a whole. I found, by sheer luck, the fact that you can set this parameter in the weblogic-application.xml file located in the META-INF directory of your root EAR folder. The very first element in the XML of my weblogic-application.xml file is now:
    <wls:xml>
         <wls:parser-factory>
              <wls:transformer-factory>net.sf.saxon.TransformerFactoryImpl</wls:transformer-factory>
         </wls:parser-factory>
    </wls:xml>
    I now deploy the application with this and my reports are transformed properly and the admin console and command-line WLST scripts are all working uninterrupted as well without any adverse side-effects. Hope that helps. Just an aside, in preparation for the upgrade to WLS10, I restructured our application to a split development directory structure...this structure in combination with Workshop 10 really has made development and deployment much easier.
    Best of luck. Cheers!
    Rob

  • Development environment and admin console

    Hi,
    I'm setting up a development environment for about 20 developers working
    on 5 or 6 projects.
    Is it possible to give each particular project leader access to the
    console without system privileges.
    It should be allow to start and stop one, and only one, particular WL6.1
    server for its project purpose.
    The other option is to provide each group a domain with its own admin
    server but in that case we (sysadmin) loose control of the servers.
    Is there any typical configuration for that purpose ?
    Thanks
    Philippe Peeters

    A quick [url http://www.google.com/search?hl=en&q=%5Bsunm%5D%5BSQLServer+JDBC+Driver%5DThis+driver+is+locked+for+use+with+embedded+applications.&btnG=Google+Search&meta=]google on your error message shows the issue is with your JDBC driver.
    A workaround is specified [url http://blogs.sun.com/roller/page/david?entry=creator_sun_java_system_application] here 

  • Admin Console - Admin user requires valid username and password

    I am running FMIS4.5 on CentOS5.5
    FMIS is running and I can connect via Flash Media Encoder.
    Web displays and admin console :1111 gives xml output, however
    When using the user & password in my xml files to login (testing with ping), I get the "Admin user requires valid username and password" error.
    conf/fms.ini:
    # fms.ini contains substitution variables for Flash Media Server          #
    # configuration files. Lines beginning with '#' are considered comments.  #
    # A substitution variable is in the form <name>=<value>. Everything up to #
    # the first '=' is considered the name of the substitution variable, and  #
    # everything after the first '=' is considered the substitution value. If #
    # you want a substitution variable to have leading or trailing spaces,    #
    # enclose the value around double quotes. For example, foo=" bar "        #
    # This section contains configurable parameters in Server.xml #
    # Username for server admin
    # For example:
    #    SERVER.ADMIN_USERNAME = foo
    SERVER.ADMIN_USERNAME = Admin
    SERVER.ADMIN_PASSWORD = str34m1ng
    # IP address and port Flash Media Admin Server should listen on
    # For example:
    #    SERVER.ADMINSERVER_HOSTPORT = :1111
    SERVER.ADMINSERVER_HOSTPORT = :1111
    # User id in which to run the process (Linux Only)
    # For example:
    #    SERVER.PROCESS_UID = 500
    SERVER.PROCESS_UID = 500
    # Group id in which to run the process (Linux Only)
    # For example:
    #    SERVER.PROCESS_GID = 500
    SERVER.PROCESS_GID = 500
    # License key for Flash Media Server
    # For example:
    #    SERVER.LICENSEINFO = XXXX-XXXX-XXXX-XXXX-XXXX-XXXX
    SERVER.LICENSEINFO = #SORRY YOU DON'T GET TO SEE THIS#
    # LIVE_DIR denotes the full path of sample "Live" application's
    # folder for storing any live stream recorded by server.
    # For example:
    #    LIVE_DIR = <FMS_Installation_Dir>\applications\live
    LIVE_DIR = /opt/adobe/fms/applications/live
    # VOD_COMMON_DIR denotes the full path of sample "VOD" application's
    # folder for storing onDemand and Progressive Download .flv/.mp3 files.
    # File stored in this folder can be streamed and are also PD-able.
    # Note : If you are using the default installation of Apache as a webserver,
    # and if you modify VOD_COMMON_DIR, please change the document root
    # accordingly in httpd.conf.
    # For example:
    #    VOD_COMMON_DIR = <FMS_Installation_Dir>\webroot\vod
    VOD_COMMON_DIR = /opt/adobe/fms/webroot/vod
    # VOD_DIR denotes the full path of sample "VOD" application's
    # folder for storing onDemand only .flv/.mp3 files. Files stored in
    # this folder are not PD-able
    # For example:
    #    VOD_DIR = <FMS_Installation_Dir>\applications\vod\media
    VOD_DIR = /opt/adobe/fms/applications/vod/media
    # The maximum size of the FLV cache, in megabytes.
    # The default is 500MB.
    SERVER.FLVCACHE_MAXSIZE=500
    # Whether to start and stop the included HTTP server along
    # with FMS.
    SERVER.HTTPD_ENABLED = true
    # This section contains configurable parameters in Adaptor.xml #
    # Application directory for the virtual host
    # For example:
    #    VHOST.APPSDIR = C:\myapps
    VHOST.APPSDIR = /opt/adobe/fms/applications
    VHOST.ALLOW = all
    # This section contains configurable parameters in Application.xml #
    # List of semi-colon delimited paths in which to search for script to load
    # For example:
    #    APP.JS_SCRIPTLIBPATH = C:\scripts;C:\Program Files\Foo\scripts
    APP.JS_SCRIPTLIBPATH = /opt/adobe/fms/scriptlib
    # This section contains configurable parameters in Logger.xml #
    LOGGER.LOGDIR =
    # This section contains configurable parameters in Users.xml #
    # Enable or disable using HTTP requests to execute admin commands.
    # Set to "true" to enable, otherwise it will be disabled.  The
    # actual commands permitted for server admin and virtual host admin
    # users can be set in Users.xml.
    USERS.HTTPCOMMAND_ALLOW = true
    Users.xml:
    <Root>
        <UserList>
            <!-- This tag defines an administrator for the server. -->
            <User name="${SERVER.ADMIN_USERNAME}">
                <!-- Salted Password Hash for this vhost administrator. -->
                <Password encrypt="false">${SERVER.ADMIN_PASSWORD}</Password>
                <!-- This admin can only connect to the server from the specified -->
                <!-- hosts. This is specified as a comma delimited list of        -->
                <!-- hostnames or domain names, and/or (full or partial) IP       -->
                <!-- addresses. For example,                                      -->
                <!-- "foo.yourcompany.com, macromedia.com, 10.60.1.133, 10.60"    -->
                <Allow>All</Allow>
                <!-- This admin cannot connect to the server from any of the      -->
                <!-- specified hosts. This is specified as a comma delimited list -->
                <!-- of hostnames or domain names, and/or (full or partial) IP    -->
                <!-- addresses. For example,                                      -->
                <!-- "foo.yourcompany.com, macromedia.com, 10.60.1.133, 10.60"    -->
                <Deny></Deny>
                <!-- Specifies the order in which to evaluate the <Allow> and     -->
                <!-- <Deny> tags. This can be "Allow,Deny" or "Deny,Allow". The   -->
                <!-- default is "Deny,Allow" which means that access is allowed   -->
                <!-- unless specified in <Deny> and not specified in <Allow>.     -->
                <Order>Allow,Deny</Order>
            </User>
            <User name="janedoe">
                    <Password encrypt="false">S4mpl3P4ss</Password>
                    <Allow></Allow>
                    <Deny></Deny>
                    <Order>Allow,Deny</Order>
            </User>
        </UserList>
        <AdminServer>
            <HTTPCommands>
                <!-- Enable or disable using HTTP requests to execute admin commands.     -->
                <!-- Set to "true" to enable, otherwise it will be disabled.  The           -->
                <!-- actual commands permitted for server admin and virtual host admin    -->
                <!-- users can be set in the Allow and Deny elements.                                   $
                <Enable>${USERS.HTTPCOMMAND_ALLOW}</Enable>
                <!-- List of server admin commands that can be accessed via HTTP.         -->
                <!-- Add multiple commands separated by commas.  "All" indicates          -->
                <!-- every command (it's not recommended to allow all commands).          -->
                <!-- Seperate multiple commands with commas.                              -->
                <Allow>ping</Allow>
                <!-- List of server admin commands denied access via HTTP.                -->
                <!-- Add multiple commands seperated by commas.  "All" indicates          -->
                <!-- every command.                                                       -->
                <Deny>All</Deny>
                <!-- Processing order for deny and allow command lists.  "Deny,Allow"     -->
                <!-- means the command will be allowed if the command is in the allow     -->
                <!-- list or not in the deny list.   "Allow,Deny" means the command       -->
                <!-- will be allowed if it is in the allow list and not in the            -->
                <!-- deny list.                                                           -->
                <Order>Deny,Allow</Order>
            </HTTPCommands>
        </AdminServer>
    </Root>
    Output on :1111/admin/ping?auser=Admin&apswd=str34m1ng :
    <result>
      <level>error</level>
         <code>NetConnection.Connect.Rejected</code>
         <description>Admin user requires valid username and password.</description>
         <timestamp>Thu 17 May 2012 11:33:43 AM EDT</timestamp>
    </result>
    Connections do not work from both localhost and external connections and the fms_adminConsole.htm (.swf) fails as well.
    Any assistance is appreciated!

    Hi,
    FMIS 4.5 does not accept plain text password. Encrypt=false is no longer supported. See here for more information : http://help.adobe.com/en_US/flashmediaserver/configadmin/WS5b3ccc516d4fbf351e63e3d119f2926 bcf-7fed.html#WS5b3ccc516d4fbf351e63e3d119f2926bcf-7e91
    The value for SERVER.ADMIN_PASSWORD needs to be the encrypted string for your password. That should solve your problem.
    Hope this helps.
    Thanks,
    Apurva

  • Users cannot connect BPC Excel, Admin Console except bpc_sysadmin

    Hi experts!
    We use MultiServer BPC 7.5 MS sp06 Installation
    Servers
    1. bpcweb - WEB (IIS)  on Windows 2008 R2 x 64 (in AD)
    2. bpcapp - BPC App Server on Windows 2008 R2 x 64 (in AD)
    3. bpcdb - DB/OLAP MS SQL Server 2008 R2 on Windows 2008 R2 x 64 (in AD)
    Installation on AD users and OK, Diagnostic on Server Manager - OK
    We use AD authentification and Local too.
    I have added 2 users to Admin TEAM with full rights on AppShell and on our AppSet: one user from AD another from Local AppServer
    Users can connect into BPC Web, can select AppSets and Applications.
    But when I try connect to BPC Excel or Admin Console - after I enter user login, password and domain - appear message
    "Couldn't authetificate user id or password. Back and check, that entered valid credentials" (translation from Russian).
    And when I try connect by bpc_sysadmin everything OK.
    Thank you for help
    Best regards
    Iaroslav

    Hi!
    All versions of OS, SQL, IIS, BPC and other are  the same versions on all Environments, same AD.
    Our Environmets:
    DEV - Single Server - all connections - OK
    TEST - MultiServer (1: BPC App/WEb; 2: DB/OLAP) - all connections - OK
    PROD - MultiServer (1: BPC App;2: Web;  2: DB/OLAP) - connect to Excel and Admin Console - Error
    Best regards
    Iaroslav

  • Admin Console consolidation

    I have a client that has 4 physical machines. Using Windows BEA 9.2 MP3...They installed an application in domain X (managed server ms1) Each box is
    exactly the same. (except different machine IPs). Each machine has a Node Manager and Admin Console configured on port 5555/7001 respectively.
    This requires a separate console session to manage each app.(4 authentications, etc...)
    Q: Is it possible (without re-install) to elevate 1 of the admin consoles to have all the other node managers connect to it and then turn down the local admin consoles
    running on each server. In essence re-configure the plumbing. (giving me a single pane of glass to manage each app)
    The app is not cluster aware and the customer has chosen to use external load balancers to distribute the load to the (4) servers. (i.e ip addresses)
    So this request is just to make an admins life easier. I am being told that an un-install and re-install is required.
    Cross my fingers.
    TIA
    DJ

    So you are saying that I need to
    1.) create 3 NEW servers entries in one of the physical servers domains.(they are the same named name (i.e domain X) )the paths I will check, but i suspect they are the same.
    Physical server ABC: domain X = ABC.X
    server MS1 (existing)
    add MS2, MS3, MS4
    2.) pack each servers domains managed servers (MS1) from Physical server
    Physical server 123: domain X = 123.X
    pack MS1
    Physical server 456: domain X = 456.X
    pack MS1
    Physical server 789: domain X = 789.X
    pack MS1
    3.) unpack servers???. (will the fact that the domain ABC.X already has a MS1 instance be a problem)?
    how do you associate the unpacked MS1 entries from old physical servers to their NEW MS(X) placeholder entries on ABC.X?
    Key ( Physical Server.Domain(ManagedServer) )
    Aren't the existing managed servers :
    123.X(MS1) and
    456.X(MS1) and
    789.X(MS1)
    Already enrolled in the node managers on each of the physical servers(123, 456 and 789)???
    Any help would be appreciated..
    TIA
    -DJ

  • Directory Server Admin Console "disappears" after logging in

    Hi,
    We are just starting to work with Directory Server 6.1, on RedHat 4. I access the server on which Directory Server is running via X. However, when I try to access the Admin Console and after logging in, the main Admin Console panel appears very briefly, and then everything, including the xterm window that I started with, disappears.
    I've tried restarting both the slapd (slapd-xxx) and admin console (start-admin), but the same thing keeps happening.
    This is the first time that I'm working with 6.1, but do I need to login/start the Admin Console a different way than before when using X?
    Thanks,
    Jim

    Hi,
    No one has responded to this thread, but for the record, one of my colleagues got it working today, and I hope that this info might help someone else someday...
    I had neglected (sorry) to mention that we're in an environment where we can't run directly as root, but instead have to use sudo.
    What I was doing earlier was ssh'ing to the server, then doing a "sudo bash", doing the "export DISPLAY=...", then running the startconsole to startup the Sun DS console.
    So, today, I was fooling around with this with one of the other guys, and instead of doing the "sudo bash", he just did the "export DISPLAY=...", and then just "sudo ./startconsole", and, voila, we got the console GUI and were able to login without it disappearing.
    I had not tried that previously, because I had thought that the "export DISPLAY=..." wouldn't have survived the sudo (I'm not that familiar with it), but I guess it does.
    I'm not 100% sure what the problem was with doing the "sudo bash", but I believe it had something to do with "who we were logged-in as".
    Maybe someone here who's more familiar with sudo, etc. and Cygwin X might be able to provide an explanation.
    Jim

  • WLS 7.0 - Admin Console - how to list what users belonging to a given group?

    Hi folks,
    Just installed wls7.0, start the example server and admin console, created a user
    and added into Operator group. But from the Operator Group pane, I cannot find a
    way to show all the users in a group. Any ideas?
    TIA
    chuck

    You can use JMX to list users
    http://weblogic-wonders.com/weblogic/2010/11/10/list-users-and-groups-in-weblogic-using-jmx/

  • How do I create admin console users with full access to configuration and the directory in every instance?

    I want to be able to create directory user ID for the iPlanet administrators. They should be able to access the admin console and all the instances created. They should be able to configure each instance and directory. I was able tocreate Admin Server Administrators but they were only able to modify the directory(tab) and not the configurations(tab). Any help would be greatly appreciated!
    Thanks.
    Keith

    Hi Keith,
    In o=netscaperoot, edit the static group called cn=Configuration Administrators, ou=Groups, ou=TopologyManagement, o=NetscapeRoot - this group contains the admins peer to your config admin. Since the console is quirky and doesn't let you add in users not in netscaperoot, just click advanced and put in the full dn of whoever you want in by hand, e.g., uid=scarter, ou=people, dc=mydomain,dc=com as a static member. then rebind to the console with the full dn and passwd, and away you go :)
    james

  • Error while starting OIM admin and design console

    Hi all,
    I have OIM 9.10.2 deployed on Jboss 4.2.3GA with oracle 10g as database.Installation was successfull and after that we tried some simple use cases on that.
    This time after starting Jboss it gave an error "Network Adapter cannot be connected".
    It came because RMI port was in use and because of the change in IP Address,we changed both of them.
    changed RMI port in jboss-service.xml
    changed IP address to Host name in xlconfig.xml,jboss.profile.xml and xell-ds.xml files
    But now when we run server and try to access the consoles we get the following errors -
    Admin console error - OIM admin page opens stating the error "System error was encountered"
    Design console error - Oracle Identity Manager Design console could not allow you log in
    Diagnostic dashboard error - Invalid username or password ( i m sure of the id and pwd )
    Jboss logs -
    2010-10-22 16:30:10,986 WARN [XELLERATE.DATABASE] Trying to get the connection count : 3
    2010-10-22 16:30:10,986 WARN [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Throwable while attempting to get a new connection: null
    org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (java.sql.SQLRecoverableException: Io exception: The Network Adapter could not establish the connection)
    2010-10-22 16:30:10,986 WARN [XELLERATE.DATABASE] Trying to get the connection count : 4
    2010-10-22 16:30:10,986 ERROR [XELLERATE.DATABASE] Class/Method: DirectDB/getConnection encounter some problems: Error while retrieving database connection.Please check for the follwoing
    Database srever is running.
    Datasource configuration settings are correct.
    2010-10-22 16:30:10,986 ERROR [XELLERATE.DATABASE] Class/Method: tcServerProperties/initServerProperties encounter some problems: {1}
    java.lang.NullPointerException
         at com.thortech.xl.dataaccess.util.tcServerProperties.<init>(Unknown Source)
    16:30:10,986 ERROR [XIMDD] Class/Method: UserVerificationServlet/loginUser encounter some problems: RuntimeException; nested exception is:
    java.lang.NullPointerException
    Thor.API.Exceptions.tcAPIException: RuntimeException; nested exception is:
    java.lang.NullPointerException
    at Thor.API.tcUtilityFactory.getPropertyValue(Unknown Source)
    at Thor.API.tcUtilityFactory.<init>(Unknown Source)
    at com.thortech.xl.systemverification.webapp.UserVerificationServlet.log
    inUser(Unknown Source)
    Please suggest what might be the change that affected our OIM instance and how can we solve this problem.
    Thanks,
    Deepika

    Hi Sunny,
    I checked both the files you mentioned both of them are correct.Changed the RMI port in jboss-service.xml to its original value.Still I am facing the same error :(
    2010-10-27 10:40:56,821 WARN [XELLERATE.DATABASE] Trying to get the connection count : 1
    2010-10-27 10:40:56,837 WARN [org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Throwable while attempting to get a new connection: null
    org.jboss.resource.JBossResourceException: Could not create connection; - nested throwable: (java.sql.SQLRecoverableException: Io exception: The Network Adapter could not establish the connection)
         at org.jboss.resource.adapter.jdbc.xa.XAManagedConnectionFactory.createManagedConnection(XAManagedConnectionFactory.java:155)
         at org.jboss.resource.connectionmanager.InternalManagedConnectionPool.createConnectionEventListener(InternalManagedConnectionPool.java:619)
         at org.jboss.resource.connectionmanager.InternalManagedConnectionPool.getConnection(InternalManagedConnectionPool.java:264)
         at org.jboss.resource.connectionmanager.JBossManagedConnectionPool$BasePool.getConnection(JBossManagedConnectionPool.java:613)
         at org.jboss.resource.connectionmanager.BaseConnectionManager2.getManagedConnection(BaseConnectionManager2.java:347)
         at org.jboss.resource.connectionmanager.TxConnectionManager.getManagedConnection(TxConnectionManager.java:330)
         at org.jboss.resource.connectionmanager.BaseConnectionManager2.allocateConnection(BaseConnectionManager2.java:402)
         at org.jboss.resource.connectionmanager.BaseConnectionManager2$ConnectionManagerProxy.allocateConnection(BaseConnectionManager2.java:849)
    2010-10-27 10:40:56,837 ERROR [XELLERATE.DATABASE] Class/Method: DirectDB/getConnection encounter some problems: Error while retrieving database connection.Please check for the follwoing
    Database srever is running.
    Datasource configuration settings are correct.
    2010-10-27 10:40:56,852 ERROR [XELLERATE.WEBAPP] Class/Method: tcWebAppSettingsAction/execute encounter some problems: RuntimeException; nested exception is:
         java.lang.NullPointerException
    Thor.API.Exceptions.tcAPIException: RuntimeException; nested exception is:
         java.lang.NullPointerException
         at Thor.API.tcUtilityFactory.getPropertyValue(Unknown Source)
    -Deepika

  • 1 Admin console to manage OSB and SOA installed on different servers

    Dear All,
    We are planning to have OSB installed on Host 1 and SOA server installed on Host 2. But there will be one Admin console to manage these 2 for the ease of maintenance. When i was trying to install this configuration I had few issues. Hope SOA experts can help me with the configuration.
    1)
    As SOA and OSB are installed on 2 different host both the servers must have weblogic installed as pre requisite. So I will have
    on host 1:
    http://host1:7001/console
    http://host1:7001/sbconsole
    On host 2:
    http://host2:7001/console (this is redundant)
    http://host2:8001/soa-infra
    2) Is it possible to inactivate http://host2:7001/console ? and add SOA server running on host2 to http://host1:7001/console. In the sense, I would like to control the SOA server from host 1.
    Issue No :2
    When I create a domain on Host 1 I just get the options for OSB and not SOA. It is obvious as SOA is not installed on Host1. but if that is the case, Is it possible to add SOA server running on host2 to host1. Is it going to be a cluster?
    Is this configuration seems realistic? Has anyone implemented. Any pointers please.
    Reagrds,
    Aani

    Hi Aani,
    Please go through the blog series -
    http://blogs.oracle.com/reynolds/2010/09/installing_an_11g_soa_cluster.html
    You may also refer EDG -
    http://download.oracle.com/docs/cd/E17904_01/core.1111/e12036/toc.htm
    Regards,
    Anuj
    Edited by: Anuj Dwivedi on Feb 23, 2011 9:14 PM

  • Weblogic 9.x admin console slowest and worst application ever

    Does anyone else think the Weblogic 9.x admin console really sucks? Is there any place I can make improvement requests?
    Things in Weblogic 8.x that took just a couple of minutes to accomplish routinely take a half-hour or more in the Weblogic 9.x console. I have recently discovered WLST and I have created a couple of scripts to script things I do quite often but quite honestly I don't have time to script everything I need to do in the console, especially since BEA should provide a usable admin console IMHO.
    My specific complaints (not all inclusive as there is no way I could think of every annoyance I run into on a day to day basis):
    1) It is crazy slow. We use the ssh node manager so every time it loads a page I guess it polls every managed instance via ssh and page loads take a couple of minutes. For example, getting the next page of Deployments takes around 3 minutes.
    2) The deployment pagination is very annoying. Why is this limited to 10 deployments per page? This should just show me a list of all my deployments in alphabetical order. The pagination offers nothing. At the very least pagination length should be configurable. The pagination combined with problem 1 takes me many minutes to get to the app I need to do something with.
    3) If BEA insists on pagination on the deployments list at least give me a link so I can immediately jump to a specific page! The link should have the letter range of the deployments on that page (like A-C, D-V, W-Z, or something like that).
    4) After I stop an app it jumps back to page 1 instead of showing the page of deployments containing the app I just stopped. OMG!!! GRRR! Now I have to hit Next several times to get back to my app with 3 minutes between each page load. YOU HAVE GOT TO BE KIDDING ME!!!!
    5) Why is there not a Redeploy button like there was in Weblogic 8.x? If I need to restart an application I have to go through the update procedure and not upload a new version. This is annoying, just give me a damn redeploy button.
    6) After clicking the Lock button I have to wait 2-3 minutes for it to give me the Lock. Why does it take this long?
    7) The whole locking mechanism is stupid. Why do I have to obtain a lock to make any changes? I never had a problem in Weblogic 8.x with walking on someone else. I can see how this could possibly be beneficial to some organizations (I suppose) so at the very least make obtaining the lock optional via configuration.
    I am sure there are many more but I can't think of all of them now. I will start writing it down every time the console annoys the hell out of me. IMHO the Weblogic 9.x console broke the perfectly good Weblogic 8.x console.
    It wouldn't be so annoying if it wasn't so MADDENINGLY SLOW.

    We have upgraded our WebLogic from 8.1 to 9.2 along with our PeopleSoft 9.0 upgrade and boy-oh-boy, has the WebLogicAdmin console slowed down.
    It used to open in about 10 seconds.
    Now it opens in roughly 1 minute and 30 seconds.
    The heap size settings are the same as they were in the WebLogic 8.1
    Even restarting the WebLogicAdmin and associated PeopleSoft PIA's is the worst I have ever seen.
    Windows 2003 SP3
    Here's the startup command line;
    -Xms256m -Xmx256m -XX:MaxPermSize=128m -classpath ";D:/psft/hr849\webserv\hdev\lib\ps_patch.jar;D:/psft/hr849\webserv\hdev\applications\peoplesoft\PSIGW\WEB-INF\lib\mail.jar;D:/psft/hr849\webserv\hdev\lib\portlet-api-1.0.jar;D:/psft/hr849\webserv\hdev\lib\pluto-1.0.1.jar;D:/psft/hr849\webserv\hdev\applications\peoplesoft\PORTAL\WEB-INF\lib\saaj.jar;D:/psft/hr849\webserv\hdev\applications\peoplesoft\PORTAL\WEB-INF\lib\xml-apis.jar;D:/psft/hr849\webserv\hdev\applications\peoplesoft\PORTAL\WEB-INF\lib\xercesImpl.jar;;d:\bea\patch_weblogic923\profiles\default\sys_manifest_classpath\weblogic_patch.jar;d:\bea\jdk150_12\lib\tools.jar;d:\bea\WEBLOG~1\server\lib\weblogic_sp.jar;d:\bea\WEBLOG~1\server\lib\weblogic.jar" -Djava.util.logging.config.file=D:\psft\hr849\webserv\hdev\applications\peoplesoft\logging.properties -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Dweblogic.Name=WebLogicAdmin -Dweblogic.management.username=operator -Dweblogic.ProductionModeEnabled=true -Dps_vault=D:\psft\hr849\webserv\hdev\psvault -Djava.security.policy="d:\bea\WEBLOG~1\server\lib\weblogic.policy" -Dssl.debug=false -Dps_home=D:/psft/hr849 weblogic.Server
    Regards,
    Tom

  • Regarding Background color change in OIM admin and user console

    Hi all,
    I tried to change the Background color and Text modification in Login Page,Register Page of OIM Adminstration and user console.
    As per the Oracle® Fusion Middleware Developer's Guide for Oracle Identity Manager 11g guide i did Style Sheet Modifications.I created the skin the trinidad-skins.xml and myskin.css in admin.war and iam-consoles0faces.war.Even after it not reflecting on oim admin and user console.
    After modifiacetions i cleared purgecache.sh as well as tmp [$DOMAIN_ROOT/servers/oim_server1/tmp/] directory.
    I think i have done modifications in wrong way.Can anyone please suggest me to do the correct modifications as soon possible.
    Regards,
    Karthick.

    Hi Kevin,
    Thanks,
    I am not able recall any major change.
    All i can recall is changing some files for customization like changing some text through filexlWebApp.war and i also i have not i am still to run patch utility. I guess this should not be the reason.
    Which configuration file i should look for this ?
    Ritu

  • Images change position and dimension after client edits on admin console!

    Hi, 
    1. After my client uploaded his images onto the site using the admin console they changed position slightly and did not fit exactually into the image frames i had set when i first made the site.
    2. When i opened the site on muse and merged changes the images positions and dimensions changed even more than what was being diplayed on the live site? (E.g I originally had two columns of square thumbnails for some slideshows and now i have a single column of rectangle images)
    3. I republished to see what would happen it now displays the way it was diplaying in Muse. The site is: www.jacobbuckland.co.uk
    My understanding was that when i create an image frame or gallery in muse that any image uploaded via the admin console should fill that frame no matter what the size or dimensions of that image?
    Any help gratfully received. Thanks

    Our technical team managed to find the immediate cause for the problem, and a solution.
    According to them there was a corruption on a speciffic OLAP file. By deleting it, they allowed it to be recreated on the next application processing. The file in question was found in \Microsoft SQL Server\MSSQL.2\OLAP\Data\UGF.0.db\<APPLICATION>.38.cub.xml
    Where <APPLICATION> is the name of the problematic cube.
    After that everything is working.

  • Sun AS 9.1 UR2 Admin console doesn't ask for login name and password

    I have an instance of Sun AS 9.1 installed on Linux, that has broken admin console. The console never asks for login and password, just lets the user to do anything.
    I didn't set it up and I've never seen that. There's Policy Agent installed because of some apps and maybe this is causing the problem. But I don't know. I just need to secure the console (anyhow).
    Any ideas what could happen? Any hints where to look, what libs could be overwritten by bad version or something?

    This is probably the only thread that relates to the problem i am facing.
    I have encountered the same issue whereby the user ID shows up empty.
    Accessing the console without having the need to enter credentials is causing me some serious security issues.
    Martin777, have you found any ways to secure your console?
    Thanks.

Maybe you are looking for

  • Facing Problem in SLD(getting 500 INTERNAL SERVER ERROR IN PORTAL)

    Dear All, we had ESS application just few days back it went to Go live , very frequently we are facing the issue Regards JCO 's , we are getting "500 Internal Server Error" in production Portal After getting the error ,the " Maintained JCO's" and "Cr

  • Song List Out of Whack

    I know there are several posts here that express the same issue, but I cannot find any definitive resolution, so I will ask the question again. iPhone 3Gs, iOS 4.2.1, in the iPod application, the list of songs and artists does not line up correctly w

  • Oracle apps custom form

    Hi Friends I am creating one custom form in oracle apps 11.5.10.2. It has 2 buttons .If I click first (FIND) button it will select the record from custom table and it will appear according to my query.Then I will select the check box and I will click

  • BODS Management console : Adapter configuration Error

    Hi all, I have created an custom adapter.But while configuring it in BODS management console it's giving error. Error : Could not find element '' in file 'C:\ProgramData\SAP BusinessObjects\Data Services/adapters/install/Custom_adapter.xml'. Error wh

  • Report -master detail-APEX

    I have below requirement I need to call a master detail form on report.. I need to built a report on sql --With Colums-Document Number and DEPOT. When i click on document number i should be able to open a master detail form which is built on sql quer