Handling a Weblogic TimedOutException

Hi all,
I am working on a very large Swing application that uses mostly stateless session EJB's with Weblogic 8.1. My problem is this: there are some places in the app where queries are timing out. I know that the relevant property is trans-timeout-seconds in weblogic-ejb-jar.xml and that is not the issue. The users are requesting however that when a query times out, they see an info message telling them to narrow their search parameters instead of an error with "10 pages of Java gibberish". I have a class that is a query processor class that handles most of the query calls to the session EJB's. How can I determine in that class that the timeout exception occurred and respond accordingly? The base cause of my exception looks like this when I get a timeout:
java.sql.SQLException: The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after ...
How can I catch the unadorned TimedOutException with a someObject.getReason() call or some such? The only way that I can think of to do it is to parse the string to find the "...TimedOutException...", but there's got to be a better way.
Thanks in advance.

I have exactly this same issue,and as of yet, have not been able to find a distinguishing characteristic of a WebLogic weblogic.transaction.internal.TimedOutException when it is wrapped by an SQLException.
To restate the issue, when a transaction times out in a DAO, a generic SQLException is thrown from the JDBC layer, and within it is a message stating:
<code>The transaction is no longer active - status: 'Marked rollback. [Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 63 seconds </code>
Although we'd like to handle these time out exceptions differently, they look exactly like normal SQLExceptions!  There doesn't seem to be any way to programatically tell which is which.
SQLState = null
Error Code = 0
Next Exception = null
Instance = java.sql.SQLException                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Authentication handling in WebLogic 8.1 SP 4

    I have a servlet, MyServlet, running in WebLogic 8.1 SP 4 that creates another server in the init() method that listens for incoming connections on a different port than WebLogic's 7001; let's say it listens to port 5000. This server is similar to the O'Reilly's DaemonHttpServlet (http://www.stanford.edu/group/coursework/docsTech/oreilly/com.oreilly.servlet.DaemonHttpServlet.html); I'll refer to this server as HttpServer.
    I created a security realm for MyServlet for Basic authentication. So if a client wants to go to MyServlet it has to authenticate itself using Basic authentication. This all works fine! However, at this point HttpServer that listens port 5000 is not part of the mentioned realm according to WebLogic. For MyServlet WebLogic takes care of the whole authentication process, that is, the initial request to MyServlet and the following response containing the Basic challenge are not going through MyServlet but are handled by WebLogic.
    As the client (user agent) does not know that HttpServer is part of the same realm (as I would like it to be), it will not send its credentials that it used to logon to MyServlet to authenticate itself to HttpServer, because the URL is different at the port part of the URL.
    I would like to mimic that HttpServer IS part of the same realm MyServlet is in, but I don't want to hardcode the response saying it needs to be a certain specific realm. How can I query User, Group, Realm information stored in WebLogic? Are there MBeans I should look at? Can I use JAAS to hook into WebLogic somehow? Can I use JAAS to handle the Base64-encoded username-password to the Basic challenge send in the HTTP request?

    b b schrieb:
    Hi:
    I am confused about something, I am running weblogic 8.1 SP4 on the [sun4u sparc SUNW,Sun-Fire-480R] box and trying to deploy a normal webapp. It took like 2 minutes to finish deployment (nothing else was running on the box). however if I deploy the same webapp onto my laptop, it is really quick (<30secs).
    I thought it might be the problem with that particular un box. So I tried to deploy the same webapp onto another sun box - [sun4u sparc SUNW,Sun-Fire-V240]. The results were the same (over 2minutes).
    Can anybody shed some lights on why this is happening?
    Thank you very much!Have You checked the XML-switches ?
    (web.xml/weblogic.xml/keepgenerate/precompile)
    How ist the "Staging Mode" (nostage) of Your application ?
    Regards Ruedi :-)

  • Is there inbuild Handler in weblogic using which i can get the MessageContext object

    HI,
    I need MessageContext object in my application but i dont want to use the Handler,As
    there is AxisEngine in axis soap engine,is there any similar implementation in
    weblogic.
    AxisEngine.getCurrentMessageContext() we can get the MessageContext what about
    in weblogic..any body any idea???
    Regards,
    Akhil Nagpal

    HI,
    yeah i had to make use of Handler to get the MessageContext object and play with
    that.
    Thanks & Regards
    Akhil Nagpal
    "manoj cheenath" <[email protected]> wrote:
    You can get to MessageContext from a handler. Check out an example of
    handler
    to see how you can get Message out of MessageContext.
    -manoj
    "Akhil Nagpal" <[email protected]> wrote in message
    news:[email protected]..
    HI manoj,
    Thanks for your reply.otherwise i thought that i wont get any morehelp
    on this
    forum :-) ...
    anyway its good that we will have such thing in next version,duringthe
    development
    i feel that more functioanlity should be in build in appserver. Likeone
    more
    thing i could not find out is how we can get the "message" object inweblogic
    like we can in axis using its MessageContext class's static method.if it
    is there
    can you please let me knwo about that.
    The other problem i had to make use of handler and my appl is workingas of
    now :-)
    Regards
    Akhil Nagpal
    "manoj cheenath" <[email protected]> wrote:
    You can not do this in WLS 7.0. The next major release (WLS 8.1) will
    fix
    this problem.
    -manoj
    "Akhil Nagpal" <[email protected]> wrote in message
    news:[email protected]..
    HI,
    I need MessageContext object in my application but i dont want
    to
    use
    the Handler,As
    there is AxisEngine in axis soap engine,is there any similarimplementation in
    weblogic.
    AxisEngine.getCurrentMessageContext() we can get the MessageContextwhat
    about
    in weblogic..any body any idea???
    Regards,
    Akhil Nagpal

  • Soap handler configuration weblogic v9.2

    All the doc. on soap handlers for weblogic version 9x i could find describes using annotations. This works fine when you have the source but not in the case where i only have a "black box" web service in a WAR file.
    I want to configure a soap handler in xml config. files but i can only find this kind of configuration doc. for version 8.x. Can anyone point me to doc on how th do this in version 9.x?
    Ideally i think it should be possible to configure a handler in webservices.xml. Soap handlers should be configurable for any deployed web service i think? I also tried to use the admin. console but as far as i can see this only gives administration control over already configured handlers - not the functionality to add handlers.
    Regards,
    Ole Bech Mogensen, 7N

    Manish,
    Thanks for the reply. Yes I did. I keep getting the following error:
    XML Parsing Error: no element found
    Location: http://192.168.198.129:7001/Sample_App/Sample_Config.xml
    Line Number 1, Column 1:
    I even copied one of the actual WebLogic OOTB (out of the box) config files (i.e. WebLogic Platform9.2.3.0_chmods.xml) and I still get the same error from WebLogic when directly trying to invoke the Sample_Config.xml file. The actual contents of the Sample_Config.xml are as follows:
    <?xml version="1.0" encoding="UTF-8" ?>
    <Boot_test>
    <URLContextPath>Sample_App</URLContextPath>
    <ConfigFilePath>C:\Temp\Another_Config_File.xml</ConfigFilePath>
    <ConfigPassword>admin</ConfigPassword>
    </Boot_test>
    So, I am still unresolved in getting the three(3) parms loaded via a config file in BEA WebLogic v9.2. Any other suggestions/thoughts on getting this loaded via a config file?
    Thanks.
    /workingtohard

  • Different session handling of weblogic on SP2 and SP3

              I have set up 2 weblogic servers which are using the same cookie name, and having
              the same webapp name, on the same physical machine thus
              http://127.0.0.1:7220/test (Server A).
              http://127.0.0.1:9999/test (Server B).
              Using Weblogic 6.1 Service Pack 2
              1. Access Server A
              - Server A generate a new Session ID "123456...."
              2. Redirect Link from Server A to Server B
              3. Access Server B
              - Server B generate a new Session ID "987654..."
              4. Redirect Link from Server B to Server A
              5. Access Server A
              - Reused the same session ID "123456...."
              Using Weblogic 6.1 Service Pack 3
              1. Access Server A
              - Server A generate a new Session ID "123456...."
              2. Redirect Link from Server A to Server B
              3. Access Server B
              - Server B generate a new Session ID "987654..."
              4. Redirect Link from Server B to Server A
              5. Access Server A
              - Regenerate a new session ID "ABCDEFGHI...."
              Why weblogic server handle session differently in SP2 and SP3??
              

    I think this was a bug in SP3. You could raise a support ([email protected]) call to
              confirm.
              Rick Bongpipat wrote:
              > "Rick Bongpipat" <[email protected]> wrote:
              > >
              > >I have set up 2 weblogic servers which are using the same cookie name,
              > >and having
              > >the same webapp name, on the same physical machine thus
              > >
              > >http://127.0.0.1:7220/test (Server A).
              > >http://127.0.0.1:9999/test (Server B).
              > >
              > >Using Weblogic 6.1 Service Pack 2
              > >
              > >1. Access Server A
              > >- Server A generate a new Session ID "123456...."
              > >2. Redirect Link from Server A to Server B
              > >3. Access Server B
              > >- Server B generate a new Session ID "987654..."
              > >4. Redirect Link from Server B to Server A
              > >5. Access Server A
              > >- Reused the same session ID "123456...."
              > >
              > >Using Weblogic 6.1 Service Pack 3
              > >
              > >1. Access Server A
              > >- Server A generate a new Session ID "123456...."
              > >2. Redirect Link from Server A to Server B
              > >3. Access Server B
              > >- Server B generate a new Session ID "987654..."
              > >4. Redirect Link from Server B to Server A
              > >5. Access Server A
              > >- Regenerate a new session ID "ABCDEFGHI...."
              > >
              > >Why weblogic server handle session differently in SP2 and SP3??
              >
              > In relation to previous question.
              >
              > I have 3 qns about session creation behaviour:
              >
              > 1. When a web container receives a session cookie (eg. JSESSIONID) whose session
              > id does not exists in this
              > server, should the server create a new session ?
              >
              > 2. If a session is to be created because there is a session cookie, then should
              > the new session id
              > be the one sent or should it be a newly generated session id ?
              >
              > 3. If a new session id is to be generated, then should the new session id be used
              > to overwrite that in the cookie
              > and send it back to the client ?
              Rajesh Mirchandani
              Developer Relations Engineer
              BEA Support
              

  • How to make mod_wl_20 handle multiple weblogic sources

    Hi community,
    I'm configuring an Oracle HTTP Server as a proxy of multiple weblogic instances.
    For the case of the AdminServer, I modify httpd.conf as follow:
    <IfModule mod_weblogic.c>
    WebLogicHost myhost.example.com
    WebLogicPort 7001
    </IfModule>
    <Location /console>
    SetHandler weblogic-handler
    </Location>
    Now that I have configured 2 managed weblogic servers using port 8001 and 8002. How should I do so that both 2 managed weblogic servers are also proxied by the Oracle HTTP Server?
    Thanks,
    David

    Hello
    I suppose your managed nodes are located on address and port
    10.a.b.d:7001 and 10.a.b.e:7001
    and your admin is : 10.a.b.c:8001
    you can try this :
    <IfModule mod_weblogic.c>
    WebLogicCluster 10.a.b.d:7001,10.a.b.e:7001
    </IfModule>
    <Location /your_app>
    SetHandler weblogic-handler
    </Location>
    <Location /console>
    SetHandler weblogic-handler
    WebLogicCluster 10.a.b.c:8001
    </Location>
    It should work for you , it works for me . . . .

  • Clob Handling In WebLogic 6.0 with SP1

    In Weblogic V5.10sp8
    I have a block of code that looks up a very large clob and appends some
    text to the end of it and
    writes the new larger clob back to the same row same column.
    part of the code looks like this.
    char[] buffer = this.getBuffer():
    java.sql.ResultSet rs = this.getResultSet();
    oracle.sql.CLOB myClob =
    (oracle.sql.CLOB)rs.getClob("file_content");
    myClob.putChars( myClob.length() + 1, buffer);
    We are moving to Weblogic V6.0sp1.
    The getClob method on a ResultSet now returns a
    weblogic.jdbc.oci.Clob which does not have a putChars method.
    The best it has is getCharacterOutputStream() method
    that returns a java.io.Writer which only allows me to write to the
    beginning of the clob.
    Question:
    In Weblogic V6 how can I get a reference to a huge Clob in the database,
    and just write
    a little be of text to the end of it, without moving the whole thing
    over the wire, twice.
    Thanks.
    John Xu.

    this is a slight correction
    and a second plea for help
    see comments in line and below
    "John Xu" <[email protected]> wrote in message
    news:[email protected]...
    In Weblogic V5.10sp8
    I have a block of code that looks up a very large clob and appends some
    text to the end of it and
    writes the new larger clob back to the same row same column.
    part of the code looks like this.
    char[] buffer = this.getBuffer():
    java.sql.ResultSet rs = this.getResultSet();
    oracle.sql.CLOB myClob =
    (oracle.sql.CLOB)rs.getClob("file_content");
    myClob.putChars( myClob.length() + 1, buffer);
    We are moving to Weblogic V6.0sp1.
    The getClob method on a ResultSet now returns a
    weblogic.jdbc.oci.Clob which does not have a putChars method.no, getClob does not return a
    weblogic.jdbc.oci.Clob
    it returns a
    weblogic.jdbc.rmi.SerialClob
    which is also unable to write to the end of the Clob
    The best it has is getCharacterOutputStream() method
    that returns a java.io.Writer which only allows me to write to the
    beginning of the clob.
    Question:
    In Weblogic V6 how can I get a reference to a huge Clob in the database,
    and just write
    a little be of text to the end of it, without moving the whole thing
    over the wire, twice.
    Thanks.
    John Xu.
    here is the full method that used to work in Weblogic 5.1 sp8
    in Weblogic 6.0 sp1 it now throws a ClassCastException saying
    you can't cast weblogic.jdbc.rmi.SerialClob to a oracle.sql.CLOB.
    I need access to the putChars method on the oracle.sql.CLOB
    to write to the end of the Clob
    PLEASE HELP
    public void push(int tbfId, char[] buffer) throws RemoteException {
    String methodName = "TicketReaderImpl.push";
    String sqlFetch = "SELECT file_content FROM ticketbatchfilecontent
    WHERE tbf_id = ? FOR UPDATE";
    String sqlUpdate = "UPDATE ticketbatchfilecontent SET file_content =
    ?, update_ts=SYSDATE WHERE tbf_id = ?";
    Connection conn = null;
    PreparedStatement psFetch = null;
    PreparedStatement psUpdate = null;
    ResultSet rs = null;
    OnexTransaction ot = null;
    try {
    ot = OnexTransaction.getInstance(methodName);
    ot.begin();
    conn = PersistenceManager.getDSConnection();
    psFetch = conn.prepareStatement(sqlFetch);
    psFetch.setInt(1,tbfId);
    rs = psFetch.executeQuery();
    if (rs.next()) {
    oracle.sql.CLOB myClob =
    (oracle.sql.CLOB)rs.getClob("file_content");
    myClob.putChars( myClob.length() + 1, buffer);
    psUpdate = conn.prepareStatement(sqlUpdate);
    psUpdate.setClob(1,myClob);
    psUpdate.setInt(2,tbfId);
    psUpdate.executeUpdate();
    ot.commit();
    } else {
    ot.commit();
    throw new DatabaseException(methodName+": couldn't find
    tbfId ="+tbfId);
    } catch ( Exception e ) {
    throw new OnexSystemException(methodName,e);
    } finally {
    DBUtil.close(methodName,rs);
    DBUtil.close(methodName,psFetch);
    DBUtil.close(methodName,psUpdate);
    DBUtil.close(methodName,conn);
    OnexTransaction.close(ot);

  • Session Handling in Weblogic Portal 9.2

    Hi All,
    I have posted a strange problem that i have been facing. It was that my previously visited page was getting rendered when i used to perform some action on my current page.
    I attributed this to some caching that might be happening. I want to know if every page that we visit in an application gets cached ? May be due to caching, the earlier page is getting displayed.
    Are these portlets or pages getting cached in the session? Any workaround by which i can clear the cache of all the previously visited pages?

    By default, the session timeout seconds is 3600, ie, an hour.
              In case you have specified weblogic-application.xml or weblogic.xml, you can add a descriptor "session-descriptor" to set session-timeout seconds.
              Here is a sample to set the timeout to 2 hours.
              file: weblogic.xml
              <?xml version="1.0" encoding="ISO-8859-1"?>
              <weblogic-web-app xmlns="http://www.bea.com/ns/weblogic/90">
              <session-descriptor>
              <timeout-secs>7200</timeout-secs>
              </session-descriptor>
              </weblogic-web-app>
              For more detail about session descriptor, please refer to
              http://e-docs.bea.com/wls/docs92/webapp/weblogic_xml.html#wp1071982
              Thanks,
              -Fred.

  • Error handling in weblogic portal 7.0

    Could any one suggest how to handle the errors in portal. Currently I am forwarding
    all the errors in webflow to /framework/error/error.jsp using portal proxy node.
    But what happen if my portal page have 3 portlets and all the portlets got some
    excetion then all the portlets load the error.jsp page. I just want to display
    single friendly message to the user.
    Is there any way to do this. Is there any way so that I define a error portal
    page and forward to this page when there is exception.
    Ajay

    Thank you seenu
    Now I have started working on project ...
    it has too complicated directory structures and too much
    technologies mixed up ...
    I have to do an enhancement module ... in portal 7.0
    is there any mailing lists for discussion of portals
    so that i can subscribe to it and get help when necessary...

  • How Connections are handled on WebLogic JMS server

    I have a cluster with two managed servers, S1 and S2, running on 8.1SP3. I configured connection factory for both servers: CF1 for S1, CF2 for S2.
              A client, C1, lookups CF1 and create a connection thru it. At this point, I thouht C1 is "connected" to S1. But when I shutdown S2, in about 50% of occasions, C1 will receive lost server exception.
              What's going on here?
              Thanks,
              JD

    Good morning,
              A JMS client routes all operations through a single JMS connection host, where the connection host may consists of any one of the servers that host the designated connection factory. Once established, a JMS client's connection host doesn't change. In your case, 50% of clients load-balance to connection host S2 when they establish a connection.
              In most applications, best practice is to target CFs only at those server(s) that thost the client's destination.
              For more information, see the "JMS Performance Guide" white-paper on dev2dev.bea.com.
              Tom, BEA

  • Error in starting weblogic commerce server on Win2000

    I downloaded the evaluation release of Weblogic Commerce 3.1 and th licence,
    and installed it on Windows 2000 Professional,
    I have a Weblogic Application Server 5.1 installed
    the server did not start and gave an error, please help us as to what the
    problem is and how to get it running.
    =========== Error Message ===============
    JAVA_CLASSPATH IS
    C:\jdk\lib\tools.jar;C:\weblogic\lib\weblogic510sp6boot.jar;C:
    \weblogic\classes\boot
    WEBLOGIC_CLASSPATH IS
    C:\weblogic\lib\weblogic510sp6.jar;C:\weblogic\lib\WebLogi
    c_RDBMS.jar;C:\weblogic\license;C:\weblogic\classes;C:\weblogic\lib\weblogic
    aux.
    jar;C:\weblogic\lib\weblogic-tags-510.jar;C:\WebLogicCommerceServer3.1\licen
    se;C
    :\WebLogicCommerceServer3.1\classes;C:\WebLogicCommerceServer3.1\lib\rules.j
    ar;C
    :\WebLogicCommerceServer3.1\lib\jrulesserviceprovider.jar;C:\WebLogicCommerc
    eSer
    ver3.1\deploy\bmp\classes;C:\WebLogicCommerceServer3.1\eval\win32\Taxware\cl
    asse
    s;C:\weblogic\eval\cloudscape\lib\cloudscape.jar;C:\weblogic\eval\cloudscape
    \lib
    \tools.jar;C:\weblogic\eval\cloudscape\lib\client.jar
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <WebLogicServer> Read global
    properties C:\WebLogicCommerceServer3.1\weblogic.propertie
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <WebLogicServer> No per-server
    properties files found
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Logging> FileLogger initialized.
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <WebLogicServer> ************
    WebLogic Server (5.1.0 04/03/2000 17:13:23 #66825) 'serve
    :\WebLogicCommerceServer3.1
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <WebLogicServer> ************ (c)
    1995, 1996, 1997, 1998 WebLogic, Inc., (c) 1999 BEA S
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.swapIntervalSecs', current value: '10'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.ConnectionConsumer', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.enforceClientCert', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.login.readTimeoutMillis', current value: '5000'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.propertiesFile', current value: 'C:\WebLogicCo
    .properties'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.bindAddr', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.servlet.reloadCheckSecs', current value: '-1'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.authRealmName', current value: 'WebLogic Server
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.SSLHandler.enable', current value: 'true'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.startupFailureIsFatal', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.http.keepAliveSecs', current value: '60'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.servlet.classpath', current value: ''
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.tunneling.clientPingSecs', current value: '45'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.defaultWebApp', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.persistentStoreDir', current value: 'se
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.perServerPropertiesFile', current value: 'null
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.queue', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.invalidationIntervalSecs', current valu
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.persistence', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.realm.cache.user.enable', current value: 'tr
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.rmi.dgc.callSystemGC', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.enableEvents', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.maxTransactedDurableSubscribers', current value:
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.weight', current value: '100'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.connectionPoolArgs', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.disableGuest', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.persistentStorePool', current value: ''
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.URLAclFile', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.percentSocketReaders', current value: '33'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.zac.enable', current value: 'true'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jdbc.TXDataSource', current value: '[weblogic.jdbc.TX
    .jts.commercePool=commercePool ]'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.DNSName', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.ejb.deploy', current value: 'C:/WebLogicCommerceServe
    C:/WebLogicCommerceServer3.1/lib/axiom.jar,C:/WebLogicCommerceServer3.1/lib/
    ebusiness.jar,C:/WebLogicCommerceServer3.1/lib/adv
    erceServer3.1/lib/bridge.jar,C:/WebLogicCommerceServer3.1/lib/document.jar,C
    :/WebLogicCommerceServer3.1/lib/p13nadvisor.jar,C:
    .1/lib/portal.jar,C:/WebLogicCommerceServer3.1/lib/ruleeditorbeans.jar,C:/We
    bLogicCommerceServer3.1/lib/rulesservice.jar,C:/We
    lib/servicemgr.jar'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.workspace.showUserKeysOnly', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.enable', current value: 'true'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.allow', current value: '[weblogic.allow.reserve.weblo
    commercePool=everyone
    weblogic.allow.execute.weblogic.servlet.Certificate=system
    weblogic.allow.execute.weblogic.servlet.Admin
    low.execute.weblogic.servlet.AdminLicense=system
    weblogic.allow.execute.weblogic.servlet.AdminConnections=system
    weblogic.allo
    et.classes=everyone
    weblogic.allow.execute.weblogic.servlet.AdminClients=system
    weblogic.allow.execute.weblogic.servlet.AdminV
    llow.execute.weblogic.servlet.AdminMain=system
    weblogic.allow.execute.weblogic.servlet.AdminThreads=system
    weblogic.allow.rese
    tionPool.docPool=everyone weblogic.allow.read.weblogic.workspace=everyone
    weblogic.allow.execute.weblogic.servlet.AdminEvents=
    ite.weblogic.workspace=everyone
    weblogic.allow.execute.weblogic.servlet.AdminJDBC=system
    weblogic.allow.execute.weblogic.servl
    ow.execute.weblogic.servlet.AdminProps=system
    weblogic.allow.execute.weblogic.servlet.ConsoleHelp=everyone ]'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.listenPort', current value: '7501'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.allow', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.servlet.reloadOnModify', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.io.fileSystem', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.startupArgs', current value: '[weblogic.system
    p=TraceFlags=E ]'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jdbc.enableLogFile', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.cookie.domain', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.realm.debug', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.clustering.enable', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.enable', current value: 'true'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.shutdownArgs', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.rmi.startupClass', current value: '[weblogic.rmi.star
    blogic.rmi.internal.RegistryImpl ]'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.keepAlive.enable', current value: 'true'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.jdbc.connTimeoutSecs', current value: '
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.name', current value: 'server'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.helpPageURL', current value: 'http://www.weblo
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.key.server', current value: 'C:\WebLogicComm
    okey.pem'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.rmi.startupArgs', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.topicSessionPool', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.logFileBufferKBytes', current value: '8'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.home', current value: 'C:\weblogic'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.documentRoot', current value: 'public_html'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.servlet.reloadOnModifyRecursive', current value
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.errorPage', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.certificate.authority3', current value: 'nul
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.administrativePort', current value: '0'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.certificate.authority2', current value: 'nul
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.startupClass', current value: '[weblogic.syste
    tup=com.beasys.commerce.foundation.plugin.weblogic.TraceStartup
    weblogic.system.startupClass.KeyBootstrap=com.beasys.commerce.
    otstrap
    weblogic.system.startupClass.serviceManager=com.beasys.commerce.servicemanag
    er.CommerceServiceManagerStartup ]'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.nonPrivGroup', current value: 'nobody'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.cluster.multicastTTL', current value: '1'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.home', current value: 'C:\WebLogicCommerceServ
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.https.keepAliveSecs', current value: '120'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jndi.transportableObjectFactories', current value: ''
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.certificateCacheSize', current value: '3'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.tunneling.clientTimeoutSecs', current value: '4
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jdbc.DataSource', current value: '[weblogic.jdbc.Data
    l.docPool=docPool ]'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.nonPrivUser', current value: 'nobody'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.zac.publishRoot', current value: 'exports'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.clientRootCA', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.cluster.defaultLoadAlgorithm', current value: 'round-
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.enable', current value: 'true'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.administrator.phone', current value: '(None)'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jdbc.connectionPool', current value: '[weblogic.jdbc.
    rl=jdbc:beasys:docmgmt:com.beasys.commerce.axiom.document.ref.RefDocumentPro
    vider,driver=com.beasys.commerce.axiom.document.jd
    =0,initialCapacity=10,maxCapacity=20,capacityIncrement=1,allowShrinking=true
    ,shrinkPeriodMins=15,refreshMinutes=5,props=jdbc.u
    mmercePool;jdbc.isPooled=true;weblogic.t3.waitForConnection=true;weblogic.t3
    .waitSecondsForConnection=999999999999;weblogic.jt
    onSecs=999999999999;docBase=C:/WebLogicCommerceServer3.1/dmsBase;schemaXML=C
    :/WebLogicCommerceServer3.1/dmsBase/doc-schema.xml
    nPool.commercePool=url=jdbc:cloudscape:Commerce;create=true;upgrade=true,dri
    ver=COM.cloudscape.core.JDBCDriver,loginDelaySecs=
    Capacity=20,capacityIncrement=1,allowShrinking=true,shrinkPeriodMins=15,test
    ConnsOnReserve=true,testTable=WLCS_IS_ALIVE,refres
    ne;password=none;server=none;weblogic.t3.waitForConnection=true;weblogic.t3.
    waitSecondsForConnection=999999999999,weblogic.jts
    nSecs=999999999999,verbose=false ]'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.debug', current value: 'false'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jdbc.logFileName', current value: 'C:\WebLogicCommerc
    og'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.cluster.dnsName', current value: 'null'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.requireAuthentication', current value: 'true'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.cluster.multicastAddress', current value: ''
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.defaultSecureProtocol', current value: 't3s'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.realm.cache.auth.enable', current value: 'tr
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.executeThreadCount', current value: '15'
    Fri Dec 01 11:04:39 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.cookie.comment', current value: 'Weblog
    ng Cookie'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.tableNamePrefix', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.connectionPool', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.shutdownClass', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.defaultServlet', current value: 'file'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.cluster.name', current value: 'mycluster'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.defaultProtocol', current value: 't3'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.postTimeoutSecs', current value: '30'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.group', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.realm.cache.caseSensitive', current value: '
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.certificate.server', current value: 'C:\WebL
    rver\democert.pem'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.mimeType', current value: '[weblogic.httpd.mime
    .wmlscriptc=wmlsc weblogic.httpd.mimeType.application/x-java-vm=class
    weblogic.httpd.mimeType.image/gif=gif weblogic.httpd.mim
    stream=exe weblogic.httpd.mimeType.text/html=html,htm
    weblogic.httpd.mimeType.application/pdf=pdf weblogic.httpd.mimeType.appl
    ar weblogic.httpd.mimeType.image/jpeg=jpeg,jpg
    weblogic.httpd.mimeType.image/vnd.wap.wbmp=wbmp
    weblogic.httpd.mimeType.applica
    tpd.mimeType.text/vnd.wap.wmlscript=wmls
    weblogic.httpd.mimeType.text/vnd.wap.wml=wml
    weblogic.httpd.mimeType.application/vnd.
    ttpd.mimeType.application/x-java-serialized-object=ser ]'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.webApp', current value: '[weblogic.httpd.webApp
    rceServer3.1/server/webapps/examples/portal/portal.war
    weblogic.httpd.webApp.tools=C:/WebLogicCommerceServer3.1/server/webapps
    c.httpd.webApp.wlcs=C:/WebLogicCommerceServer3.1/server/webapps/wlcs/ ]'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.minPasswordLen', current value: '8'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.connectionFactoryArgs', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.persistentStoreType', current value: 'f
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.cacheEntries', current value: '1024'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.certificate.authority', current value: 'C:\W
    \server\ca.pem'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.resource.MailSession', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.cookie.maxAgeSecs', current value: '-1'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.login.readTimeoutMillisSSL', current value: '25000'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.cluster.enable', current value: 'false'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.SSL.ciphersuites', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.indexFiles', current value: 'index.html,index.h
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.password', current value: '[weblogic.password.system=
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.enableLogFile', current value: 'false'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.enableReverseDNSLookups', current value: 'fals
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.indexDirectories', current value: 'false'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.maxLogFileSize', current value: '1024'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.logFile', current value: 'C:\WebLogicCommerceS
    .log'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.timeoutSecs', current value: '3600'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.logFileFormat', current value: 'common'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.perClusterPropertiesFile', current value: 'nul
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.key.export.lifespan', current value: '500'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.CORBA.connectionPool', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'java.system.property', current value: '[java.system.property.c
    /WebLogicCommerceServer3.1/db/data ]'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.logFileName', current value: 'C:\WebLogicCommer
    s.log'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.defaultMimeType', current value: 'text/plain'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.debug.httpd.servlet', current value: 'false'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.connectionFactoryName', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.SSLListenPort', current value: '7502'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.URLResource', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.cookie.name', current value: 'WebLogicS
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.quiescent', current value: 'false'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.register', current value: '[weblogic.httpd.regi
    sys.commerce.foundation.flow.FlowManager
    weblogic.httpd.register.AdminProps=admin.AdminProps
    weblogic.httpd.register.classes=w
    hServlet weblogic.httpd.register.AdminEvents=admin.AdminEvents
    weblogic.httpd.register.AdminMain=admin.AdminMain weblogic.http
    gic.servlet.ServerSideIncludeServlet
    weblogic.httpd.register.servletimages=weblogic.servlet.internal.InternalImag
    eServlet webl
    oleHelp=weblogic.servlet.ClasspathServlet
    weblogic.httpd.register.AdminJDBC=admin.AdminJDBC
    weblogic.httpd.register.ShowDocSer
    .content.ShowDocServlet
    weblogic.httpd.register.*.jsp=weblogic.servlet.JSPServlet
    weblogic.httpd.register.AdminCaptureRootCA=a
    weblogic.httpd.register.AdminRealm=admin.AdminRealm
    weblogic.httpd.register.AdminLicense=admin.AdminLicense weblogic.httpd.reg
    certificate weblogic.httpd.register.AdminConnections=admin.AdminConnections
    weblogic.httpd.register.AdminClients=admin.AdminCl
    ister.file=weblogic.servlet.FileServlet
    weblogic.httpd.register.AdminVersion=admin.AdminVersion
    weblogic.httpd.register.authen
    .ClientAuthenticationServlet
    weblogic.httpd.register.AdminThreads=admin.AdminThreads ]'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.clientRootCA4', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.clientRootCA3', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.clientRootCA2', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.cookies.enable', current value: 'true'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.servlet.extensionCaseSensitive', current value:
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.realm.cache.group.enable', current value: 't
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.nativeIO.enable', current value: 'true'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.rmi.enableServerSideStubs', current value: 'false'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.cookie.path', current value: '/'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.session.URLRewriting.enable', current value: 't
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.enableSetUID', current value: 'false'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.realm.cache.acl.enable', current value: 'tru
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.topic', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.administrator.name', current value: 'WebLogic Adminis
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.jms.queueSessionPool', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.ssl.enable', current value: 'true'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.administrator.location', current value: '(None)'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.enableSetGID', current value: 'false'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.initArgs', current value: '[weblogic.httpd.init
    Filename=/weblogic/admin/help/NoContent.html
    weblogic.httpd.initArgs.*.jsp=pageCheckSeconds=0,packagePrefix=jsp,compileCo
    mmand
    gDir=C:/WebLogicCommerceServer3.1/server/classfiles,verbose=false,keepgenera
    ted=false weblogic.httpd.initArgs.file=defaultFile
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.administrator.email', current value: 'root'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.enableConsole', current value: 'true'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.security.realm.cache.perm.enable', current value: 'tr
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.system.user', current value: 'system'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <Config> Property name:
    'weblogic.httpd.charsets', current value: 'null'
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> awt.toolkit =
    sun.awt.windows.WToolkit
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> cloudscape.system.home
    = C:/WebLogicCommerceServer3.1/db/data
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> commerce.properties =
    C:\WebLogicCommerceServer3.1\weblogiccommerce.prop
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> file.encoding = Cp1252
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> file.encoding.pkg =
    sun.io
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> file.separator = \
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.awt.fonts =
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.awt.graphicsenv =
    sun.awt.Win32GraphicsEnvironment
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.awt.printerjob =
    sun.awt.windows.WPrinterJob
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.class.path =
    C:\jdk\lib\tools.jar;C:\weblogic\lib\weblogic510sp6boo
    s\boot
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.class.version =
    46.0
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.compiler =
    symcjit
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.ext.dirs =
    C:\jdk\jre\lib\ext
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.home = C:\jdk\jre
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.io.tmpdir =
    C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.library.path =
    C:\jdk\bin;.;C:\WINNT\System32;C:\WINNT;C:\WINNT\sys
    System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program
    Files\Microsoft Visual Studio\Common\MSDev98\Bin;
    ft Visual Studio\Common\Tools;C:\Program Files\Microsoft Visual
    Studio\VC98\bin;C:\jdk\bin;C:\weblogic\bin;C:\weblogic\bin;C:\
    1\eval\win32\CyberCash\bin;C:\WebLogicCommerceServer3.1\eval\win32\Taxware\b
    in
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props>
    java.protocol.handler.pkgs = weblogic.utils|weblogic.utils
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.security.manager
    =
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.security.policy =
    C:\weblogic\weblogic.policy
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props>
    java.specification.name = Java Platform API Specification
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props>
    java.specification.vendor = Sun Microsystems Inc.
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props>
    java.specification.version = 1.2
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.vendor = Sun
    Microsystems Inc.
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.vendor.url =
    http://java.sun.com/
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.vendor.url.bug =
    http://java.sun.com/cgi-bin/bugreport.cgi
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.version = 1.2.2
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.vm.info = build
    JDK-1.2.2-001, native threads, symcjit
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.vm.name = Classic
    VM
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props>
    java.vm.specification.name = Java Virtual Machine Specification
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props>
    java.vm.specification.vendor = Sun Microsystems Inc.
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props>
    java.vm.specification.version = 1.0
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.vm.vendor = Sun
    Microsystems Inc.
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> java.vm.version =
    1.2.2
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> line.separator =
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> os.arch = x86
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> os.name = Windows NT
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> os.version = 5.0
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> path.separator = ;
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> pipeline.properties =
    C:\WebLogicCommerceServer3.1\pipeline.properties
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> sun.boot.class.path =
    C:\jdk\jre\lib\rt.jar;C:\jdk\jre\lib\i18n.jar;C:\j
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> sun.boot.library.path
    = C:\jdk\jre\bin
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props>
    sun.io.unicode.encoding = UnicodeLittle
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> user.dir =
    C:\WebLogicCommerceServer3.1
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> user.home =
    C:\Documents and Settings\Administrator
    Fri Dec 01 11:04:40 GMT+05:30 2000:<I> <System Props> user.language = en
    Fri Dec 01 11:04:40 GMT+05:30 2

    Hello Muffy,
    It looks like you do not have WLS 5.1 service pack 6 installed correctly. I
    say this because I do not see the sp6 message at the top of your log and I saw
    this message in your log:
    org.xml.sax.SAXParseException: Element "weblogic-enterprise-bean" allows no
    further input; "transaction-isolation" is not allowed
    Ture Hoefner
    BEA Systems, Inc.
    2590 Pearl St.
    Suite 110
    Boulder, CO 80302
    www.bea.com

  • MC.9 and MCY1 and Exception Handling in (Logistics Inf. Sys)LIS

    Hi,
    I want the 'Valuated Stock Value" greater then or equal to zero (>=) appear in the MC.9 report. I can create 'Exception' in MCY1 but am unable to do so. Once I am in MCY1; I choose 'Requirements' then Key Figure 'Valuated Stock Value' then  'Type of condition' is 'Threshold Val. Anal.' is set to '> 0'. However, the report still displays zero values in MC.9. I don't want to display 'Valuated Stock Value' zero to be displayed on the report. Please help.
    Thanks
    Naved

    Hey Chris,
    I got the point for exception handling in weblogic 9.2. We ae using 9.2. It comes up with the concept of shared page flows which means all my unhandled exceptions are thrown to the shared page flow controller. There based on the type of exception, i can forward the request to appropraite page.
    Thanks anywyas,
    Saurabh

  • Weblogic doesn't start up

    Hi,
    I use weblogic on my MacBook for few months now and I don't know why since this morning weblogic refuses to start up.
    Apparently it fails to connect to this address: fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6
    I noticed this IPv6 address is the one defined as utun0 when I do a ifconfig. I don't know why weblogic uses this interface. As you can see in the log file, weblogic creates defaults channels for each interface (Channel Default[1], Channel Default[2], Channel Default[3] and so on...)
    Is anyone could help me as I am completely stuck at the moment. Please find below the ifconfig result and the weblogic log file. Feel free to ask me anything if you need more information (log file, configuration, etc...)
    Thanks you very much
    ifconfig result:
    lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
      options=3<RXCSUM,TXCSUM>
      inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
      inet 127.0.0.1 netmask 0xff000000
      inet6 ::1 prefixlen 128
    gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    stf0: flags=0<> mtu 1280
    en1: flags=8823<UP,BROADCAST,SMART,SIMPLEX,MULTICAST> mtu 1500
      ether 60:c5:47:97:19:f6
      media: autoselect (<unknown type>)
      status: inactive
    en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
      options=2b<RXCSUM,TXCSUM,VLAN_HWTAGGING,TSO4>
      ether 3c:07:54:24:2c:a6
      inet6 fe80::3e07:54ff:fe24:2ca6%en0 prefixlen 64 scopeid 0x5
      inet 192.168.0.68 netmask 0xffffff00 broadcast 192.168.0.255
      media: autoselect (1000baseT <full-duplex>)
      status: active
    p2p0: flags=8802<BROADCAST,SIMPLEX,MULTICAST> mtu 2304
      ether 02:c5:47:97:19:f6
      media: autoselect
      status: inactive
    fw0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 4078
      lladdr a4:b1:97:ff:fe:53:4a:40
      media: autoselect <full-duplex>
      status: inactive
    vnic0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
      options=3<RXCSUM,TXCSUM>
      ether 00:1c:42:00:00:08
      inet 10.211.55.2 netmask 0xffffff00 broadcast 10.211.55.255
      media: autoselect
      status: active
    vnic1: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
      options=3<RXCSUM,TXCSUM>
      ether 00:1c:42:00:00:09
      inet 10.37.129.2 netmask 0xffffff00 broadcast 10.37.129.255
      media: autoselect
      status: active
    utun0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1380
      inet6 fe80::62c5:47ff:fe97:19f6%utun0 prefixlen 64 scopeid 0xa
      inet6 fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6 prefixlen 64
    Log file:
    ####<16-Jul-2013 15:21:38 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984498875> <BEA-000000> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    ####<16-Jul-2013 15:21:38 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984498967> <BEA-000000> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    ####<16-Jul-2013 15:21:39 o'clock BST> <Info> <WebLogicServer> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984499268> <BEA-000000> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 20.51-b01-457 from Apple Inc.>
    ####<16-Jul-2013 15:21:40 o'clock BST> <Info> <Management> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984500038> <BEA-000000> <Version: WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050 >
    ####<16-Jul-2013 15:21:42 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502100> <BEA-000000> <Server state changed to STARTING>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <WorkManager> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502110> <BEA-000000> <Initializing self-tuning thread pool>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <WebLogicServer> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502179> <BEA-000000> <WebLogic Server "Fiserv-SEM" version:
    WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050  Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Notice> <Log Management> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502245> <BEA-170019> <The server log file /Users/TheEwook/Dev/Tools/weblogic_domain/servers/Fiserv-SEM/logs/Fiserv-SEM.log is opened. All server side log events will be written to this file.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Log Management> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502249> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Diagnostics> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502299> <BEA-320001> <The ServerDebug service initialized successfully.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502358> <BEA-002622> <The protocol "t3" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502358> <BEA-002622> <The protocol "t3s" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502358> <BEA-002622> <The protocol "http" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502358> <BEA-002622> <The protocol "https" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502359> <BEA-002622> <The protocol "iiop" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502360> <BEA-002622> <The protocol "iiops" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502360> <BEA-002622> <The protocol "ldap" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502361> <BEA-002622> <The protocol "ldaps" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502365> <BEA-002622> <The protocol "cluster" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502365> <BEA-002622> <The protocol "clusters" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502370> <BEA-002622> <The protocol "snmp" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502370> <BEA-002622> <The protocol "admin" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502370> <BEA-002624> <The administration protocol is "t3s" and is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <RJVM> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502382> <BEA-000570> <Network Configuration for Channel "Fiserv-SEM"
    Listen Address :7011
    Public Address N/A
    Http Enabled true
    Tunneling Enabled false
    Outbound Enabled false
    Admin Traffic Enabled true>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502574> <BEA-002609> <Channel Service initialized.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502587> <BEA-000415> <System has file descriptor limits of - soft: 10,240, hard: -1>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502588> <BEA-000416> <Using effective file descriptor limit of: 10,240 open sockets/files.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502588> <BEA-000406> <PosixSocketMuxer was built on May 13 2009 15:20:23>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502613> <BEA-000436> <Allocating 4 reader threads.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502614> <BEA-000446> <Native IO Enabled.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <IIOP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502745> <BEA-002014> <IIOP subsystem enabled.>
    ####<16-Jul-2013 15:21:43 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984503713> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<16-Jul-2013 15:21:43 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984503992> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_N3oRW40rtyCl24gxSmEX77bo1x4=>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504262> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504626> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504637> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504769> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server Fiserv-SEM for security realm myrealm.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Notice> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504769> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504992> <BEA-002622> <The protocol "[snmp, https, t3, cluster-broadcast-secure, ldaps, cluster-broadcast, ldap, http, iiop, admin, t3s, iiops]" is now configured.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <XML> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504998> <BEA-130036> <Initializing XMLRegistry.>
    ####<16-Jul-2013 15:21:45 o'clock BST> <Info> <messaging.interception> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984505005> <BEA-400000> <Initializing message interception service>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657137> <BEA-280008> <Opening the persistent file store "_WLS_Fiserv-SEM" for recovery: directory=/Users/TheEwook/Dev/Tools/weblogic_domain/servers/Fiserv-SEM/data/store/default requestedWritePolicy="Direct-Write" fileLockingEnabled=true driver="NIO".>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Warning> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657153> <BEA-280109> <Unable to load the native wlfileio library for the persistent file store "_WLS_Fiserv-SEM". The store will use buffered I/O. The store is still operating in a transactionally safe synchronous mode. See store open log messages for the requested and final write policies.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657186> <BEA-280009> <The persistent file store "_WLS_Fiserv-SEM" (051f9e80-0950-4979-bb41-623f18426caa) has been opened: blockSize=512 actualWritePolicy="Direct-Write(single-handle-buffered)" explicitIOEnforced=false records=11.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657321> <BEA-001135> <Initializing the JDBC service.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657337> <BEA-001137> <Initialization complete.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657337> <BEA-001138> <Resuming the JDBC service.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657337> <BEA-001140> <Resume complete.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Connector> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657376> <BEA-190000> <Initializing J2EE Connector Service......>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Connector> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657379> <BEA-190001> <J2EE Connector Service initialized successfully>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657505> <BEA-040305> <JMS service is initialized and in standby mode.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657539> <BEA-040090> <Deployed 8 default connection factories.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657543> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory2" with its JNDI name "weblogic.jms.XAConnectionFactory2" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "MessageDrivenBeanConnectionFactory" with its JNDI name "weblogic.jms.MessageDrivenBeanConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "DefaultConnectionFactory" with its JNDI name "weblogic.jms.ConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "TopicConnectionFactory" with its JNDI name "javax.jms.TopicConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory" with its JNDI name "weblogic.jms.XAConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory0" with its JNDI name "weblogic.jms.XAConnectionFactory0" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "QueueConnectionFactory" with its JNDI name "javax.jms.QueueConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory1" with its JNDI name "weblogic.jms.XAConnectionFactory1" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657546> <BEA-040306> <JMS service is active now.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <HTTP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657588> <BEA-101128> <Initializing HTTP services.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <HTTP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657612> <BEA-101135> <Fiserv-SEM is the default Web server.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <HTTP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657612> <BEA-101052> <[HttpServer (defaultWebserver) name: Fiserv-SEM] Initialized>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <HTTP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657616> <BEA-101129> <Initializing the Web application container.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657660> <BEA-180046> <INFO: Logging service enabled.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657662> <BEA-180046> <INFO: TC Configuration Helper instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657663> <BEA-180046> <INFO: TC Task Manager instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657665> <BEA-180046> <INFO: TC security service instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657667> <BEA-180046> <INFO: TC Outbound routing service instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657668> <BEA-180046> <INFO: TC Transaction service instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657679> <BEA-220031> <The server does not support reliable SOAP messaging.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657679> <BEA-220027> <Web Service reliable agents are started on the server.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMX> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657848> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://192.168.0.68:7011/jndi/weblogic.management.mbeanservers.runtime .>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Management> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657868> <BEA-141278> <Java entropy configuration is: System property "java.security.egd= file:/dev/./urandom"; JRE's java.security file property "securerandom.source= file:/dev/./urandom"; Blocking Config= false; JDK version= 1.6.0_51; Operating System= Mac OS X.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Management> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657869> <BEA-141280> <Detected NON-BLOCKING java entropy configuration. This setting will provide the best performance on machines with few sources of entropy, but is less secure than a blocking entropy configuration.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Management> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657869> <BEA-141187> <Java system properties are defined as follows:
    awt.nativeDoubleBuffering = true
    awt.toolkit = apple.awt.CToolkit
    file.encoding = MacRoman
    file.encoding.pkg = sun.io
    file.separator = /
    ftp.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
    gopherProxySet = false
    http.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
    java.awt.graphicsenv = apple.awt.CGraphicsEnvironment
    java.awt.printerjob = apple.awt.CPrinterJob
    java.class.path = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/tools.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/weblogic_sp.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/weblogic.jar:/Users/TheEwook/Dev/Tools/weblogic11g/modules/features/weblogic.server.modules_10.3.6.0.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/webservices.jar:/Users/TheEwook/Dev/Tools/weblogic11g/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/Users/TheEwook/Dev/Tools/weblogic11g/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/common/derby/lib/derbyclient.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/xqrl.jar
    java.class.version = 50.0
    java.endorsed.dirs = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed
    java.ext.dirs = /Library/Java/Extensions:/System/Library/Java/Extensions:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/ext
    java.home = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
    java.io.tmpdir = /var/folders/hw/hsfwq09x7lqcp19y_28s214w0000gn/T/
    java.library.path = :/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/native/macosx:.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs = weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.protocol.handler.pkgs = weblogic.net
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.6.0_51-b11-457-11M4509
    java.security.egd = file:/dev/./urandom
    java.security.policy = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/weblogic.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Sun Microsystems Inc.
    java.specification.version = 1.6
    java.vendor = Apple Inc.
    java.vendor.url = http://www.apple.com/
    java.vendor.url.bug = http://bugreport.apple.com/
    java.version = 1.6.0_51
    java.vm.info = mixed mode
    java.vm.name = Java HotSpot(TM) 64-Bit Server VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Sun Microsystems Inc.
    java.vm.specification.version = 1.0
    java.vm.vendor = Apple Inc.
    java.vm.version = 20.51-b01-457
    javax.management.builder.initial = weblogic.management.jmx.mbeanserver.WLSMBeanServerBuilder
    javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory = weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory = weblogic.webservice.core.soap.MessageFactoryImpl
    log4j.configuration = file:/Users/TheEwook/Dev/STPConfig/log4j.properties
    mrj.build = 11M4509
    mrj.version = 1070.1.6.0_51-457
    org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
    org.xml.sax.driver = weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser = weblogic.xml.jaxp.RegistryParser
    os.arch = x86_64
    os.name = Mac OS X
    os.version = 10.7.5
    path.separator = :
    platform.home = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver
    socksNonProxyHosts = local|*.local|169.254/16|*.169.254/16
    sun.arch.data.model = 64
    sun.boot.class.path = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed/javax-xml-bind.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed/javax-xml-ws.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed/jsr250-api.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
    sun.boot.library.path = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries
    sun.cpu.endian = little
    sun.io.unicode.encoding = UnicodeLittle
    sun.java.command = weblogic.Server
    sun.java.launcher = SUN_STANDARD
    sun.jnu.encoding = MacRoman
    sun.management.compiler = HotSpot 64-Bit Tiered Compilers
    sun.os.patch.level = unknown
    user.country = GB
    user.dir = /Users/TheEwook/Dev/Tools/weblogic_domain
    user.home = /Users/TheEwook
    user.language = en
    user.name = TheEwook
    user.timezone = Europe/London
    vde.home = /Users/TheEwook/Dev/Tools/weblogic_domain/servers/Fiserv-SEM/data/ldap
    weblogic.Name = Fiserv-SEM
    weblogic.classloader.preprocessor = weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.home = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server
    weblogic.management.discover = false
    weblogic.management.server = t3://127.0.0.1:7001
    weblogic.security.SSL.trustedCAKeyStore = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/cacerts
    wls.home = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server
    wlw.iterativeDev = false
    wlw.logErrorsToConsole = false
    wlw.testConsole = false
    >
    ####<16-Jul-2013 15:28:06 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <main> <<WLS Kernel>> <> <> <1373984886159> <BEA-000365> <Server state changed to STANDBY>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <main> <<WLS Kernel>> <> <> <1373984886159> <BEA-000365> <Server state changed to STARTING>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <SAFService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886177> <BEA-281003> <SAF Service has been initialized.>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <SAFService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886186> <BEA-281002> <SAF Service has been started.>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <WseeCore> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886190> <BEA-220502> <The Wsee Service is starting>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <Deployer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886206> <BEA-149209> <Resuming.>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886239> <BEA-001177> <Creating data source connection pool named JDBC STP, URL = jdbc:oracle:thin:@192.168.0.15:1521:xe, Properties = user=STP_STORAGE;.>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <Common> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886253> <BEA-000626> <Free resources in pool "JDBC STP" will be tested every "120" seconds.>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887366> <BEA-001516> <Data source connection pool "JDBC STP" connected to Database: "Oracle", Version: "Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production".>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887366> <BEA-001517> <Data source connection pool "JDBC STP" using Driver: "Oracle JDBC driver", Version: "11.2.0.3.0".>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <Common> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887901> <BEA-000628> <Created "10" resources for pool "JDBC STP", out of which "10" are available and "0" are unavailable.>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887903> <BEA-001124> <Created Connection Pool named JDBC STP.>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887916> <BEA-001174> <Creating data source named JDBC STP, JNDI Name = jdbc/STPStoreDataSource.>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887964> <BEA-001512> <Data source JDBC STP has been successfully created.>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Error> <Deployer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963524> <BEA-149205> <Failed to initialize the application 'aconite-stp' due to error weblogic.management.DeploymentException: Exception occured while downloading files.
    weblogic.management.DeploymentException: Exception occured while downloading files
      at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.doDownload(AppDataUpdate.java:43)
      at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.download(DataUpdate.java:56)
      at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareDataUpdate(Data.java:97)
      at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpdate(BasicDeployment.java:686)
      at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForStatic(BasicDeployment.java:729)
      at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:104)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
      at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
      at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.net.ConnectException: Tried all: '1' addresses, but could not connect over HTTP to server: '[fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6]', port: '7001'
      at weblogic.net.http.HttpClient.openServer(HttpClient.java:333)
      at weblogic.net.http.HttpClient.openServer(HttpClient.java:425)
      at weblogic.net.http.HttpClient.New(HttpClient.java:252)
      at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:213)
      at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.getDataAsStream(HttpDataTransferHandler.java:75)
      at weblogic.deploy.service.datatransferhandlers.DataHandlerManager$RemoteDataTransferHandler.getDataAsStream(DataHandlerManager.java:153)
      at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.doDownload(AppDataUpdate.java:39)
      at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.download(DataUpdate.java:56)
      at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareDataUpdate(Data.java:97)
      at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpdate(BasicDeployment.java:686)
      at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForStatic(BasicDeployment.java:729)
      at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:104)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
      at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
      at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963528> <BEA-000256> <Invoking weblogic.transaction.internal.StartupClass.main(null)>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <Diagnostics> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963538> <BEA-320000> <The Diagnostics subsystem is initializing on Server Fiserv-SEM.>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963541> <BEA-280008> <Opening the persistent file store "WLS_DIAGNOSTICS" for recovery: directory=/Users/TheEwook/Dev/Tools/weblogic_domain/servers/Fiserv-SEM/data/store/diagnostics requestedWritePolicy="Disabled" fileLockingEnabled=true driver="NIO".>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963566> <BEA-280009> <The persistent file store "WLS_DIAGNOSTICS" (2e05de73-f3ac-4b6f-9d3e-29414eb88462) has been opened: blockSize=512 actualWritePolicy="Disabled(single-handle-non-direct)" explicitIOEnforced=false records=21.>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <Diagnostics> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963642> <BEA-320077> <Initialized the Diagnostic Accessor Service.>
    ####<16-Jul-2013 15:29:27 o'clock BST> <Info> <J2EE> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984967535> <BEA-160151> <Registered library Extension-Name: bea_wls_async_response (JAR).>
    ####<16-Jul-2013 15:29:27 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984967869> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceHttps for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968076> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceJms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968087> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseService for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968098> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Jms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968118> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12 for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968128> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Https for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:30:23 o'clock BST> <Info> <Health> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <weblogic.GCMonitor> <<anonymous>> <> <> <1373985023664> <BEA-310002> <96% of the total memory in the server is free>
    ####<16-Jul-2013 15:31:56 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <main> <<WLS Kernel>> <> <> <1373985116922> <BEA-000365> <Server state changed to ADMIN>
    ####<16-Jul-2013 15:32:01 o'clock BST> <Warning> <Log Management> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985121922> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <main> <<WLS Kernel>> <> <> <1373985269305> <BEA-000365> <Server state changed to RESUMING>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269360> <BEA-002619> <Not all the ListenPort(s) started properly.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Error> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <DynamicListenThread[Default[3]]> <<WLS Kernel>> <> <> <1373985269360> <BEA-002606> <Unable to create a server socket for listening on channel "Default[3]". The address fe80:0:0:0:0:0:0:1%0 might be incorrect or another process is using port 7011: java.net.BindException: Can't assign requested address.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Error> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <DynamicListenThread[Default[4]]> <<WLS Kernel>> <> <> <1373985269360> <BEA-002606> <Unable to create a server socket for listening on channel "Default[4]". The address fe80:0:0:0:3e07:54ff:fe24:2ca6%0 might be incorrect or another process is using port 7011: java.net.BindException: Can't assign requested address.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269362> <BEA-002610> <Dynamic Listener Service initialized.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269364> <BEA-002613> <Channel "Default[1]" is now listening on 10.211.55.2:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269364> <BEA-002613> <Channel "Default" is now listening on 192.168.0.68:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269365> <BEA-002613> <Channel "Default[2]" is now listening on 10.37.129.2:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269365> <BEA-002613> <Channel "Default[5]" is now listening on 127.0.0.1:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269365> <BEA-002613> <Channel "Default[6]" is now listening on 0:0:0:0:0:0:0:1:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269365> <BEA-000357> <Started WebLogic Independent Managed Server "Fiserv-SEM" for domain "mydomain" running in Development Mode>
    ####<16-Jul-2013 15:39:32 o'clock BST> <Warning> <JMX> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985572630> <BEA-149509> <Unable to establish JMX Connectivity with the Adminstration Server myserver at service:jmx:t3://[fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6]:7001/jndi/weblogic.management.mbeanservers.domainruntime.
    java.io.IOException
      at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:196)
      at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:84)
      at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:339)
      at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:248)
      at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.getDomainMBeanServerConnection(RegisterWithDomainRuntimeService.java:222)
      at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.notifyDomainRuntime(RegisterWithDomainRuntimeService.java:137)
      at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.start(RegisterWithDomainRuntimeService.java:91)
      at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeServiceLate.start(RegisterWithDomainRuntimeServiceLate.java:17)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://[fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6]:7001: Destination unreachable; nested exception is:
      java.n

    Hi,
    I use weblogic on my MacBook for few months now and I don't know why since this morning weblogic refuses to start up.
    Apparently it fails to connect to this address: fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6
    I noticed this IPv6 address is the one defined as utun0 when I do a ifconfig. I don't know why weblogic uses this interface. As you can see in the log file, weblogic creates defaults channels for each interface (Channel Default[1], Channel Default[2], Channel Default[3] and so on...)
    Is anyone could help me as I am completely stuck at the moment. Please find below the ifconfig result and the weblogic log file. Feel free to ask me anything if you need more information (log file, configuration, etc...)
    Thanks you very much
    ifconfig result:
    lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
      options=3<RXCSUM,TXCSUM>
      inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
      inet 127.0.0.1 netmask 0xff000000
      inet6 ::1 prefixlen 128
    gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    stf0: flags=0<> mtu 1280
    en1: flags=8823<UP,BROADCAST,SMART,SIMPLEX,MULTICAST> mtu 1500
      ether 60:c5:47:97:19:f6
      media: autoselect (<unknown type>)
      status: inactive
    en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
      options=2b<RXCSUM,TXCSUM,VLAN_HWTAGGING,TSO4>
      ether 3c:07:54:24:2c:a6
      inet6 fe80::3e07:54ff:fe24:2ca6%en0 prefixlen 64 scopeid 0x5
      inet 192.168.0.68 netmask 0xffffff00 broadcast 192.168.0.255
      media: autoselect (1000baseT <full-duplex>)
      status: active
    p2p0: flags=8802<BROADCAST,SIMPLEX,MULTICAST> mtu 2304
      ether 02:c5:47:97:19:f6
      media: autoselect
      status: inactive
    fw0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 4078
      lladdr a4:b1:97:ff:fe:53:4a:40
      media: autoselect <full-duplex>
      status: inactive
    vnic0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
      options=3<RXCSUM,TXCSUM>
      ether 00:1c:42:00:00:08
      inet 10.211.55.2 netmask 0xffffff00 broadcast 10.211.55.255
      media: autoselect
      status: active
    vnic1: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 1500
      options=3<RXCSUM,TXCSUM>
      ether 00:1c:42:00:00:09
      inet 10.37.129.2 netmask 0xffffff00 broadcast 10.37.129.255
      media: autoselect
      status: active
    utun0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1380
      inet6 fe80::62c5:47ff:fe97:19f6%utun0 prefixlen 64 scopeid 0xa
      inet6 fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6 prefixlen 64
    Log file:
    ####<16-Jul-2013 15:21:38 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984498875> <BEA-000000> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    ####<16-Jul-2013 15:21:38 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984498967> <BEA-000000> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    ####<16-Jul-2013 15:21:39 o'clock BST> <Info> <WebLogicServer> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984499268> <BEA-000000> <Starting WebLogic Server with Java HotSpot(TM) 64-Bit Server VM Version 20.51-b01-457 from Apple Inc.>
    ####<16-Jul-2013 15:21:40 o'clock BST> <Info> <Management> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984500038> <BEA-000000> <Version: WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050 >
    ####<16-Jul-2013 15:21:42 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502100> <BEA-000000> <Server state changed to STARTING>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <WorkManager> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502110> <BEA-000000> <Initializing self-tuning thread pool>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <WebLogicServer> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502179> <BEA-000000> <WebLogic Server "Fiserv-SEM" version:
    WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050  Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Notice> <Log Management> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502245> <BEA-170019> <The server log file /Users/TheEwook/Dev/Tools/weblogic_domain/servers/Fiserv-SEM/logs/Fiserv-SEM.log is opened. All server side log events will be written to this file.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Log Management> <Manuels-MacBook-Pro.local> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1373984502249> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Diagnostics> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502299> <BEA-320001> <The ServerDebug service initialized successfully.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502358> <BEA-002622> <The protocol "t3" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502358> <BEA-002622> <The protocol "t3s" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502358> <BEA-002622> <The protocol "http" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502358> <BEA-002622> <The protocol "https" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502359> <BEA-002622> <The protocol "iiop" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502360> <BEA-002622> <The protocol "iiops" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502360> <BEA-002622> <The protocol "ldap" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502361> <BEA-002622> <The protocol "ldaps" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502365> <BEA-002622> <The protocol "cluster" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502365> <BEA-002622> <The protocol "clusters" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502370> <BEA-002622> <The protocol "snmp" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502370> <BEA-002622> <The protocol "admin" is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502370> <BEA-002624> <The administration protocol is "t3s" and is now configured.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <RJVM> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502382> <BEA-000570> <Network Configuration for Channel "Fiserv-SEM"
    Listen Address :7011
    Public Address N/A
    Http Enabled true
    Tunneling Enabled false
    Outbound Enabled false
    Admin Traffic Enabled true>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502574> <BEA-002609> <Channel Service initialized.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502587> <BEA-000415> <System has file descriptor limits of - soft: 10,240, hard: -1>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502588> <BEA-000416> <Using effective file descriptor limit of: 10,240 open sockets/files.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502588> <BEA-000406> <PosixSocketMuxer was built on May 13 2009 15:20:23>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502613> <BEA-000436> <Allocating 4 reader threads.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <Socket> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502614> <BEA-000446> <Native IO Enabled.>
    ####<16-Jul-2013 15:21:42 o'clock BST> <Info> <IIOP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984502745> <BEA-002014> <IIOP subsystem enabled.>
    ####<16-Jul-2013 15:21:43 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984503713> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<16-Jul-2013 15:21:43 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984503992> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_N3oRW40rtyCl24gxSmEX77bo1x4=>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504262> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504626> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504637> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504769> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server Fiserv-SEM for security realm myrealm.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Notice> <Security> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504769> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504992> <BEA-002622> <The protocol "[snmp, https, t3, cluster-broadcast-secure, ldaps, cluster-broadcast, ldap, http, iiop, admin, t3s, iiops]" is now configured.>
    ####<16-Jul-2013 15:21:44 o'clock BST> <Info> <XML> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984504998> <BEA-130036> <Initializing XMLRegistry.>
    ####<16-Jul-2013 15:21:45 o'clock BST> <Info> <messaging.interception> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984505005> <BEA-400000> <Initializing message interception service>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657137> <BEA-280008> <Opening the persistent file store "_WLS_Fiserv-SEM" for recovery: directory=/Users/TheEwook/Dev/Tools/weblogic_domain/servers/Fiserv-SEM/data/store/default requestedWritePolicy="Direct-Write" fileLockingEnabled=true driver="NIO".>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Warning> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657153> <BEA-280109> <Unable to load the native wlfileio library for the persistent file store "_WLS_Fiserv-SEM". The store will use buffered I/O. The store is still operating in a transactionally safe synchronous mode. See store open log messages for the requested and final write policies.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657186> <BEA-280009> <The persistent file store "_WLS_Fiserv-SEM" (051f9e80-0950-4979-bb41-623f18426caa) has been opened: blockSize=512 actualWritePolicy="Direct-Write(single-handle-buffered)" explicitIOEnforced=false records=11.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657321> <BEA-001135> <Initializing the JDBC service.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657337> <BEA-001137> <Initialization complete.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657337> <BEA-001138> <Resuming the JDBC service.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657337> <BEA-001140> <Resume complete.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Connector> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657376> <BEA-190000> <Initializing J2EE Connector Service......>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Connector> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657379> <BEA-190001> <J2EE Connector Service initialized successfully>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657505> <BEA-040305> <JMS service is initialized and in standby mode.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657539> <BEA-040090> <Deployed 8 default connection factories.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657543> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory2" with its JNDI name "weblogic.jms.XAConnectionFactory2" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "MessageDrivenBeanConnectionFactory" with its JNDI name "weblogic.jms.MessageDrivenBeanConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "DefaultConnectionFactory" with its JNDI name "weblogic.jms.ConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "TopicConnectionFactory" with its JNDI name "javax.jms.TopicConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory" with its JNDI name "weblogic.jms.XAConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory0" with its JNDI name "weblogic.jms.XAConnectionFactory0" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "QueueConnectionFactory" with its JNDI name "javax.jms.QueueConnectionFactory" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657544> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory1" with its JNDI name "weblogic.jms.XAConnectionFactory1" is started.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMS> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657546> <BEA-040306> <JMS service is active now.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <HTTP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657588> <BEA-101128> <Initializing HTTP services.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <HTTP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657612> <BEA-101135> <Fiserv-SEM is the default Web server.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <HTTP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657612> <BEA-101052> <[HttpServer (defaultWebserver) name: Fiserv-SEM] Initialized>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <HTTP> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657616> <BEA-101129> <Initializing the Web application container.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657660> <BEA-180046> <INFO: Logging service enabled.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657662> <BEA-180046> <INFO: TC Configuration Helper instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657663> <BEA-180046> <INFO: TC Task Manager instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657665> <BEA-180046> <INFO: TC security service instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657667> <BEA-180046> <INFO: TC Outbound routing service instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WTC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657668> <BEA-180046> <INFO: TC Transaction service instantiated!>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657679> <BEA-220031> <The server does not support reliable SOAP messaging.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657679> <BEA-220027> <Web Service reliable agents are started on the server.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <JMX> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657848> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://192.168.0.68:7011/jndi/weblogic.management.mbeanservers.runtime .>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Management> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657868> <BEA-141278> <Java entropy configuration is: System property "java.security.egd= file:/dev/./urandom"; JRE's java.security file property "securerandom.source= file:/dev/./urandom"; Blocking Config= false; JDK version= 1.6.0_51; Operating System= Mac OS X.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Management> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657869> <BEA-141280> <Detected NON-BLOCKING java entropy configuration. This setting will provide the best performance on machines with few sources of entropy, but is less secure than a blocking entropy configuration.>
    ####<16-Jul-2013 15:24:17 o'clock BST> <Info> <Management> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984657869> <BEA-141187> <Java system properties are defined as follows:
    awt.nativeDoubleBuffering = true
    awt.toolkit = apple.awt.CToolkit
    file.encoding = MacRoman
    file.encoding.pkg = sun.io
    file.separator = /
    ftp.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
    gopherProxySet = false
    http.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
    java.awt.graphicsenv = apple.awt.CGraphicsEnvironment
    java.awt.printerjob = apple.awt.CPrinterJob
    java.class.path = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/tools.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/weblogic_sp.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/weblogic.jar:/Users/TheEwook/Dev/Tools/weblogic11g/modules/features/weblogic.server.modules_10.3.6.0.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/webservices.jar:/Users/TheEwook/Dev/Tools/weblogic11g/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/Users/TheEwook/Dev/Tools/weblogic11g/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/common/derby/lib/derbyclient.jar:/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/xqrl.jar
    java.class.version = 50.0
    java.endorsed.dirs = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed
    java.ext.dirs = /Library/Java/Extensions:/System/Library/Java/Extensions:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/ext
    java.home = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
    java.io.tmpdir = /var/folders/hw/hsfwq09x7lqcp19y_28s214w0000gn/T/
    java.library.path = :/Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/native/macosx:.:/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs = weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.protocol.handler.pkgs = weblogic.net
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.6.0_51-b11-457-11M4509
    java.security.egd = file:/dev/./urandom
    java.security.policy = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/weblogic.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Sun Microsystems Inc.
    java.specification.version = 1.6
    java.vendor = Apple Inc.
    java.vendor.url = http://www.apple.com/
    java.vendor.url.bug = http://bugreport.apple.com/
    java.version = 1.6.0_51
    java.vm.info = mixed mode
    java.vm.name = Java HotSpot(TM) 64-Bit Server VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Sun Microsystems Inc.
    java.vm.specification.version = 1.0
    java.vm.vendor = Apple Inc.
    java.vm.version = 20.51-b01-457
    javax.management.builder.initial = weblogic.management.jmx.mbeanserver.WLSMBeanServerBuilder
    javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory = weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory = weblogic.webservice.core.soap.MessageFactoryImpl
    log4j.configuration = file:/Users/TheEwook/Dev/STPConfig/log4j.properties
    mrj.build = 11M4509
    mrj.version = 1070.1.6.0_51-457
    org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
    org.xml.sax.driver = weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser = weblogic.xml.jaxp.RegistryParser
    os.arch = x86_64
    os.name = Mac OS X
    os.version = 10.7.5
    path.separator = :
    platform.home = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver
    socksNonProxyHosts = local|*.local|169.254/16|*.169.254/16
    sun.arch.data.model = 64
    sun.boot.class.path = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed/javax-xml-bind.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed/javax-xml-ws.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/endorsed/jsr250-api.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsfd.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library/Frameworks/JavaVM.framework/Frameworks/JavaRuntimeSupport.framework/Resources/Java/JavaRuntimeSupport.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/ui.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/laf.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/sunrsasign.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jsse.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar
    sun.boot.library.path = /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries
    sun.cpu.endian = little
    sun.io.unicode.encoding = UnicodeLittle
    sun.java.command = weblogic.Server
    sun.java.launcher = SUN_STANDARD
    sun.jnu.encoding = MacRoman
    sun.management.compiler = HotSpot 64-Bit Tiered Compilers
    sun.os.patch.level = unknown
    user.country = GB
    user.dir = /Users/TheEwook/Dev/Tools/weblogic_domain
    user.home = /Users/TheEwook
    user.language = en
    user.name = TheEwook
    user.timezone = Europe/London
    vde.home = /Users/TheEwook/Dev/Tools/weblogic_domain/servers/Fiserv-SEM/data/ldap
    weblogic.Name = Fiserv-SEM
    weblogic.classloader.preprocessor = weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.home = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server
    weblogic.management.discover = false
    weblogic.management.server = t3://127.0.0.1:7001
    weblogic.security.SSL.trustedCAKeyStore = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server/lib/cacerts
    wls.home = /Users/TheEwook/Dev/Tools/weblogic11g/wlserver/server
    wlw.iterativeDev = false
    wlw.logErrorsToConsole = false
    wlw.testConsole = false
    >
    ####<16-Jul-2013 15:28:06 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <main> <<WLS Kernel>> <> <> <1373984886159> <BEA-000365> <Server state changed to STANDBY>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <main> <<WLS Kernel>> <> <> <1373984886159> <BEA-000365> <Server state changed to STARTING>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <SAFService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886177> <BEA-281003> <SAF Service has been initialized.>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <SAFService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886186> <BEA-281002> <SAF Service has been started.>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <WseeCore> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886190> <BEA-220502> <The Wsee Service is starting>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <Deployer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886206> <BEA-149209> <Resuming.>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886239> <BEA-001177> <Creating data source connection pool named JDBC STP, URL = jdbc:oracle:thin:@192.168.0.15:1521:xe, Properties = user=STP_STORAGE;.>
    ####<16-Jul-2013 15:28:06 o'clock BST> <Info> <Common> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984886253> <BEA-000626> <Free resources in pool "JDBC STP" will be tested every "120" seconds.>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887366> <BEA-001516> <Data source connection pool "JDBC STP" connected to Database: "Oracle", Version: "Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production".>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887366> <BEA-001517> <Data source connection pool "JDBC STP" using Driver: "Oracle JDBC driver", Version: "11.2.0.3.0".>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <Common> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887901> <BEA-000628> <Created "10" resources for pool "JDBC STP", out of which "10" are available and "0" are unavailable.>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887903> <BEA-001124> <Created Connection Pool named JDBC STP.>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887916> <BEA-001174> <Creating data source named JDBC STP, JNDI Name = jdbc/STPStoreDataSource.>
    ####<16-Jul-2013 15:28:07 o'clock BST> <Info> <JDBC> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984887964> <BEA-001512> <Data source JDBC STP has been successfully created.>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Error> <Deployer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963524> <BEA-149205> <Failed to initialize the application 'aconite-stp' due to error weblogic.management.DeploymentException: Exception occured while downloading files.
    weblogic.management.DeploymentException: Exception occured while downloading files
      at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.doDownload(AppDataUpdate.java:43)
      at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.download(DataUpdate.java:56)
      at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareDataUpdate(Data.java:97)
      at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpdate(BasicDeployment.java:686)
      at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForStatic(BasicDeployment.java:729)
      at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:104)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
      at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
      at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.net.ConnectException: Tried all: '1' addresses, but could not connect over HTTP to server: '[fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6]', port: '7001'
      at weblogic.net.http.HttpClient.openServer(HttpClient.java:333)
      at weblogic.net.http.HttpClient.openServer(HttpClient.java:425)
      at weblogic.net.http.HttpClient.New(HttpClient.java:252)
      at weblogic.net.http.HttpURLConnection.connect(HttpURLConnection.java:213)
      at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.getDataAsStream(HttpDataTransferHandler.java:75)
      at weblogic.deploy.service.datatransferhandlers.DataHandlerManager$RemoteDataTransferHandler.getDataAsStream(DataHandlerManager.java:153)
      at weblogic.deploy.internal.targetserver.datamanagement.AppDataUpdate.doDownload(AppDataUpdate.java:39)
      at weblogic.deploy.internal.targetserver.datamanagement.DataUpdate.download(DataUpdate.java:56)
      at weblogic.deploy.internal.targetserver.datamanagement.Data.prepareDataUpdate(Data.java:97)
      at weblogic.deploy.internal.targetserver.BasicDeployment.prepareDataUpdate(BasicDeployment.java:686)
      at weblogic.deploy.internal.targetserver.BasicDeployment.stageFilesForStatic(BasicDeployment.java:729)
      at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:104)
      at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
      at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
      at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
      at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
      at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
      at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
      at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
      at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    >
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963528> <BEA-000256> <Invoking weblogic.transaction.internal.StartupClass.main(null)>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <Diagnostics> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963538> <BEA-320000> <The Diagnostics subsystem is initializing on Server Fiserv-SEM.>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963541> <BEA-280008> <Opening the persistent file store "WLS_DIAGNOSTICS" for recovery: directory=/Users/TheEwook/Dev/Tools/weblogic_domain/servers/Fiserv-SEM/data/store/diagnostics requestedWritePolicy="Disabled" fileLockingEnabled=true driver="NIO".>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <Store> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963566> <BEA-280009> <The persistent file store "WLS_DIAGNOSTICS" (2e05de73-f3ac-4b6f-9d3e-29414eb88462) has been opened: blockSize=512 actualWritePolicy="Disabled(single-handle-non-direct)" explicitIOEnforced=false records=21.>
    ####<16-Jul-2013 15:29:23 o'clock BST> <Info> <Diagnostics> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984963642> <BEA-320077> <Initialized the Diagnostic Accessor Service.>
    ####<16-Jul-2013 15:29:27 o'clock BST> <Info> <J2EE> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373984967535> <BEA-160151> <Registered library Extension-Name: bea_wls_async_response (JAR).>
    ####<16-Jul-2013 15:29:27 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984967869> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceHttps for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968076> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceJms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968087> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseService for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968098> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Jms for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968118> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12 for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:29:28 o'clock BST> <Info> <WebService> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1373984968128> <BEA-220103> <Async web service support is not fully configured. The async response web service /AsyncResponseServiceSoap12Https for this server was not fully deployed because the JMS reliability queue was not defined/deployed: weblogic.wsee.DefaultQueue. The server will periodically retry completing the deploy for the service. This message can usually be ignored unless there are async web service applications. To completely disable async web service support, thus avoiding this message, set -Dweblogic.wsee.skip.async.response=true.>
    ####<16-Jul-2013 15:30:23 o'clock BST> <Info> <Health> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <weblogic.GCMonitor> <<anonymous>> <> <> <1373985023664> <BEA-310002> <96% of the total memory in the server is free>
    ####<16-Jul-2013 15:31:56 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <main> <<WLS Kernel>> <> <> <1373985116922> <BEA-000365> <Server state changed to ADMIN>
    ####<16-Jul-2013 15:32:01 o'clock BST> <Warning> <Log Management> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[STANDBY] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985121922> <BEA-170011> <The LogBroadcaster on this server failed to broadcast log messages to the admin server. The Admin server may not be running. Message broadcasts to the admin server will be disabled.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <main> <<WLS Kernel>> <> <> <1373985269305> <BEA-000365> <Server state changed to RESUMING>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269360> <BEA-002619> <Not all the ListenPort(s) started properly.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Error> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <DynamicListenThread[Default[3]]> <<WLS Kernel>> <> <> <1373985269360> <BEA-002606> <Unable to create a server socket for listening on channel "Default[3]". The address fe80:0:0:0:0:0:0:1%0 might be incorrect or another process is using port 7011: java.net.BindException: Can't assign requested address.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Error> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <DynamicListenThread[Default[4]]> <<WLS Kernel>> <> <> <1373985269360> <BEA-002606> <Unable to create a server socket for listening on channel "Default[4]". The address fe80:0:0:0:3e07:54ff:fe24:2ca6%0 might be incorrect or another process is using port 7011: java.net.BindException: Can't assign requested address.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Info> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269362> <BEA-002610> <Dynamic Listener Service initialized.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269364> <BEA-002613> <Channel "Default[1]" is now listening on 10.211.55.2:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269364> <BEA-002613> <Channel "Default" is now listening on 192.168.0.68:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269365> <BEA-002613> <Channel "Default[2]" is now listening on 10.37.129.2:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269365> <BEA-002613> <Channel "Default[5]" is now listening on 127.0.0.1:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <Server> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269365> <BEA-002613> <Channel "Default[6]" is now listening on 0:0:0:0:0:0:0:1:7011 for protocols iiop, t3, ldap, snmp, http.>
    ####<16-Jul-2013 15:34:29 o'clock BST> <Notice> <WebLogicServer> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985269365> <BEA-000357> <Started WebLogic Independent Managed Server "Fiserv-SEM" for domain "mydomain" running in Development Mode>
    ####<16-Jul-2013 15:39:32 o'clock BST> <Warning> <JMX> <Manuels-MacBook-Pro.local> <Fiserv-SEM> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1373985572630> <BEA-149509> <Unable to establish JMX Connectivity with the Adminstration Server myserver at service:jmx:t3://[fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6]:7001/jndi/weblogic.management.mbeanservers.domainruntime.
    java.io.IOException
      at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:196)
      at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:84)
      at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:339)
      at javax.management.remote.JMXConnectorFactory.connect(JMXConnectorFactory.java:248)
      at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.getDomainMBeanServerConnection(RegisterWithDomainRuntimeService.java:222)
      at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.notifyDomainRuntime(RegisterWithDomainRuntimeService.java:137)
      at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeService.start(RegisterWithDomainRuntimeService.java:91)
      at weblogic.management.mbeanservers.runtime.internal.RegisterWithDomainRuntimeServiceLate.start(RegisterWithDomainRuntimeServiceLate.java:17)
      at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://[fd00:6587:52d7:1d76:62c5:47ff:fe97:19f6]:7001: Destination unreachable; nested exception is:
      java.n

  • Weblogic Http Apache Plugin not working

    Hi,
    I have installed weblogic server 10.3 on WindowsXP Professional and Http Apache 2.2 is running on port 80. I followed the following document to configure the Apache plugin:
    http://e-docs.bea.com/wls/docs103/plugins/apache.html
    but when I go and test the plugin it always comes back with 404 page not found. As per the documentation I am testing it as
    http://localhost:80/weblogic/
    Here is my httpd.conf
    Include "C:/bea/alui/plumtreeconf/"
    # This is the main Apache HTTP server configuration file.  It contains the
    # configuration directives that give the server its instructions.
    # See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
    # In particular, see
    # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
    # for a discussion of each configuration directive.
    # Do NOT simply read the instructions in here without understanding
    # what they do.  They're here only as hints or reminders.  If you are unsure
    # consult the online docs. You have been warned. 
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path.  If the filenames do *not* begin
    # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
    # with ServerRoot set to "C:/Program Files/Apache Software Foundation/Apache2.2" will be interpreted by the
    # server as "C:/Program Files/Apache Software Foundation/Apache2.2/logs/foo.log".
    # NOTE: Where filenames are specified, you must use forward slashes
    # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
    # If a drive letter is omitted, the drive on which httpd.exe is located
    # will be used by default.  It is recommended that you always supply
    # an explicit drive letter in absolute paths to avoid confusion.
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do not add a slash at the end of the directory path.  If you point
    # ServerRoot at a non-local disk, be sure to point the LockFile directive
    # at a local disk.  If you wish to share the same ServerRoot for multiple
    # httpd daemons, you will need to change at least LockFile and PidFile.
    ServerRoot "C:/Program Files/Apache Software Foundation/Apache2.2"
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses.
    #Listen 12.34.56.78:80
    Listen 80
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available _before_ they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule actions_module modules/mod_actions.so
    LoadModule alias_module modules/mod_alias.so
    LoadModule asis_module modules/mod_asis.so
    LoadModule auth_basic_module modules/mod_auth_basic.so
    #LoadModule auth_digest_module modules/mod_auth_digest.so
    #LoadModule authn_alias_module modules/mod_authn_alias.so
    #LoadModule authn_anon_module modules/mod_authn_anon.so
    #LoadModule authn_dbd_module modules/mod_authn_dbd.so
    #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    LoadModule authn_default_module modules/mod_authn_default.so
    LoadModule authn_file_module modules/mod_authn_file.so
    #LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
    #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    LoadModule authz_default_module modules/mod_authz_default.so
    LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    LoadModule authz_host_module modules/mod_authz_host.so
    #LoadModule authz_owner_module modules/mod_authz_owner.so
    LoadModule authz_user_module modules/mod_authz_user.so
    LoadModule autoindex_module modules/mod_autoindex.so
    #LoadModule cache_module modules/mod_cache.so
    #LoadModule cern_meta_module modules/mod_cern_meta.so
    LoadModule cgi_module modules/mod_cgi.so
    #LoadModule charset_lite_module modules/mod_charset_lite.so
    #LoadModule dav_module modules/mod_dav.so
    #LoadModule dav_fs_module modules/mod_dav_fs.so
    #LoadModule dav_lock_module modules/mod_dav_lock.so
    #LoadModule dbd_module modules/mod_dbd.so
    #LoadModule deflate_module modules/mod_deflate.so
    LoadModule dir_module modules/mod_dir.so
    #LoadModule disk_cache_module modules/mod_disk_cache.so
    #LoadModule dumpio_module modules/mod_dumpio.so
    LoadModule env_module modules/mod_env.so
    #LoadModule expires_module modules/mod_expires.so
    #LoadModule ext_filter_module modules/mod_ext_filter.so
    #LoadModule file_cache_module modules/mod_file_cache.so
    #LoadModule filter_module modules/mod_filter.so
    #LoadModule headers_module modules/mod_headers.so
    #LoadModule ident_module modules/mod_ident.so
    #LoadModule imagemap_module modules/mod_imagemap.so
    LoadModule include_module modules/mod_include.so
    #LoadModule info_module modules/mod_info.so
    LoadModule isapi_module modules/mod_isapi.so
    #LoadModule ldap_module modules/mod_ldap.so
    #LoadModule logio_module modules/mod_logio.so
    LoadModule log_config_module modules/mod_log_config.so
    #LoadModule log_forensic_module modules/mod_log_forensic.so
    #LoadModule mem_cache_module modules/mod_mem_cache.so
    LoadModule mime_module modules/mod_mime.so
    #LoadModule mime_magic_module modules/mod_mime_magic.so
    LoadModule negotiation_module modules/mod_negotiation.so
    LoadModule proxy_module modules/mod_proxy.so
    #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    LoadModule proxy_http_module modules/mod_proxy_http.so
    #LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule setenvif_module modules/mod_setenvif.so
    #LoadModule speling_module modules/mod_speling.so
    #LoadModule ssl_module modules/mod_ssl.so
    #LoadModule status_module modules/mod_status.so
    #LoadModule substitute_module modules/mod_substitute.so
    #LoadModule unique_id_module modules/mod_unique_id.so
    #LoadModule userdir_module modules/mod_userdir.so
    #LoadModule usertrack_module modules/mod_usertrack.so
    #LoadModule version_module modules/mod_version.so
    #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    LoadModule weblogic_module modules/mod_wl_22.so
    <IfModule mod_weblogic.c>
      WebLogicHost localhost
      WebLogicPort 7001
    </IfModule>
    <Location /weblogic>
      SetHandler weblogic-handler
      PathTrim /weblogic
    </Location>
    <IfModule !mpm_netware_module>
    <IfModule !mpm_winnt_module>
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch. 
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    User daemon
    Group daemon
    </IfModule>
    </IfModule>
    # 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition.  These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed.  This address appears on some server-generated pages, such
    # as error documents.  e.g. [email protected]
    ServerAdmin [email protected]
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #ServerName localhost:80
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs"
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # features. 
    ProxyRequests On
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs">
        # Possible values for the Options directive are "None", "All",
        # or any combination of:
        #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
        # Note that "MultiViews" must be named *explicitly* --- "Options All"
        # doesn't give it to you.
        # The Options directive is both complicated and important.  Please see
        # http://httpd.apache.org/docs/2.2/mod/core.html#options
        # for more information.
        Options Indexes FollowSymLinks
        # AllowOverride controls what directives may be placed in .htaccess files.
        # It can be "All", "None", or any combination of the keywords:
        #   Options FileInfo AuthConfig Limit
        AllowOverride None
        # Controls who can get stuff from this server.
        Order allow,deny
        Allow from all
    </Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
        DirectoryIndex index.html
    </IfModule>
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <FilesMatch "^\.ht">
        Order allow,deny
        Deny from all
        Satisfy All
    </FilesMatch>
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here.  If you *do* define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog "logs/error.log"
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    <IfModule log_config_module>
        # The following directives define some format nicknames for use with
        # a CustomLog directive (see below).
        LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
        LogFormat "%h %l %u %t \"%r\" %>s %b" common
        <IfModule logio_module>
          # You need to enable mod_logio.c to use %I and %O
          LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
        </IfModule>
        # The location and format of the access logfile (Common Logfile Format).
        # If you do not define any access logfiles within a <VirtualHost>
        # container, they will be logged here.  Contrariwise, if you *do*
        # define per-<VirtualHost> access logfiles, transactions will be
        # logged therein and *not* in this file.
        CustomLog "logs/access.log" common
        # If you prefer a logfile with access, agent, and referer information
        # (Combined Logfile Format) you can use the following directive.
        #CustomLog "logs/access.log" combined
    </IfModule>
    <IfModule alias_module>
        # Redirect: Allows you to tell clients about documents that used to
        # exist in your server's namespace, but do not anymore. The client
        # will make a new request for the document at its new location.
        # Example:
        # Redirect permanent /foo http://localhost/bar
        # Alias: Maps web paths into filesystem paths and is used to
        # access content that does not live under the DocumentRoot.
        # Example:
        # Alias /webpath /full/filesystem/path
        # If you include a trailing / on /webpath then the server will
        # require it to be present in the URL.  You will also likely
        # need to provide a <Directory> section to allow access to
        # the filesystem path.
        # ScriptAlias: This controls which directories contain server scripts.
        # ScriptAliases are essentially the same as Aliases, except that
        # documents in the target directory are treated as applications and
        # run by the server when requested rather than as documents sent to the
        # client.  The same rules about trailing "/" apply to ScriptAlias
        # directives as to Alias.
        ScriptAlias /cgi-bin/ "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin/"
    </IfModule>
    <IfModule cgid_module>
        # ScriptSock: On threaded servers, designate the path to the UNIX
        # socket used to communicate with the CGI daemon of mod_cgid.
        #Scriptsock logs/cgisock
    </IfModule>
    # "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "C:/Program Files/Apache Software Foundation/Apache2.2/cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
    # DefaultType: the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value.  If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    DefaultType text/plain
    <IfModule mime_module>
        # TypesConfig points to the file containing the list of mappings from
        # filename extension to MIME-type.
        TypesConfig conf/mime.types
        # AddType allows you to add to or override the MIME configuration
        # file specified in TypesConfig for specific file types.
        #AddType application/x-gzip .tgz
        # AddEncoding allows you to have certain browsers uncompress
        # information on the fly. Note: Not all browsers support this.
        #AddEncoding x-compress .Z
        #AddEncoding x-gzip .gz .tgz
        # If the AddEncoding directives above are commented-out, then you
        # probably should define those extensions to indicate media types:
        AddType application/x-compress .Z
        AddType application/x-gzip .gz .tgz
        # AddHandler allows you to map certain file extensions to "handlers":
        # actions unrelated to filetype. These can be either built into the server
        # or added with the Action directive (see below)
        # To use CGI scripts outside of ScriptAliased directories:
        # (You will also need to add "ExecCGI" to the "Options" directive.)
        #AddHandler cgi-script .cgi
        # For type maps (negotiated resources):
        #AddHandler type-map var
        # Filters allow you to process content before it is sent to the client.
        # To parse .shtml files for server-side includes (SSI):
        # (You will also need to add "Includes" to the "Options" directive.)
        #AddType text/html .shtml
        #AddOutputFilter INCLUDES .shtml
    </IfModule>
    # The mod_mime_magic module allows the server to use various hints from the
    # contents of the file itself to determine its type.  The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #MIMEMagicFile conf/magic
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://localhost/subscription_info.html
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall is used to deliver
    # files.  This usually improves server performance, but must
    # be turned off when serving from networked-mounted
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    #EnableMMAP off
    #EnableSendfile off
    # Supplemental configuration
    # The configuration files in the conf/extra/ directory can be
    # included to add extra features or to modify the default configuration of
    # the server, or you may simply copy their contents here and change as
    # necessary.
    # Server-pool management (MPM specific)
    #Include conf/extra/httpd-mpm.conf
    # Multi-language error messages
    #Include conf/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    #Include conf/extra/httpd-autoindex.conf
    # Language settings
    #Include conf/extra/httpd-languages.conf
    # User home directories
    #Include conf/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include conf/extra/httpd-info.conf
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    #Include conf/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include conf/extra/httpd-dav.conf
    # Various default settings
    #Include conf/extra/httpd-default.conf
    # Secure (SSL/TLS) connections
    #Include conf/extra/httpd-ssl.conf
    # Note: The following must must be present to support
    #       starting without SSL on platforms with no /dev/random equivalent
    #       but a statically compiled-in mod_ssl.
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>Is there anything else I need to add to this file. As I am trying to install ALUI and for this I need to add the plugin as when I go to my portal page none of the
    images shows. Any help is appreciated.
    Thanks

    Hi,
    There is patch for the webserver(Apache Plugin),thats needs to be downloaded from Metalink,dont use the default plugin that comes with the weblogic 10.3 installtion.
    Regards,
    Dinesh

  • Facing issue while deploying Oracle CC&B v2.3.1 in weblogic 10.3

    I am installing Oracle CC&B v2.3.1 in weblogic 10.3 in windows... 32-bit
    I am done with installation of framework and ccnb but when I start the environment it is throwing loads of errors and the splweb is not initializing
    Below is the log file
    Myserver.log
    ####<Nov 14, 2013 5:00:24 PM IST> <Info> <Security> <D-113062615> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1384428624079> <BEA-000000> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    ####<Nov 14, 2013 5:00:24 PM IST> <Info> <Security> <D-113062615> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1384428624126> <BEA-000000> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    ####<Nov 14, 2013 5:00:24 PM IST> <Info> <WebLogicServer> <D-113062615> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1384428624469> <BEA-000000> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 24.45-b08 from Oracle Corporation>
    ####<Nov 14, 2013 5:00:24 PM IST> <Info> <Management> <D-113062615> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1384428624937> <BEA-000000> <Version: WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050 >
    ####<Nov 14, 2013 5:00:25 PM IST> <Notice> <WebLogicServer> <D-113062615> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1384428625623> <BEA-000000> <Server state changed to STARTING>
    ####<Nov 14, 2013 5:00:25 PM IST> <Info> <WorkManager> <D-113062615> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1384428625639> <BEA-000000> <Initializing self-tuning thread pool>
    ####<Nov 14, 2013 5:00:25 PM IST> <Info> <WebLogicServer> <D-113062615> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1384428625670> <BEA-000000> <WebLogic Server "myserver" version:
    WebLogic Server 10.3.6.0  Tue Nov 15 08:52:36 PST 2011 1441050  Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved.>
    ####<Nov 14, 2013 5:00:25 PM IST> <Notice> <Log Management> <D-113062615> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1384428625717> <BEA-170019> <The server log file D:\SPL\YVWDEMO\logs\system\myserver.log is opened. All server side log events will be written to this file.>
    ####<Nov 14, 2013 5:00:25 PM IST> <Info> <Log Management> <D-113062615> <> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <> <> <> <1384428625733> <BEA-170023> <The Server Logging is initialized with Java Logging API implementation.>
    ####<Nov 14, 2013 5:00:25 PM IST> <Info> <Diagnostics> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428625764> <BEA-320001> <The ServerDebug service initialized successfully.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "t3" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "t3s" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "http" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "https" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "iiop" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "iiops" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "ldap" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "ldaps" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "cluster" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "clusters" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "snmp" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002622> <The protocol "admin" is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631005> <BEA-002624> <The administration protocol is "t3s" and is now configured.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <RJVM> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631052> <BEA-000570> <Network Configuration for Channel "myserver"
    Listen Address   *
    Public Address   N/A
    Http Enabled   true
    Tunneling Enabled  false
    Outbound Enabled  false
    Admin Traffic Enabled  true>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <RJVM> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631052> <BEA-000570> <Network Configuration for Channel "myserver"
    Listen Address   null:6501 (SSL)
    Public Address   N/A
    Http Enabled   true
    Tunneling Enabled  false
    Outbound Enabled  false
    Admin Traffic Enabled  true>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631161> <BEA-002609> <Channel Service initialized.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Socket> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631177> <BEA-000406> <NTSocketMuxer was built on Jan 13 2005 17:47:03
    >
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Socket> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631218> <BEA-000436> <Allocating 4 reader threads.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Socket> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631219> <BEA-000446> <Native IO Enabled.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <IIOP> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631283> <BEA-002014> <IIOP subsystem enabled.>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Security> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631751> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Security> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631922> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_fzVlHIjzobSLOwkcVy1S5ygV6Qk=>
    ####<Nov 14, 2013 5:00:31 PM IST> <Info> <Security> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428631953> <BEA-090516> <The Authenticator provider has preexisting LDAP data.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Security> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632016> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Security> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632047> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Security> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632109> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Security> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632172> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server myserver for security realm myrealm.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Notice> <Security> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632172> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Server> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632343> <BEA-002622> <The protocol "[https, t3, snmp, cluster-broadcast-secure, ldaps, cluster-broadcast, ldap, http, iiop, admin, t3s, iiops]" is now configured.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <XML> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632343> <BEA-130036> <Initializing XMLRegistry.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <messaging.interception> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632359> <BEA-400000> <Initializing message interception service>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Store> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632484> <BEA-280008> <Opening the persistent file store "_WLS_myserver" for recovery: directory=D:\SPL\YVWDEMO\splapp\servers\myserver\data\store\default requestedWritePolicy="Direct-Write" fileLockingEnabled=true driver="wlfileio3".>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Store> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632562> <BEA-280009> <The persistent file store "_WLS_myserver" (a592aa08-b1bc-48fc-8a37-2e7e9a74c417) has been opened: blockSize=512 actualWritePolicy="Direct-Write(read-buffered)" explicitIOEnforced=false records=15.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JDBC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632655> <BEA-001135> <Initializing the JDBC service.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JDBC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632671> <BEA-001137> <Initialization complete.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JDBC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632671> <BEA-001138> <Resuming the JDBC service.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JDBC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632671> <BEA-001140> <Resume complete.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Connector> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632702> <BEA-190000> <Initializing J2EE Connector Service......>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Connector> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632702> <BEA-190001> <J2EE Connector Service initialized successfully>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632765> <BEA-040305> <JMS service is initialized and in standby mode.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040090> <Deployed 8 default connection factories.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory2" with its JNDI name "weblogic.jms.XAConnectionFactory2" is started.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040407> <Default connection factory "MessageDrivenBeanConnectionFactory" with its JNDI name "weblogic.jms.MessageDrivenBeanConnectionFactory" is started.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040407> <Default connection factory "DefaultConnectionFactory" with its JNDI name "weblogic.jms.ConnectionFactory" is started.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040407> <Default connection factory "TopicConnectionFactory" with its JNDI name "javax.jms.TopicConnectionFactory" is started.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory" with its JNDI name "weblogic.jms.XAConnectionFactory" is started.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory0" with its JNDI name "weblogic.jms.XAConnectionFactory0" is started.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040407> <Default connection factory "QueueConnectionFactory" with its JNDI name "javax.jms.QueueConnectionFactory" is started.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040407> <Default connection factory "DefaultXAConnectionFactory1" with its JNDI name "weblogic.jms.XAConnectionFactory1" is started.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMS> <D-113062615> <myserver> <[STANDBY] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632780> <BEA-040306> <JMS service is active now.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <HTTP> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632811> <BEA-101128> <Initializing HTTP services.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <HTTP> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632827> <BEA-101135> <myserver is the default Web server.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <HTTP> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632827> <BEA-101052> <[HttpServer (defaultWebserver) name: myserver] Initialized>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <HTTP> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632827> <BEA-101129> <Initializing the Web application container.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <WTC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632858> <BEA-180046> <INFO: Logging service enabled.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <WTC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632858> <BEA-180046> <INFO: TC Configuration Helper instantiated!>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <WTC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632858> <BEA-180046> <INFO: TC Task Manager instantiated!>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <WTC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632858> <BEA-180046> <INFO: TC security service instantiated!>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <WTC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632858> <BEA-180046> <INFO: TC Outbound routing service instantiated!>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <WTC> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632858> <BEA-180046> <INFO: TC Transaction service instantiated!>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <WebService> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632874> <BEA-220031> <The server does not support reliable SOAP messaging.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <WebService> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632874> <BEA-220027> <Web Service reliable agents are started on the server.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMX> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632936> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://10.156.22.60:6500/jndi/weblogic.management.mbeanservers.runtime .>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMX> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632936> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://10.156.22.60:6500/jndi/weblogic.management.mbeanservers.edit .>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <JMX> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632952> <BEA-149512> <JMX Connector Server started at service:jmx:iiop://10.156.22.60:6500/jndi/weblogic.management.mbeanservers.domainruntime .>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Management> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632983> <BEA-141278> <Java entropy configuration is: System property "java.security.egd= null"; JRE's java.security file property "securerandom.source= file:/dev/urandom"; Blocking Config= false; JDK version= 1.7.0_45; Operating System= Windows 7.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Management> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632983> <BEA-141280> <Detected NON-BLOCKING java entropy configuration. This setting will provide the best performance on machines with few sources of entropy, but is less secure than a blocking entropy configuration.>
    ####<Nov 14, 2013 5:00:32 PM IST> <Info> <Management> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428632983> <BEA-141187> <Java system properties are defined as follows:
    awt.toolkit = sun.awt.windows.WToolkit
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    java.class.path = C:\Oracle\Middleware\wlserver_10.3\samples\server\examples\build\serverclasses;C:\Oracle\Middleware\patch_wls1036\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\Middleware\patch_ocp371\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Java\lib\tools.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic_sp.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic.jar;C:\Oracle\Middleware\modules\features\weblogic.server.modules_10.3.6.0.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\webservices.jar;C:\Oracle\Middleware\modules\org.apache.ant_1.7.1/lib/ant-all.jar;C:\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar;;;C:\Oracle\Middleware\wlserver_10.3\server\lib\xqrl.jar;;;D:\SPL\YVWDEMO\splapp\standalone\lib\xalan-2.7.0.jar;D:\SPL\YVWDEMO\splapp\standalone\lib\serializer-2.7.0.jar;D:\SPL\YVWDEMO\splapp\standalone\lib\antlr-2.7.6.jar
    java.class.version = 51.0
    java.endorsed.dirs = C:\Java\jre\lib\endorsed
    java.ext.dirs = C:\Java\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
    java.home = C:\Java\jre
    java.io.tmpdir = C:\Users\TEMP\AppData\Local\Temp\
    java.library.path = C:\Java\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Oracle\Middleware\patch_wls1036\profiles\default\native;C:\Oracle\Middleware\patch_ocp371\profiles\default\native;C:\Oracle\Middleware\wlserver_10.3\server\native\win\32;C:\Oracle\Middleware\wlserver_10.3\server\bin;C:\Oracle\Middleware\modules\org.apache.ant_1.7.1\bin;C:\Java\jre\bin;C:\Java\bin;D:\SPL\YVWDEMO\product\apache-ant-1.7.0\bin;D:\SPL\YVWDEMO\product\apache-ant-1.7.0\bin;D:\SPL\YVWDEMO\product\apache-ant-1.7.0\bin;D:\SPL\YVWDEMO\product\apache-ant-1.7.0\bin;D:\SPL\YVWDEMO\product\apache-ant-1.7.0\bin;C:\PROGRA~1\Micro;D:\SPL\YVWDEMO\runtime;D:\SPL\YVWDEMO\runtime;D:\SPL\YVWDEMO\bin;D:\SPL\YVWDEMO\product\apache-ant-1.7.0\bin;C:\oraclexe\app\oracle\product\11.2.0\server\bin;;C:\Perl\site\bin;C:\Perl\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Java\bin;C:\Java\lib;C:\Oracle\Middleware\wlserver_10.3\server\native\win\32\oci920_8;.
    java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory
    java.naming.factory.url.pkgs = weblogic.jndi.factories:weblogic.corba.j2ee.naming.url:weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.protocol.handler.pkgs = weblogic.utils|weblogic.utils|weblogic.utils|weblogic.net
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.7.0_45-b18
    java.security.policy = C:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Oracle Corporation
    java.specification.version = 1.7
    java.vendor = Oracle Corporation
    java.vendor.url = http://java.oracle.com/
    java.vendor.url.bug = http://bugreport.sun.com/bugreport/
    java.version = 1.7.0_45
    java.vm.info = mixed mode, sharing
    java.vm.name = Java HotSpot(TM) Client VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Oracle Corporation
    java.vm.specification.version = 1.7
    java.vm.vendor = Oracle Corporation
    java.vm.version = 24.45-b08
    javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl
    javax.xml.rpc.ServiceFactory = weblogic.webservice.core.rpc.ServiceFactoryImpl
    javax.xml.soap.MessageFactory = weblogic.webservice.core.soap.MessageFactoryImpl
    org.omg.CORBA.ORBClass = weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass = weblogic.corba.orb.ORB
    org.xml.sax.driver = weblogic.xml.jaxp.RegistryXMLReader
    org.xml.sax.parser = weblogic.xml.jaxp.RegistryParser
    os.arch = x86
    os.name = Windows 7
    os.version = 6.1
    path.separator = ;
    platform.home = C:\Oracle\Middleware\wlserver_10.3
    sun.arch.data.model = 32
    sun.boot.class.path = C:\Java\jre\lib\resources.jar;C:\Java\jre\lib\rt.jar;C:\Java\jre\lib\sunrsasign.jar;C:\Java\jre\lib\jsse.jar;C:\Java\jre\lib\jce.jar;C:\Java\jre\lib\charsets.jar;C:\Java\jre\lib\jfr.jar;C:\Java\jre\classes
    sun.boot.library.path = C:\Java\jre\bin
    sun.cpu.endian = little
    sun.cpu.isalist = pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    sun.desktop = windows
    sun.io.unicode.encoding = UnicodeLittle
    sun.java.command = weblogic.Server
    sun.java.launcher = SUN_STANDARD
    sun.jnu.encoding = Cp1252
    sun.management.compiler = HotSpot Client Compiler
    sun.os.patch.level = Service Pack 1
    user.country = US
    user.dir = D:\SPL\YVWDEMO\splapp
    user.home = C:\Users\TEMP
    user.language = en
    user.name = new
    user.timezone = Asia/Calcutta
    vde.home = D:\SPL\YVWDEMO\splapp\servers\myserver\data\ldap
    weblogic.Name = myserver
    weblogic.classloader.preprocessor = weblogic.diagnostics.instrumentation.DiagnosticClassPreProcessor
    weblogic.ext.dirs = C:\Oracle\Middleware\patch_wls1036\profiles\default\sysext_manifest_classpath;C:\Oracle\Middleware\patch_ocp371\profiles\default\sysext_manifest_classpath
    weblogic.management.discover = true
    wli.home = C:\Oracle\Middleware\wlserver_10.3\integration
    wls.home = C:\Oracle\Middleware\wlserver_10.3\myserver
    >
    ####<Nov 14, 2013 5:00:33 PM IST> <Notice> <WebLogicServer> <D-113062615> <myserver> <main> <<WLS Kernel>> <> <> <1384428633981> <BEA-000365> <Server state changed to STANDBY>
    ####<Nov 14, 2013 5:00:33 PM IST> <Notice> <WebLogicServer> <D-113062615> <myserver> <main> <<WLS Kernel>> <> <> <1384428633981> <BEA-000365> <Server state changed to STARTING>
    ####<Nov 14, 2013 5:00:33 PM IST> <Info> <SAFService> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428633997> <BEA-281003> <SAF Service has been initialized.>
    ####<Nov 14, 2013 5:00:33 PM IST> <Info> <SAFService> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428633997> <BEA-281002> <SAF Service has been started.>
    ####<Nov 14, 2013 5:00:33 PM IST> <Info> <WseeCore> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428633997> <BEA-220502> <The Wsee Service is starting>
    ####<Nov 14, 2013 5:00:34 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634013> <BEA-149209> <Resuming.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Warning> <Munger> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634044> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in D:\SPL\YVWDEMO\splapp\applications\SPLService.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Warning> <Munger> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634106> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in D:\SPL\YVWDEMO\splapp\servers\myserver\tmp\_WL_user\SPLService\bil3m2/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634262> <BEA-149059> <Module spl-servicebean-2.2.0.jar of application SPLService is transitioning from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Info> <EJB> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634371> <BEA-010008> <EJB Deploying file: spl-servicebean-2.2.0.jar>
    ####<Nov 14, 2013 5:00:34 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634683> <BEA-149060> <Module spl-servicebean-2.2.0.jar of application SPLService successfully transitioned from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Warning> <Munger> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634683> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in D:\SPL\YVWDEMO\splapp\applications\SPLWeb.ear/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Warning> <Munger> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634715> <BEA-2156203> <A version attribute was not found in element application in the deployment descriptor in D:\SPL\YVWDEMO\splapp\servers\myserver\tmp\_WL_user\SPLWeb\43mrv9/META-INF/application.xml. A version attribute is required, but this version of the Weblogic Server will assume that the JEE5 is used. Future versions of the Weblogic Server will reject descriptors that do not specify the JEE version.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634730> <BEA-149059> <Module /spl of application SPLWeb is transitioning from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Info> <HTTP> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634824> <BEA-101363> <Application: SPLWeb, WebApp: /spl has context-root specified in application.xml: "/spl". The context-root specified in weblogic.xml: "/" will be ignored.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Warning> <HTTP> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634917> <BEA-101304> <Webapp: ServletContext@1804886[app:SPLWeb module:/spl path:/spl spec-version:2.5], the role: cisusers defined in web.xml has not been mapped to principals in security-role-assignment in weblogic.xml. Will use the rolename itself as the principal-name.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634995> <BEA-149060> <Module /spl of application SPLWeb successfully transitioned from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:34 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428634995> <BEA-149059> <Module /spl/XAIApp of application SPLWeb is transitioning from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Warning> <HTTP> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635058> <BEA-101304> <Webapp: ServletContext@25956982[app:SPLWeb module:/spl/XAIApp path:/spl/XAIApp spec-version:2.5], the role: cisusers defined in web.xml has not been mapped to principals in security-role-assignment in weblogic.xml. Will use the rolename itself as the principal-name.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635105> <BEA-149060> <Module /spl/XAIApp of application SPLWeb successfully transitioned from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635105> <BEA-149059> <Module /spl/appViewer of application SPLWeb is transitioning from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635136> <BEA-149060> <Module /spl/appViewer of application SPLWeb successfully transitioned from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635136> <BEA-149059> <Module /spl/help of application SPLWeb is transitioning from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635136> <BEA-149060> <Module /spl/help of application SPLWeb successfully transitioned from STATE_NEW to STATE_PREPARED on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <WebLogicServer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635167> <BEA-000256> <Invoking weblogic.transaction.internal.StartupClass.main(null)>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635167> <BEA-149059> <Module spl-servicebean-2.2.0.jar of application SPLService is transitioning from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <EJB> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-010009> <EJB Deployed EJB with JNDI name spl/servicebean.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-149060> <Module spl-servicebean-2.2.0.jar of application SPLService successfully transitioned from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-149059> <Module /spl of application SPLWeb is transitioning from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-149060> <Module /spl of application SPLWeb successfully transitioned from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-149059> <Module /spl/XAIApp of application SPLWeb is transitioning from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-149060> <Module /spl/XAIApp of application SPLWeb successfully transitioned from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-149059> <Module /spl/appViewer of application SPLWeb is transitioning from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-149060> <Module /spl/appViewer of application SPLWeb successfully transitioned from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-149059> <Module /spl/help of application SPLWeb is transitioning from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:00:35 PM IST> <Info> <Deployer> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428635245> <BEA-149060> <Module /spl/help of application SPLWeb successfully transitioned from STATE_PREPARED to STATE_ADMIN on server myserver.>
    ####<Nov 14, 2013 5:01:50 PM IST> <Warning> <HTTP> <D-113062615> <myserver> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1384428710515> <BEA-101162> <User defined listener com.splwg.base.web.startup.SPLWebStartup failed: com.splwg.shared.common.LoggedException:
    The following stacked messages were reported as the LoggedException was rethrown:
    com.splwg.base.support.context.SessionExecutable.doInReadOnlySession(SessionExecutable.java:79): Error initializing ApplicationContext
    com.splwg.base.support.context.ApplicationContext.createThreadBoundSession(ApplicationContext.java:461): Caught exception from SessionExecutable.execute()
    The root LoggedException was: Error creating hibernate session.
    com.splwg.shared.common.LoggedException:
    The following stacked messages were reported as the LoggedException was rethrown:
    com.splwg.base.support.context.SessionExecutable.doInReadOnlySession(SessionExecutable.java:79): Error initializing ApplicationContext
    com.splwg.base.support.context.ApplicationContext.createThreadBoundSession(ApplicationContext.java:461): Caught exception from SessionExecutable.execute()
    The root LoggedException was: Error creating hibernate session
    at com.splwg.shared.common.LoggedException.wrap(LoggedException.java:198)
    at com.splwg.shared.common.LoggedException.wrap(LoggedException.java:85)
    at com.splwg.base.support.context.ApplicationContext.newHibernateSession(ApplicationContext.java:435)
    at com.splwg.base.support.context.FrameworkSession.initialize(FrameworkSession.java:216)
    at com.splwg.base.support.context.FrameworkSession.<init>(FrameworkSession.java:200)
    at com.splwg.base.support.context.ApplicationContext.createSession(ApplicationContext.java:417)
    at com.splwg.base.support.context.ApplicationContext.createThreadBoundSession(ApplicationContext.java:461)
    at com.splwg.base.support.context.SessionExecutable.doInReadOnlySession(SessionExecutable.java:96)
    at com.splwg.base.support.context.SessionExecutable.doInReadOnlySession(SessionExecutable.java:79)
    at com.splwg.base.support.context.ApplicationContext.initialize(ApplicationContext.java:211)
    at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:114)
    at com.splwg.base.support.context.ContextFactory.createLightweightContext(ContextFactory.java:749)
    at com.splwg.base.web.startup.SPLWebStartup.initializeApplicationContext(SPLWebStartup.java:180)
    at com.splwg.base.web.startup.SPLWebStartup.contextInitialized(SPLWebStartup.java:63)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: org.hibernate.exception.GenericJDBCException: Cannot open connection
    at org.hibernate.exception.SQLStateConverter.handledNonSpecificException(SQLStateConverter.java:103)
    at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:91)
    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
    at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:29)
    at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:426)
    at org.hibernate.jdbc.ConnectionManager.getConnection(ConnectionManager.java:144)
    at org.hibernate.jdbc.BorrowedConnectionProxy.invoke(BorrowedConnectionProxy.java:50)
    at com.sun.proxy.$Proxy48.prepareStatement(Unknown Source)
    at com.splwg.base.support.context.ApplicationContext.setNLSDateFormat(ApplicationContext.java:441)
    at com.splwg.base.support.context.ApplicationContext.newHibernateSession(ApplicationContext.java:428)
    at com.splwg.base.support.context.FrameworkSession.initialize(FrameworkSession.java:216)
    at com.splwg.base.support.context.FrameworkSession.<init>(FrameworkSession.java:200)
    at com.splwg.base.support.context.ApplicationContext.createSession(ApplicationContext.java:417)
    at com.splwg.base.support.context.ApplicationContext.createThreadBoundSession(ApplicationContext.java:461)
    at com.splwg.base.support.context.SessionExecutable.doInReadOnlySession(SessionExecutable.java:96)
    at com.splwg.base.support.context.SessionExecutable.doInReadOnlySession(SessionExecutable.java:79)
    at com.splwg.base.support.context.ApplicationContext.initialize(ApplicationContext.java:211)
    at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:114)
    at com.splwg.base.support.context.ContextFactory.createLightweightContext(ContextFactory.java:749)
    at com.splwg.base.web.startup.SPLWebStartup.initializeApplicationContext(SPLWebStartup.java:180)
    at com.splwg.base.web.startup.SPLWebStartup.contextInitialized(SPLWebStartup.java:63)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: java.sql.SQLException: Connections could not be acquired from the underlying database!
    at com.mchange.v2.sql.SqlUtils.toSQLException(SqlUtils.java:106)
    at com.mchange.v2.c3p0.impl.C3P0PooledConnectionPool.checkoutPooledConnection(C3P0PooledConnectionPool.java:529)
    at com.mchange.v2.c3p0.impl.AbstractPoolBackedDataSource.getConnection(AbstractPoolBackedDataSource.java:128)
    at org.hibernate.connection.C3P0ConnectionProvider.getConnection(C3P0ConnectionProvider.java:56)
    at org.hibernate.jdbc.ConnectionManager.openConnection(ConnectionManager.java:423)
    at org.hibernate.jdbc.ConnectionManager.getConnection(ConnectionManager.java:144)
    at org.hibernate.jdbc.BorrowedConnectionProxy.invoke(BorrowedConnectionProxy.java:50)
    at com.sun.proxy.$Proxy48.prepareStatement(Unknown Source)
    at com.splwg.base.support.context.ApplicationContext.setNLSDateFormat(ApplicationContext.java:441)
    at com.splwg.base.support.context.ApplicationContext.newHibernateSession(ApplicationContext.java:428)
    at com.splwg.base.support.context.FrameworkSession.initialize(FrameworkSession.java:216)
    at com.splwg.base.support.context.FrameworkSession.<init>(FrameworkSession.java:200)
    at com.splwg.base.support.context.ApplicationContext.createSession(ApplicationContext.java:417)
    at com.splwg.base.support.context.ApplicationContext.createThreadBoundSession(ApplicationContext.java:461)
    at com.splwg.base.support.context.SessionExecutable.doInReadOnlySession(SessionExecutable.java:96)
    at com.splwg.base.support.context.SessionExecutable.doInReadOnlySession(SessionExecutable.java:79)
    at com.splwg.base.support.context.ApplicationContext.initialize(ApplicationContext.java:211)
    at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:114)
    at com.splwg.base.support.context.ContextFactory.createLightweightContext(ContextFactory.java:749)
    at com.splwg.base.web.startup.SPLWebStartup.initializeApplicationContext(SPLWebStartup.java:180)
    at com.splwg.base.web.startup.SPLWebStartup.contextInitialized(SPLWebStartup.java:63)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1868)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3154)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1518)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:484)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:59)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal

    Can anyone help me with this...? I am not able to find a solution...
    I have followed all the steps for installation but when the environment tries to start the spl web is not getting deployed... Above is the log file details....
    The web administrator console shows the spl web deployment as failed... Not able to attach the screenshot...
    Would appreciate a quick response, as I have searched and exhausted the internet searches and blogs...

Maybe you are looking for

  • How do I turn off icloud if I don't want to use it

    How do I turn off iCloud if I don't want it on my phone or on my computer

  • Why Are My Apps Not Syncing

    I just updated my iPad software, synced iTunes, and the preview shows the apps on my iPad, but when the sync is complete, I'm not seeing the apps on the iPad.  Secondarily, from iTunes, I can't click "sync apps" when I have the iPad plugged into the

  • Use different portals for authentication and collaboration

    Hello, I would like to request your help on a portal issue. I have installed a dual stack(ABAP+Java) Enterprise Portal (EP 6 - NW 7). The  ABAP stack is required in order to implement user collaboration. However, another requirement is that the users

  • IPad 2 tv show only playing audio

    I recently purchased an episode of The Walking Dead for my iPad 2.  It took a while to download, but finally finished.  The problem is, when I play the video, it just plays audio and shows the picture of TWD for about a minute then stops all together

  • Initialize QTMovie in a child thread by passing Movie object.

    I'm working on an Qt (Qt framework) application in which I'm making use of a .mm file to call MAC specific functions. I need to initialize QTMovie in a child thread by passing Movie object. [QTMovie movieWithQuickTimeMovie:movie disposeWhenDone:TRUE