Webforms  & streaming xml

Hi,
I need to produce a document in xml-format send it from webforms to a servlet which receives the XML request, processes it, and then responds with an XML answer.
The user is running webforms (6i) and invokes the external program from a button - and the communication must be synchronious and transport using datastreams (not files)
I can use the database xml-features to produce the xml
Any suggestions on how to send the request and render the xml-response to the user from forms ?
I havn't seen any sample PJC's for this purpose
Thanks for your thoughts
Per Elmgreen

This sounds very much like a Web Service - if that is what you are trying to call then have a look at the WebService integration demo in Forms 9i - this shows how you can create a client stub for the Web Service in JDeveloper and then use the Java Importer feature to create a PL/SQL wrapper to call the Java and the remote Web Service.
If the thing you are trying to talk to is not a Web Service you can probably still call if from Java Importer code on the middle teir, but you'll have to write the integration code yourself rather than have JDeveloper generate it for you.

Similar Messages

  • Parse streaming XML over a socket

    Is it possible to parse XML incrementally over a socket connection? I would like to parse and respond dyanamically to streaming XML and I am looking for some direction. Everything that I have read so far with respect to parsing XML from files. Thanks in advance

    You will want to look into a SAX parser, they are specifically intended for parsing xml over an input stream. They call callbacks to handle each element that arrives from the socket.
    However, there are a lot of posts about the sax parsers hanging, and I just posted last week trying to find the cause/solution. I've seen a number of solutions posted, but none have worked in my case. No replies to my post yet.
    Steve

  • Streaming XML to a log file

    Hello, I am investigating streaming XML into a log file for my system so that I can tag various elements that will allow for efficient reporting on errors, user events, login states etc.....
    As yet I have found it very unclear as to whether I can do this. I do not wish to build up a DOM or hold any information in memory as I want it written to the file straight away, also is it possible to read it at the same time as it is being written?
    Can anyone give me a bit of guidance or direction to if it is possible to stream xml in this way from a singleton object in my application on the appserver? I am looking at either JDOM or JAXB, is this wise?
    Any help would be invaluable...
    cheers
    Richard

    akpattuka, having tried your run time parameters with plugin 1.4.2, i can tell you that they do not work here either. I have even tried setting -Djavaplugin.trace.option=ext as suggested by online help (not with numbers). Nothing. What does work for me is the following. While running your applet open the console window. Hit 'o' to enable logging, hit '5' to set the trace level. Hit the refresh button inside your browser. This will create a trace file and a log file.
    HTH, Markus

  • Using JSP to stream XML to a Oracle Report .jsp file

    I created some Oracle Reports for a pdf output. Using these reports can I stream a URL XML file to it from a JSP XML read from a database? I would like to use JSP's to read the datbase and then stream the XML to the JSP report (Oracle Report Server). Is this possible?
    Any help would be great.
    Thanks in advance.

    I was able to hard code a URL running XSQL which created XML and it worked great. Then I created a Oracle Report and saved it as a JSP file. With this JSP file can you feed it XML from another JSP process that reads the database? I looked at using something like inputstream coding in this JSP report file. I am new to JSP's and Java so any examples would be great.
    What I am tring to do is change the JSP file with diffent values each time I run the report and I do not want to read from the database at report generation time. I would like to input the data from a JSP streamed process that would stream the XML to the report JSP with out hard coding the URL in the report data source. Is this possible?
    Thanks for your help in advance.

  • Streaming XML file content to a HTTPS servlet..

    Hi,
    I want to stream the contents of a XML file , which I have generated through XDK for PL/SQL, to a HTTPS address for a servlet.
    This HTTPS connections uses certifcates for user authentication. I have the certifcate on my local machine. Is there anyway of doing this through PL/SQL? Are there any packages available in Oracle 8.1.6 for this purpose? Can somebody tell me if there is a better way of doing this?
    Any help will be greatly appreciated.
    Thanks.

    After some additional trials I found a solution by calling the stored procedure in this way
    DBSetAttributeDefault (hdbc, ATTR_DB_COMMAND_TYPE, DB_COMMAND_STORED_PROC);
    DBPrepareSQL (hdbc, "usp_InsertReport");
    DBCreateParamInt (hstmt, "", DB_PARAM_RETURN_VALUE, -1);
    DBCreateParamChar (hstmt, "XMLCONTENT", DB_PARAM_INPUT, sz_Buffer, (int) strlen(sz_Buffer) + 1 );
    DBExecutePreparedSQL (hstmt);
    DBClosePreparedSQL (hstmt);
    DBGetParamInt (hstmt, 1, &s32_TestId);
    where sz_Buffer is my xml file content and s32_TestID the return value of the stored procdure (usp_InsertReport(@XMLCONTENT XML))
    Now I face the problem, that DBCreateParamChar limits the buffer size to 8000 Bytes.
    Any idea to by-pass this shortage??

  • Runtime error in "Stream XML/HTML into J2EE and Web Services Applications"

    javax.naming.NameNotFoundException: oraclestoreejb not found
         java.lang.Object com.evermind.server.rmi.RMIContext.lookup(java.lang.String)
              RMIContext.java:130
    After following step by step a least 2 times the documentation :
    http://otn.oracle.com/tech/webservices/htdocs/series/streams/content.html
    At the point "23" when I run the application I receive the following error:
         java.lang.Object javax.naming.InitialContext.lookup(java.lang.String)
              InitialContext.java:350
         void oraclestoreClient.main(java.lang.String[])
              oraclestoreClient.java:54
    Process exited with exit code 0.
    What is wrong with the installation?

    After installing the example 2 times reading the documentation, I decided to see the Real player film that should be the same. Astonished I found out that the runtime error came as expectec from 2 missing libraries that are only presented at the video and not at the HTML version (ITEM 21).
    Quite all the example I tryed from Web Services does not work like described. Is it on purpose?

  • Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/stream

    I am trying to develop a web service client for amazon webservice.but i am getting this error while running the app. Can anyone please help me. I have installed the JWSDP and but could not understand why i have to locate all the jar files in the classpath?Please help.
    ===== error=========================================
    C:\abr\classes>java -classpath c:\abr\test.jar;C:\abr\jaxrpc-api.jar;C:\abr\jaxrpc-impl.jar;C:\abr\jaxrpc-spi.jar;c:\abr\classes\amazon.jar;C:\abr\mail.jar;C:\a
    br\saaj-api.jar;C:\abr\activation.jar;c:\abr\FastInfoset.jar;%classpath% Client
    [b]Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/stream/XMLS
    treamWriter
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at com.sun.xml.rpc.client.StreamingSender._writeRequest(StreamingSender.
    java:672)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:87)
    at amazon.AmazonSearchPort_Stub.authorSearchRequest(AmazonSearchPort_Stu
    b.java:988)
    at Client.main(Client.java:21)

    I'm assuming you're using JWSDP 1.6 as I see Fastinfoset.jar in your list. You are missing some jar files in your classpath there. The best way to know what you need is to look at the release notes for JWSDP 1.6. Since you're building a web serivce start with the table in there and lookup JAX-RPC. It'll show you what jar files are needed and what other libraries are needed. Now depending on what you're doing you don't really need all those.
    For sure you're missing jsr173_api.jar which is where I believe that class you need is located. This is in the JWSDP_1_6\sjsxp\lib directory. You will probably need the other jar thats in there too. Best bet is to follow the dependancy chart in the release notes.
    This should get you going.
    Ryan

  • XML Streaming to LabVIEW

    How could I input a streaming XML data set into LabVIEW? The XML data are measurements from an Xtorr mass spectrometer. Any help would be greatly appreciated.

    physicalchem wrote:
    How could I input a streaming XML data set into LabVIEW? The XML data are measurements from an Xtorr mass spectrometer. Any help would be greatly appreciated.
    Does your Mass Spec "spit out" XML?  An XML file has a particular structure, with required elements at the beginning and the end.  If your instrument is, indeed, spitting out what will eventually be a "legal" XML file, just over a period of time (minutes/hours), and you want to capture it all (in LabVIEW) and analyze it, that shouldn't be so difficult.  It's just text, for goodness sake -- read in text from the device when it's present, then turn around and write it to your (previously-opened) output file.
    Once all the data have been written and the file has been closed, you should have a "legal XML" file that you can then re-open with LabVIEW and parse to get the data out of it.
    If, on the other hand, you want to extract the XML data "on the fly" as it's coming in, this is a bit more difficult.  There are some packages that can probably do this (particularly if you know the expected structure of the XML data, and can "cheat" a bit in your code).  You might want to take a look at NI GXML, available (for free) from NI using the VI Package Manager (installed with LabVIEW 2013, or downloaded from the Web) -- you may be able to adapt some of their routines for your use.

  • Defining XSLT from Abap to XML and XML to Abap (Internal Table)

    Hi Experts, I need help with this XSLT for call transformation. I have defined an internal table and intend to use it as a source for Call Tranformation. But I have a Problem defining its XSLT and help would be greatly appreciated! I also wonder if this XSLT can be used for XML to internal table? Or do I have to define another XSLT again.... Hope to hear from any of u soon!
    CODES->>>
    TYPES: BEGIN OF CONTENT,
             CONTENT1(20),
             CONTENT2(20),
           END OF CONTENT.
    TYPES: T_CONTENT TYPE TABLE OF CONTENT.
    DATA: BEGIN OF I_DATA OCCURS 0,
            KEY1(10),
            KEY2(10),
            CONT TYPE T_CONTENT,
          END OF I_DATA.
    DATA: WA_TBL TYPE CONTENT.
    DATA: LI_TBL TYPE T_CONTENT.
    START-OF-SELECTION.
    populate data 1
      CLEAR I_DATA.
      I_DATA-KEY1 = 'AMI'.
      I_DATA-KEY2 = 'LEE'.
      CLEAR WA_TBL.
      REFRESH LI_TBL.
      WA_TBL-CONTENT1 = 'PENHAS ROAD'.
      WA_TBL-CONTENT2 = 'SG'.
      APPEND WA_TBL TO LI_TBL.
      WA_TBL-CONTENT1 = 'GILLMAN ROAD'.
      WA_TBL-CONTENT2 = 'SG'.
      APPEND WA_TBL TO LI_TBL.
      I_DATA-CONT = LI_TBL.
      APPEND I_DATA.
    populate data 1
      CLEAR I_DATA.
      I_DATA-KEY1 = 'KAI'.
      I_DATA-KEY2 = 'LEE'.
      CLEAR WA_TBL.
      REFRESH LI_TBL.
      WA_TBL-CONTENT1 = 'SUNSET WAY'.
      WA_TBL-CONTENT2 = 'SG'.
      APPEND WA_TBL TO LI_TBL.
      WA_TBL-CONTENT1 = 'BEDOK NORTH'.
      WA_TBL-CONTENT2 = 'SG'.
      APPEND WA_TBL TO LI_TBL.
      I_DATA-CONT = LI_TBL.
      APPEND I_DATA.
    call transformation (xslt)
        source i_data = i_data
        result xml xmlstr.

    here is the code sample using ixml library .
    just create a report program and copy paste the following code.
    if time permits, later on i will post the xslt program which you can use it call transformation.
    REPORT  y_test_xml.
    DATA: l_ixml                                 TYPE REF TO if_ixml,
            l_ixml_sf                              TYPE REF TO if_ixml_stream_factory,
            l_istream                              TYPE REF TO if_ixml_istream,
            l_ostream                              TYPE REF TO if_ixml_ostream,
            l_booklist                   TYPE REF TO if_ixml_element,
            l_document                             TYPE REF TO if_ixml_document,
            l_parser                               TYPE REF TO if_ixml_parser,
            l_root_element                         TYPE REF TO if_ixml_element,
            l_book_record                            TYPE REF TO if_ixml_element,
            l_date TYPE REF TO if_ixml_element ,
                    l_time TYPE REF TO if_ixml_element ,
            l_book_group                            TYPE REF TO if_ixml_element,
            l_book_cat                            TYPE REF TO if_ixml_element ,
            others                                  TYPE REF TO if_ixml_element ,
            link                                    TYPE REF TO if_ixml_element ,
            description                            TYPE REF TO if_ixml_element ,
            xml                                    TYPE xstring ,
            size TYPE  i ,
             l_xml  TYPE REF TO cl_xml_document  .
    DATA: xml_out TYPE string ,
          temp_string TYPE string .
    TYPES: BEGIN OF add_category,
    category_id(10),
    category_desc(40),
    END OF add_category,
    add_t_category TYPE add_category OCCURS 0 .
    TYPES: BEGIN OF add_book_grp,
    book_category TYPE add_t_category,
    END OF add_book_grp,
    add_t_book_grp TYPE add_book_grp OCCURS 0.
    TYPES: BEGIN OF add_book,
    book_num(10) TYPE c,
    short_desc(40) TYPE c,
    book_group TYPE add_t_book_grp,
    END OF add_book,
    add_t_book TYPE add_book OCCURS 0.
    TYPES: BEGIN OF type_data,
    date TYPE sy-datum,
    time TYPE sy-uzeit,
    book_record TYPE add_t_book,
    END OF type_data.
    DATA: i_data TYPE type_data OCCURS 0 WITH HEADER LINE.
    DATA: itab LIKE soli OCCURS 0 WITH HEADER LINE.
    DATA: cat_wa TYPE add_category ,
          bk_gp_wa TYPE add_book_grp ,
          bk_rec_wa TYPE add_book ,
          bk_wa LIKE LINE OF i_data .
    DATA: cat_tab TYPE STANDARD TABLE OF add_category ,
          bk_gp_tab TYPE STANDARD TABLE OF add_book_grp ,
          bk_rec_tab TYPE STANDARD TABLE OF add_book .
    MOVE: '03' TO cat_wa-category_id  ,
          ' BK GP 3' TO cat_wa-category_desc .
    APPEND cat_wa TO cat_tab .
    MOVE: '02' TO cat_wa-category_id  ,
          ' BK GP 2' TO cat_wa-category_desc .
    APPEND cat_wa TO cat_tab .
    bk_gp_wa-book_category  = cat_tab.
    APPEND bk_gp_wa TO bk_gp_tab .
    MOVE: '0012345678' TO bk_rec_wa-book_num ,
          'OMS book' TO bk_rec_wa-short_desc .
    bk_rec_wa-book_group = bk_gp_tab .
    APPEND bk_rec_wa TO bk_rec_tab .
    CLEAR:bk_gp_tab, cat_tab .
    REFRESH :bk_gp_tab, cat_tab .
    MOVE: '01' TO cat_wa-category_id  ,
          ' BK GP 1' TO cat_wa-category_desc .
    APPEND cat_wa TO cat_tab .
    MOVE: '09' TO cat_wa-category_id  ,
          ' BK GP 9' TO cat_wa-category_desc .
    APPEND cat_wa TO cat_tab .
    bk_gp_wa-book_category  = cat_tab.
    APPEND bk_gp_wa TO bk_gp_tab .
    MOVE: '00123456789' TO bk_rec_wa-book_num ,
          'SAP book' TO bk_rec_wa-short_desc .
    bk_rec_wa-book_group = bk_gp_tab .
    APPEND bk_rec_wa TO bk_rec_tab .
    MOVE: sy-datum TO bk_wa-date ,
          sy-uzeit TO bk_wa-time .
    bk_wa-book_record = bk_rec_tab .
    APPEND bk_wa TO i_data .
    CLEAR: cat_wa , bk_gp_wa ,bk_rec_wa , bk_wa .
    l_ixml = cl_ixml=>create( ).
    l_ixml_sf = l_ixml->create_stream_factory( ).
    l_document = l_ixml->create_document( ).
    l_root_element = l_document->create_element( name = 'asx:abap' ).
    l_root_element->set_attribute( name = 'xmlns:asx' value = 'http://www.sap.com/abapxml' ) .
    l_root_element->set_attribute( name = 'version' value = '1.0' ).
    l_document->append_child( new_child = l_root_element ).
    others = l_document->create_simple_element( parent = l_root_element name = 'asx:values' ).
    l_booklist = l_document->create_simple_element( parent = others name = 'BOOKLIST' ).
    LOOP AT i_data INTO bk_wa .
      CLEAR temp_string .
      MOVE: bk_wa-date TO temp_string .
      l_date = l_document->create_simple_element( parent = l_booklist name = 'DATE' value = temp_string  ).
      CLEAR temp_string .
      MOVE: bk_wa-time TO temp_string .
      l_time = l_document->create_simple_element( parent = l_booklist name = 'TIME' value = temp_string ).
      LOOP AT bk_wa-book_record INTO bk_rec_wa .
        l_book_record = l_document->create_simple_element( parent = l_booklist name = 'BOOK_RECORD' ) .
        CLEAR temp_string .
        MOVE: bk_rec_wa-book_num TO temp_string .
        l_date = l_document->create_simple_element( parent = l_book_record name = 'BOOK_NUM' value = temp_string ).
        CLEAR temp_string .
        MOVE: bk_rec_wa-short_desc TO temp_string .
        l_time = l_document->create_simple_element( parent = l_book_record name = 'SHORT_DESC' value = temp_string ).
        l_book_group = l_document->create_simple_element( parent = l_book_record name = 'BOOK_GROUP' ).
        LOOP AT bk_rec_wa-book_group INTO bk_gp_wa .
          LOOP AT bk_gp_wa-book_category INTO cat_wa .
            l_book_cat = l_document->create_simple_element( parent = l_book_group name = 'BOOK_CATEGORY' ).
            CLEAR temp_string .
            MOVE: cat_wa-category_id TO temp_string .
            l_date = l_document->create_simple_element( parent = l_book_cat name = 'CATEGORY_ID' value = temp_string ).
            CLEAR temp_string .
            MOVE: cat_wa-category_desc TO temp_string .
            l_time = l_document->create_simple_element( parent = l_book_cat name = 'CATEGORY_DESC' value = temp_string ).
          ENDLOOP .
        ENDLOOP .
      ENDLOOP .
    ENDLOOP .
    l_ostream = l_ixml_sf->create_ostream_xstring( xml ).
    l_document->render( ostream = l_ostream ).
    CREATE OBJECT l_xml.
    CALL METHOD l_xml->parse_xstring
      EXPORTING
        stream = xml.
    l_xml->render_2_string(
      EXPORTING
        pretty_print = 'X'
      IMPORTING
    *    RETCODE      = RETCODE
        stream       = xml_out
        size         = size
    CALL METHOD l_xml->display.
    Hope this is helpful.
    do let us know how it goes.
    Regards
    Raja

  • XML rendering in IE and Netscape

    Hi all,
    I have a simple servlet that streams xml data to the browser. When I view the page in IE it is formatted in the DHTML tree structure but with Netscape 7 it is messed up. However when I open an xml document directly in Netscape, it works! My JSP page has an IFrame that streams the XML data. Can someone let me know why XML rendering does not work in Netscape but in IE? Do I need to set some browser specific parameter in my servlet?
    Many thanks
    clementv

    Hi,
    Iam setting the content type as 'text/xml'.
              byte[] bytedata = null;
              resp.setContentType(CONTENT_TYPE);
                   if (mBean != null && mBean.getParsedXMLContent() != null ) {
                        bytedata = mBean.getParsedXMLContent().getBytes();
                        //Create Servlet Output Stream
                        sos = resp.getOutputStream();
                        sos.write(bytedata);
                   }

  • JAXB on a never-ending stream.

    Hi.
    Would it be considered possible to use JAXB to parse a never-ending stream of XML? For instance...
    <foo:foo xmlns="some:namespace">
        <bar> ... </bar>
        <bar> ... </bar>
        <bar> ... </bar>
        <bar> ... </bar>
        <bar> ... </bar>
        ... continues for eternity ...
    </foo:foo>Each time I parse a chunk I want to get one 'bar' element only. Namespaces dropped into 'foo' would have to correctly affect these individual documents, so simply consuming the first bit of the stream and asking it to parse multiple times is probably the wrong approach. :-)
    And of course somewhere I would need to output the damn things again, and again with correct namespaces. So maybe it is too hard afterall.

    I'm not sure if this is what crowse was suggesting, but you could potentially use a SAXParser to get the discreet <bar></bar> events and pump that to an Unmarshaller to return objects to you. You'll want to turn off validation on the Unmarshaller, since you've already been through that once with the SAXParser.
    If you're interested in parsing streaming XML using JAXB, another alternative is to alter your protocol so that your repeating element is a toplevel element. You can then prefix the element length to the XML. This should allow you to quickly find the end of the element without having to actively parse it. You can then feed that packet to the Unmarshaller.
    -S

  • [solved] Which disowned files are safe to be removed?

    Hello,
    I wanted to clean up my system and used the script from here [1] to search for all disowned files. Obviously not all of them are safe to be removed.
    Which of the following files can be safely removed?
    /etc/adjtime
    /etc/fonts/conf.d/37-repl-global-free.conf
    /etc/fonts/conf.d/60-latin-free.conf
    /etc/fonts/conf.d/65-non-latin-free.conf
    /etc/fonts/conf.d/66-aliases-wine-free.conf
    /etc/fonts/conf.d/93-final-lang-spec-free.conf
    /etc/group-
    /etc/gshadow-
    /etc/hostname
    /etc/ld.so.cache
    /etc/locale.conf
    /etc/localtime
    /etc/machine-id
    /etc/pacman.d/gnupg/
    /etc/pacman.d/gnupg/gpg.conf
    /etc/pacman.d/gnupg/pubring.gpg
    /etc/pacman.d/gnupg/pubring.gpg~
    /etc/pacman.d/gnupg/random_seed
    /etc/pacman.d/gnupg/secring.gpg
    /etc/pacman.d/gnupg/trustdb.gpg
    /etc/pango/pango.modules
    /etc/pango/pango.modules-32
    /etc/passwd-
    /etc/.pwd.lock
    /etc/shadow-
    /etc/skel/.cache/
    /etc/skel/.cache/chromium/
    /etc/skel/.cache/dconf/
    /etc/skel/.cache/dconf/user
    /etc/skel/.cache/event-sound-cache.tdb.Cinnarch.i686-pc-linux-gnu
    /etc/skel/.cache/gnome-control-center/
    /etc/skel/.cache/gnome-control-center/backgrounds/
    /etc/skel/.cache/gnome-control-center/backgrounds/e4f6ef8a8d8207a9ee614d1a47ed0aa1fbb370977a8f0c16ae57ad053cf3259f
    /etc/skel/.cache/gvfs-burn/
    /etc/skel/.cache/wallpaper/
    /etc/skel/.cache/wallpaper/0_5_1440_900_32bd62800dca3da9b2b33f3d2c8168e1
    /etc/skel/.config/
    /etc/skel/.config/chromium/
    /etc/skel/.config/chromium/chrome_shutdown_ms.txt
    /etc/skel/.config/chromium/Default/
    /etc/skel/.config/chromium/Default/Archived History
    /etc/skel/.config/chromium/Default/Archived History-journal
    /etc/skel/.config/chromium/Default/Bookmarks
    /etc/skel/.config/chromium/Default/Cookies
    /etc/skel/.config/chromium/Default/Cookies-journal
    /etc/skel/.config/chromium/Default/Current Session
    /etc/skel/.config/chromium/Default/Current Tabs
    /etc/skel/.config/chromium/Default/Extensions/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/Cached Theme.pak
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/back.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/Frame.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/theme_button_background.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/theme_tab_background.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/images/theme_toolbar.png
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ar/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ar/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/bg/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/bg/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/bn/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/bn/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ca/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ca/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/cs/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/cs/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/da/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/da/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/de/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/de/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/el/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/el/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/en/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/en_GB/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/en_GB/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/en/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/es/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/es_419/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/es_419/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/es/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/et/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/et/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fi/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fil/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fil/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fi/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/fr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/gu/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/gu/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hi/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hi/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hu/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/hu/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/id/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/id/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/it/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/it/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/iw/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/iw/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ja/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ja/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/kn/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/kn/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ko/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ko/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/lt/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/lt/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/lv/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/lv/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ml/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ml/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/mr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/mr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/nl/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/nl/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/no/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/no/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/or/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/or/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pl/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pl/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pt_BR/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pt_BR/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pt_PT/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/pt_PT/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ro/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ro/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ru/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ru/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sk/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sk/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sl/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sl/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sv/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/sv/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ta/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/ta/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/te/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/te/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/th/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/th/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/tr/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/tr/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/uk/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/uk/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/vi/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/vi/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_CN/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_CN/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_HK/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_HK/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_TW/
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/_locales/zh_TW/messages.json
    /etc/skel/.config/chromium/Default/Extensions/hfjhlpgahgkpncekpdkgfoeppikldble/19.7_0/manifest.json
    /etc/skel/.config/chromium/Default/Favicons
    /etc/skel/.config/chromium/Default/Favicons-journal
    /etc/skel/.config/chromium/Default/History-journal
    /etc/skel/.config/chromium/Default/History Provider Cache
    /etc/skel/.config/chromium/Default/Local Storage/
    /etc/skel/.config/chromium/Default/Local Storage/https_chrome.google.com_0.localstorage
    /etc/skel/.config/chromium/Default/Local Storage/https_chrome.google.com_0.localstorage-journal
    /etc/skel/.config/chromium/Default/Login Data
    /etc/skel/.config/chromium/Default/Login Data-journal
    /etc/skel/.config/chromium/Default/Network Action Predictor
    /etc/skel/.config/chromium/Default/Network Action Predictor-journal
    /etc/skel/.config/chromium/Default/Preferences
    /etc/skel/.config/chromium/Default/README
    /etc/skel/.config/chromium/Default/Shortcuts
    /etc/skel/.config/chromium/Default/Shortcuts-journal
    /etc/skel/.config/chromium/Default/Top Sites
    /etc/skel/.config/chromium/Default/Top Sites-journal
    /etc/skel/.config/chromium/Default/User StyleSheets/
    /etc/skel/.config/chromium/Default/User StyleSheets/Custom.css
    /etc/skel/.config/chromium/Default/Web Data
    /etc/skel/.config/chromium/Default/Web Data-journal
    /etc/skel/.config/chromium/Dictionaries/
    /etc/skel/.config/chromium/First Run
    /etc/skel/.config/chromium/Local State
    /etc/skel/.config/chromium/Safe Browsing Bloom_new
    /etc/skel/.config/chromium/Safe Browsing Cookies
    /etc/skel/.config/chromium/Safe Browsing Cookies-journal
    /etc/skel/.config/chromium/Safe Browsing Csd Whitelist_new
    /etc/skel/.config/chromium/Safe Browsing Download_new
    /etc/skel/.config/chromium/Safe Browsing Download Whitelist_new
    /etc/skel/.config/chromium/Service State
    /etc/skel/.config/chromium/Temp/
    /etc/skel/.config/dconf/
    /etc/skel/.config/dconf/user
    /etc/skel/.config/eog/
    /etc/skel/.config/eog/accels
    /etc/skel/.config/gnome-control-center/
    /etc/skel/.config/gnome-control-center/backgrounds/
    /etc/skel/.config/gnome-control-center/backgrounds/last-edited.xml
    /etc/skel/.config/gnome-session/
    /etc/skel/.config/gnome-session/saved-session/
    /etc/skel/.config/gtk-2.0/
    /etc/skel/.config/gtk-2.0/gtkfilechooser.ini
    /etc/skel/.config/marlin/
    /etc/skel/.config/marlin/marlin.db
    /etc/skel/.config/nautilus/
    /etc/skel/.config/yad.conf
    /etc/skel/.gconf/
    /etc/skel/.gconf/apps/
    /etc/skel/.gconf/apps/%gconf.xml
    /etc/skel/.gconf/apps/gnome-terminal/
    /etc/skel/.gconf/apps/gnome-terminal/%gconf.xml
    /etc/skel/.gconf/apps/gnome-terminal/profiles/
    /etc/skel/.gconf/apps/gnome-terminal/profiles/Default/
    /etc/skel/.gconf/apps/gnome-terminal/profiles/Default/%gconf.xml
    /etc/skel/.gconf/apps/gnome-terminal/profiles/%gconf.xml
    /etc/skel/.gconf/apps/nm-applet/
    /etc/skel/.gconf/apps/nm-applet/%gconf.xml
    /etc/skel/.gconf/desktop/
    /etc/skel/.gconf/desktop/gnome/
    /etc/skel/.gconf/desktop/gnome/background/
    /etc/skel/.gnome2/
    /etc/skel/.gnome2/keyrings/
    /etc/skel/.gnome2/nautilus-scripts/
    /etc/skel/.local/
    /etc/skel/.local/share/
    /etc/skel/.local/share/applications/
    /etc/skel/.local/share/applications/mimeapps.list
    /etc/skel/.local/share/cinnamon/
    /etc/skel/.local/share/cinnamon/applets/
    /etc/skel/.local/share/cinnamon/application_state
    /etc/skel/.local/share/cinnamon/extensions/
    /etc/skel/.local/share/.converted-launchers
    /etc/skel/.local/share/gsettings-data-convert
    /etc/skel/.local/share/gvfs-metadata/
    /etc/skel/.local/share/gvfs-metadata/home
    /etc/skel/.local/share/gvfs-metadata/home-dde772a5.log
    /etc/skel/.local/share/icc/
    /etc/skel/.local/share/icc/edid-4c41850672de5b0d465aaecce47e1ff0.icc
    /etc/skel/.local/share/icc/edid-5329f3f05df0972eed9378954fd31ae2.icc
    /etc/skel/.local/share/icc/edid-88edfa5ccddfd398ceb0472aad4890d9.icc
    /etc/skel/.local/share/Trash/
    /etc/skel/.local/share/Trash/expunged/
    /etc/skel/.local/share/Trash/files/
    /etc/skel/.local/share/Trash/info/
    /etc/sysctl.d/99-sysctl.conf
    /etc/systemd/system/auditd.service
    /etc/systemd/system/dbus-org.freedesktop.ModemManager1.service
    /etc/systemd/system/dbus-org.freedesktop.NetworkManager.service
    /etc/systemd/system/dbus-org.freedesktop.thermald.service
    /etc/systemd/system/default.target.wants/
    /etc/systemd/system/default.target.wants/asd-resync.service
    /etc/systemd/system/default.target.wants/psd-resync.service
    /etc/systemd/system/display-manager.service
    /etc/systemd/system/[email protected]
    /etc/systemd/system/getty.target.wants/
    /etc/systemd/system/getty.target.wants/[email protected]
    /etc/systemd/system/graphical.target.wants/
    /etc/systemd/system/graphical.target.wants/tlp.service
    /etc/systemd/system/local-fs.target.wants/
    /etc/systemd/system/local-fs.target.wants/tlp.service
    /etc/systemd/system/multi-user.target.wants/asd.service
    /etc/systemd/system/multi-user.target.wants/crashplan.service
    /etc/systemd/system/multi-user.target.wants/hdapsd.service
    /etc/systemd/system/multi-user.target.wants/NetworkManager.service
    /etc/systemd/system/multi-user.target.wants/ntpd.service
    /etc/systemd/system/multi-user.target.wants/psd.service
    /etc/systemd/system/multi-user.target.wants/setkeycodes.service
    /etc/systemd/system/multi-user.target.wants/thermald.service
    /etc/systemd/system/plymouth-quit-wait.service
    /etc/systemd/system/plymouth-start.service
    /etc/systemd/system/powersaving.service
    /etc/systemd/system/setkeycodes.service
    /etc/systemd/system/sleep.target.wants/
    /etc/systemd/system/sleep.target.wants/tlp-sleep.service
    /etc/systemd/system/syslog.service
    /etc/systemd/system/syslog.target
    /etc/texmf/ls-R
    /etc/udev/hwdb.bin
    /etc/X11/xorg.conf.d/00-keyboard.conf
    /etc/X11/xorg.conf.d/20-intel.conf
    /etc/X11/xorg.conf.d/99-calibration.conf
    /etc/xdg/gtk-2.0/
    /etc/xml/catalog
    /usr/bin/pacman-boot
    /usr/bin/populate
    /usr/bin/rdmsr
    /usr/bin/update_rubygems
    /usr/bin/wrmsr
    /usr/lib32/gdk-pixbuf-2.0/2.10.0/loaders.cache
    /usr/lib32/gtk-2.0/2.10.0/immodules.cache
    /usr/lib32/libffi-3.0.12/
    /usr/lib32/libffi-3.0.12/include/
    /usr/lib32/libffi-3.0.12/include/ffi.h
    /usr/lib32/libffi-3.0.12/include/ffitarget.h
    /usr/lib/avahi/service-types.db.pacsave
    /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
    /usr/lib/gio/modules/giomodule.cache
    /usr/lib/gtk-2.0/2.10.0/immodules.cache
    /usr/lib/gtk-3.0/3.0.0/immodules.cache
    /usr/lib/locale/locale-archive
    /usr/lib/modules/3.7.10-1-ARCH/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/arch/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/arch/x86
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/acpi
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/base
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/block
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/bus
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/char
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/dca
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/dma/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/dma/ioat
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/md/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/pcmcia
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/staging/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/drivers/target
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/affs
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/jbd2
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/jffs2
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/lockd
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/logfs
    /usr/lib/modules/3.7.10-1-ARCH/kernel/fs/ufs
    /usr/lib/modules/3.7.10-1-ARCH/kernel/kernel/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/sound/
    /usr/lib/modules/3.7.10-1-ARCH/kernel/sound/drivers
    /usr/lib/modules/extramodules-3.11-ARCH/phc-intel.ko
    /usr/lib/systemd/system/first-boot.service
    /usr/lib/systemd/system/pacman-init.service
    /usr/lib/systemd/system-sleep/00powersave
    /usr/lib/systemd/system-sleep/tpm.sh
    /usr/lib/tmpfiles.d/transmission.conf.backup
    /usr/share/applications/mimeinfo.cache
    /usr/share/fonts/local/
    /usr/share/fonts/local/fonts.dir
    /usr/share/fonts/local/fonts.scale
    /usr/share/fonts/misc/fonts.dir
    /usr/share/fonts/misc/fonts.scale
    /usr/share/fonts/OTF/fonts.dir
    /usr/share/fonts/OTF/fonts.scale
    /usr/share/fonts/TTF/fonts.dir
    /usr/share/fonts/TTF/fonts.scale
    /usr/share/fonts/Type1/fonts.dir
    /usr/share/fonts/Type1/fonts.scale
    /usr/share/gdb/python/gdb/command/explore.pyc
    /usr/share/gdb/python/gdb/command/__init__.pyc
    /usr/share/gdb/python/gdb/command/pretty_printers.pyc
    /usr/share/gdb/python/gdb/command/prompt.pyc
    /usr/share/gdb/python/gdb/prompt.pyc
    /usr/share/glib-2.0/gdb/glib.pyc
    /usr/share/glib-2.0/gdb/gobject.pyc
    /usr/share/glib-2.0/schemas/gschemas.compiled
    /usr/share/gtk-doc/html/gtk2/AbstractObje....html
    /usr/share/icons/gnome/icon-theme.cache
    /usr/share/icons/hicolor/icon-theme.cache
    /usr/share/info/dir
    /usr/share/libgphoto2/
    /usr/share/libgphoto2/asus_oled.ko.gz
    /usr/share/locale/en@cyrillic/
    /usr/share/locale/en@cyrillic/LC_MESSAGE?
    /usr/share/mime/aliases
    /usr/share/mime/application/
    /usr/share/mime/application/andrew-inset.xml
    /usr/share/mime/application/annodex.xml
    /usr/share/mime/application/atom+xml.xml
    /usr/share/mime/application/dicom.xml
    /usr/share/mime/application/ecmascript.xml
    /usr/share/mime/application/epub+zip.xml
    /usr/share/mime/application/font-woff.xml
    /usr/share/mime/application/gml+xml.xml
    /usr/share/mime/application/gnunet-directory.xml
    /usr/share/mime/application/gzip.xml
    /usr/share/mime/application/illustrator.xml
    /usr/share/mime/application/javascript.xml
    /usr/share/mime/application/mac-binhex40.xml
    /usr/share/mime/application/mathematica.xml
    /usr/share/mime/application/mathml+xml.xml
    /usr/share/mime/application/mbox.xml
    /usr/share/mime/application/metalink4+xml.xml
    /usr/share/mime/application/metalink+xml.xml
    /usr/share/mime/application/msword-template.xml
    /usr/share/mime/application/msword.xml
    /usr/share/mime/application/mxf.xml
    /usr/share/mime/application/nemo-action.xml
    /usr/share/mime/application/octet-stream.xml
    /usr/share/mime/application/oda.xml
    /usr/share/mime/application/ogg.xml
    /usr/share/mime/application/oxps.xml
    /usr/share/mime/application/pdf.xml
    /usr/share/mime/application/pgp-encrypted.xml
    /usr/share/mime/application/pgp-keys.xml
    /usr/share/mime/application/pgp-signature.xml
    /usr/share/mime/application/pkcs10.xml
    /usr/share/mime/application/pkcs7-mime.xml
    /usr/share/mime/application/pkcs7-signature.xml
    /usr/share/mime/application/pkcs8.xml
    /usr/share/mime/application/pkix-cert.xml
    /usr/share/mime/application/pkix-crl.xml
    /usr/share/mime/application/pkix-pkipath.xml
    /usr/share/mime/application/postscript.xml
    /usr/share/mime/application/prs.plucker.xml
    /usr/share/mime/application/ram.xml
    /usr/share/mime/application/rdf+xml.xml
    /usr/share/mime/application/relax-ng-compact-syntax.xml
    /usr/share/mime/application/rss+xml.xml
    /usr/share/mime/application/rtf.xml
    /usr/share/mime/application/sdp.xml
    /usr/share/mime/application/sieve.xml
    /usr/share/mime/application/smil.xml
    /usr/share/mime/application/vnd.android.package-archive.xml
    /usr/share/mime/application/vnd.apple.mpegurl.xml
    /usr/share/mime/application/vnd.corel-draw.xml
    /usr/share/mime/application/vnd.emusic-emusic_package.xml
    /usr/share/mime/application/vnd.google-earth.kml+xml.xml
    /usr/share/mime/application/vnd.google-earth.kmz.xml
    /usr/share/mime/application/vnd.hp-hpgl.xml
    /usr/share/mime/application/vnd.hp-pcl.xml
    /usr/share/mime/application/vnd.iccprofile.xml
    /usr/share/mime/application/vnd.insync.link.drive.doc.xml
    /usr/share/mime/application/vnd.insync.link.drive.draw.xml
    /usr/share/mime/application/vnd.insync.link.drive.form.xml
    /usr/share/mime/application/vnd.insync.link.drive.link.xml
    /usr/share/mime/application/vnd.insync.link.drive.note.xml
    /usr/share/mime/application/vnd.insync.link.drive.script.xml
    /usr/share/mime/application/vnd.insync.link.drive.sheet.xml
    /usr/share/mime/application/vnd.insync.link.drive.slides.xml
    /usr/share/mime/application/vnd.insync.link.drive.table.xml
    /usr/share/mime/application/vnd.lotus-1-2-3.xml
    /usr/share/mime/application/vnd.lotus-wordpro.xml
    /usr/share/mime/application/vnd.mozilla.xul+xml.xml
    /usr/share/mime/application/vnd.ms-access.xml
    /usr/share/mime/application/vnd.ms-cab-compressed.xml
    /usr/share/mime/application/vnd.ms-excel.addin.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.sheet.binary.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.sheet.binary.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.sheet.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.sheet.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.template.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.template.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-excel.xml
    /usr/share/mime/application/vnd.ms-htmlhelp.xml
    /usr/share/mime/application/vnd.ms-powerpoint.addin.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.presentation.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.presentation.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.slide.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.slideshow.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.template.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.template.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-powerpoint.xml
    /usr/share/mime/application/vnd.ms-tnef.xml
    /usr/share/mime/application/vnd.ms-word.document.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-word.document.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-word.template.macroenabled.12.xml
    /usr/share/mime/application/vnd.ms-word.template.macroEnabled.12.xml
    /usr/share/mime/application/vnd.ms-word.xml
    /usr/share/mime/application/vnd.ms-works.xml
    /usr/share/mime/application/vnd.ms-wpl.xml
    /usr/share/mime/application/vnd.oasis.opendocument.chart-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.chart.xml
    /usr/share/mime/application/vnd.oasis.opendocument.database.xml
    /usr/share/mime/application/vnd.oasis.opendocument.formula-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.formula.xml
    /usr/share/mime/application/vnd.oasis.opendocument.graphics-flat-xml.xml
    /usr/share/mime/application/vnd.oasis.opendocument.graphics-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.graphics.xml
    /usr/share/mime/application/vnd.oasis.opendocument.image.xml
    /usr/share/mime/application/vnd.oasis.opendocument.presentation-flat-xml.xml
    /usr/share/mime/application/vnd.oasis.opendocument.presentation-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.presentation.xml
    /usr/share/mime/application/vnd.oasis.opendocument.spreadsheet-flat-xml.xml
    /usr/share/mime/application/vnd.oasis.opendocument.spreadsheet-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.spreadsheet.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text-flat-xml.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text-master.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text-template.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text-web.xml
    /usr/share/mime/application/vnd.oasis.opendocument.text.xml
    /usr/share/mime/application/vnd.openofficeorg.extension.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.presentation.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slideshow.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.slide.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.presentationml.template.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.spreadsheetml.template.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.document.xml
    /usr/share/mime/application/vnd.openxmlformats-officedocument.wordprocessingml.template.xml
    /usr/share/mime/application/vnd.palm.xml
    /usr/share/mime/application/vnd.rn-realmedia.xml
    /usr/share/mime/application/vnd.stardivision.calc.xml
    /usr/share/mime/application/vnd.stardivision.chart.xml
    /usr/share/mime/application/vnd.stardivision.draw.xml
    /usr/share/mime/application/vnd.stardivision.impress.xml
    /usr/share/mime/application/vnd.stardivision.mail.xml
    /usr/share/mime/application/vnd.stardivision.math.xml
    /usr/share/mime/application/vnd.stardivision.writer.xml
    /usr/share/mime/application/vnd.sun.xml.base.xml
    /usr/share/mime/application/vnd.sun.xml.calc.template.xml
    /usr/share/mime/application/vnd.sun.xml.calc.xml
    /usr/share/mime/application/vnd.sun.xml.draw.template.xml
    /usr/share/mime/application/vnd.sun.xml.draw.xml
    /usr/share/mime/application/vnd.sun.xml.impress.template.xml
    /usr/share/mime/application/vnd.sun.xml.impress.xml
    /usr/share/mime/application/vnd.sun.xml.math.xml
    /usr/share/mime/application/vnd.sun.xml.writer.global.xml
    /usr/share/mime/application/vnd.sun.xml.writer.template.xml
    /usr/share/mime/application/vnd.sun.xml.writer.xml
    /usr/share/mime/application/vnd.symbian.install.xml
    /usr/share/mime/application/vnd.tcpdump.pcap.xml
    /usr/share/mime/application/vnd.visio.xml
    /usr/share/mime/application/vnd.wordperfect.xml
    /usr/share/mime/application/winhlp.xml
    /usr/share/mime/application/x-7z-compressed.xml
    /usr/share/mime/application/x-abiword.xml
    /usr/share/mime/application/x-ace.xml
    /usr/share/mime/application/x-alz.xml
    /usr/share/mime/application/x-amipro.xml
    /usr/share/mime/application/x-aportisdoc.xml
    /usr/share/mime/application/x-apple-diskimage.xml
    /usr/share/mime/application/x-applix-spreadsheet.xml
    /usr/share/mime/application/x-applix-word.xml
    /usr/share/mime/application/x-archive.xml
    /usr/share/mime/application/x-arc.xml
    /usr/share/mime/application/x-arj.xml
    /usr/share/mime/application/x-asp.xml
    /usr/share/mime/application/x-audacity-project.xml
    /usr/share/mime/application/x-awk.xml
    /usr/share/mime/application/x-bcpio.xml
    /usr/share/mime/application/x-bittorrent.xml
    /usr/share/mime/application/x-blender.xml
    /usr/share/mime/application/x-bzdvi.xml
    /usr/share/mime/application/x-bzip-compressed-tar.xml
    /usr/share/mime/application/x-bzip.xml
    /usr/share/mime/application/x-bzpdf.xml
    /usr/share/mime/application/x-bzpostscript.xml
    /usr/share/mime/application/x-cb7.xml
    /usr/share/mime/application/x-cbr.xml
    /usr/share/mime/application/x-cbt.xml
    /usr/share/mime/application/x-cbz.xml
    /usr/share/mime/application/x-ccmx.xml
    /usr/share/mime/application/x-cd-image.xml
    /usr/share/mime/application/x-cdrdao-toc.xml
    /usr/share/mime/application/x-chess-pgn.xml
    /usr/share/mime/application/x-cisco-vpn-settings.xml
    /usr/share/mime/application/x-class-file.xml
    /usr/share/mime/application/x-compressed-tar.xml
    /usr/share/mime/application/x-compress.xml
    /usr/share/mime/application/x-core.xml
    /usr/share/mime/application/x-cpio-compressed.xml
    /usr/share/mime/application/x-cpio.xml
    /usr/share/mime/application/x-csh.xml
    /usr/share/mime/application/x-cue.xml
    /usr/share/mime/application/x-dar.xml
    /usr/share/mime/application/x-dbf.xml
    /usr/share/mime/application/x-dc-rom.xml
    /usr/share/mime/application/x-deb.xml
    /usr/share/mime/application/x-designer.xml
    /usr/share/mime/application/x-desktop.xml
    /usr/share/mime/application/x-dia-diagram.xml
    /usr/share/mime/application/x-dia-shape.xml
    /usr/share/mime/application/x-docbook+xml.xml
    /usr/share/mime/application/x-dvi.xml
    /usr/share/mime/application/x-egon.xml
    /usr/share/mime/application/x-e-theme.xml
    /usr/share/mime/application/x-executable.xml
    /usr/share/mime/application/x-fictionbook+xml.xml
    /usr/share/mime/application/x-fluid.xml
    /usr/share/mime/application/x-font-afm.xml
    /usr/share/mime/application/x-font-bdf.xml
    /usr/share/mime/application/x-font-dos.xml
    /usr/share/mime/application/x-font-framemaker.xml
    /usr/share/mime/application/x-font-libgrx.xml
    /usr/share/mime/application/x-font-linux-psf.xml
    /usr/share/mime/application/x-font-otf.xml
    /usr/share/mime/application/x-font-pcf.xml
    /usr/share/mime/application/x-font-speedo.xml
    /usr/share/mime/application/x-font-sunos-news.xml
    /usr/share/mime/application/x-font-tex-tfm.xml
    /usr/share/mime/application/x-font-tex.xml
    /usr/share/mime/application/x-font-ttf.xml
    /usr/share/mime/application/x-font-ttx.xml
    /usr/share/mime/application/x-font-type1.xml
    /usr/share/mime/application/x-font-vfont.xml
    /usr/share/mime/application/x-frame.xml
    /usr/share/mime/application/x-gameboy-rom.xml
    /usr/share/mime/application/x-gba-rom.xml
    /usr/share/mime/application/x-gdbm.xml
    /usr/share/mime/application/x-gedcom.xml
    /usr/share/mime/application/x-genesis-rom.xml
    /usr/share/mime/application/x-gettext-translation.xml
    /usr/share/mime/application/x-glade.xml
    /usr/share/mime/application/x-gmc-link.xml
    /usr/share/mime/application/x-gnome-saved-search.xml
    /usr/share/mime/application/x-gnucash.xml
    /usr/share/mime/application/x-gnumeric.xml
    /usr/share/mime/application/x-gnuplot.xml
    /usr/share/mime/application/x-go-sgf.xml
    /usr/share/mime/application/x-graphite.xml
    /usr/share/mime/application/x-gtk-builder.xml
    /usr/share/mime/application/x-gtktalog.xml
    /usr/share/mime/application/x-gzdvi.xml
    /usr/share/mime/application/x-gz-font-linux-psf.xml
    /usr/share/mime/application/x-gzpdf.xml
    /usr/share/mime/application/x-gzpostscript.xml
    /usr/share/mime/application/x-hdf.xml
    /usr/share/mime/application/xhtml+xml.xml
    /usr/share/mime/application/x-hwp.xml
    /usr/share/mime/application/x-hwt.xml
    /usr/share/mime/application/x-ica.xml
    /usr/share/mime/application/x-iff.xml
    /usr/share/mime/application/x-ipod-firmware.xml
    /usr/share/mime/application/x-it87.xml
    /usr/share/mime/application/x-java-archive.xml
    /usr/share/mime/application/x-java-jce-keystore.xml
    /usr/share/mime/application/x-java-jnlp-file.xml
    /usr/share/mime/application/x-java-keystore.xml
    /usr/share/mime/application/x-java-pack200.xml
    /usr/share/mime/application/x-java.xml
    /usr/share/mime/application/x-jbuilder-project.xml
    /usr/share/mime/application/x-karbon.xml
    /usr/share/mime/application/x-kchart.xml
    /usr/share/mime/application/x-kexi-connectiondata.xml
    /usr/share/mime/application/x-kexiproject-shortcut.xml
    /usr/share/mime/application/x-kexiproject-sqlite2.xml
    /usr/share/mime/application/x-kexiproject-sqlite3.xml
    /usr/share/mime/application/x-kformula.xml
    /usr/share/mime/application/x-killustrator.xml
    /usr/share/mime/application/x-kivio.xml
    /usr/share/mime/application/x-kontour.xml
    /usr/share/mime/application/x-kpovmodeler.xml
    /usr/share/mime/application/x-kpresenter.xml
    /usr/share/mime/application/x-krita.xml
    /usr/share/mime/application/x-kspread-crypt.xml
    /usr/share/mime/application/x-kspread.xml
    /usr/share/mime/application/x-ksysv-package.xml
    /usr/share/mime/application/x-kugar.xml
    /usr/share/mime/application/x-kword-crypt.xml
    /usr/share/mime/application/x-kword.xml
    /usr/share/mime/application/x-lha.xml
    /usr/share/mime/application/x-lhz.xml
    /usr/share/mime/application/x-lrzip-compressed-tar.xml
    /usr/share/mime/application/x-lrzip.xml
    /usr/share/mime/application/x-lyx.xml
    /usr/share/mime/application/x-lzip.xml
    /usr/share/mime/application/x-lzma-compressed-tar.xml
    /usr/share/mime/application/x-lzma.xml
    /usr/share/mime/application/x-lzop.xml
    /usr/share/mime/application/x-m4.xml
    /usr/share/mime/application/x-macbinary.xml
    /usr/share/mime/application/x-magicpoint.xml
    /usr/share/mime/application/x-markaby.xml
    /usr/share/mime/application/x-matroska.xml
    /usr/share/mime/application/x-meld-comparison.xml
    /usr/share/mime/application/x-mif.xml
    /usr/share/mime/application/x-mimearchive.xml
    /usr/share/mime/application/xml-dtd.xml
    /usr/share/mime/application/xml-external-parsed-entity.xml
    /usr/share/mime/application/xml.xml
    /usr/share/mime/application/x-mobipocket-ebook.xml
    /usr/share/mime/application/x-mozilla-bookmarks.xml
    /usr/share/mime/application/x-ms-dos-executable.xml
    /usr/share/mime/application/x-msi.xml
    /usr/share/mime/application/x-ms-wim.xml
    /usr/share/mime/application/x-mswinurl.xml
    /usr/share/mime/application/x-mswrite.xml
    /usr/share/mime/application/x-msx-rom.xml
    /usr/share/mime/application/x-n64-rom.xml
    /usr/share/mime/application/x-nautilus-link.xml
    /usr/share/mime/application/x-navi-animation.xml
    /usr/share/mime/application/x-nes-rom.xml
    /usr/share/mime/application/x-netcdf.xml
    /usr/share/mime/application/x-netshow-channel.xml
    /usr/share/mime/application/x-nintendo-ds-rom.xml
    /usr/share/mime/application/x-nzb.xml
    /usr/share/mime/application/x-object.xml
    /usr/share/mime/application/x-oleo.xml
    /usr/share/mime/application/x-ole-storage.xml
    /usr/share/mime/application/x-pak.xml
    /usr/share/mime/application/x-par2.xml
    /usr/share/mime/application/x-pef-executable.xml
    /usr/share/mime/application/x-perl.xml
    /usr/share/mime/application/x-php.xml
    /usr/share/mime/application/x-pkcs12.xml
    /usr/share/mime/application/x-pkcs7-certificates.xml
    /usr/share/mime/application/x-planperfect.xml
    /usr/share/mime/application/x-pocket-word.xml
    /usr/share/mime/application/x-profile.xml
    /usr/share/mime/application/x-pw.xml
    /usr/share/mime/application/x-python-bytecode.xml
    /usr/share/mime/application/x-qtiplot.xml
    /usr/share/mime/application/x-quattropro.xml
    /usr/share/mime/application/x-quicktime-media-link.xml
    /usr/share/mime/application/x-qw.xml
    /usr/share/mime/application/x-rar.xml
    /usr/share/mime/application/x-rpm.xml
    /usr/share/mime/application/x-ruby.xml
    /usr/share/mime/application/x-sami.xml
    /usr/share/mime/application/x-sc.xml
    /usr/share/mime/application/x-shared-library-la.xml
    /usr/share/mime/application/x-sharedlib.xml
    /usr/share/mime/application/x-shar.xml
    /usr/share/mime/application/x-shellscript.xml
    /usr/share/mime/application/x-shockwave-flash.xml
    /usr/share/mime/application/x-shorten.xml
    /usr/share/mime/application/x-siag.xml
    /usr/share/mime/application/x-slp.xml
    /usr/share/mime/application/xslt+xml.xml
    /usr/share/mime/application/x-smaf.xml
    /usr/share/mime/application/x-sms-rom.xml
    /usr/share/mime/application/x-snes-rom.xml
    /usr/share/mime/application/x-source-rpm.xml
    /usr/share/mime/application/xspf+xml.xml
    /usr/share/mime/application/x-spss-por.xml
    /usr/share/mime/application/x-spss-sav.xml
    /usr/share/mime/application/x-sqlite2.xml
    /usr/share/mime/application/x-sqlite3.xml
    /usr/share/mime/application/x-stuffit.xml
    /usr/share/mime/application/x-subrip.xml
    /usr/share/mime/application/x-sv4cpio.xml
    /usr/share/mime/application/x-sv4crc.xml
    /usr/share/mime/application/x-t602.xml
    /usr/share/mime/application/x-tar.xml
    /usr/share/mime/application/x-tarz.xml
    /usr/share/mime/application/x-tex-gf.xml
    /usr/share/mime/application/x-tex-pk.xml
    /usr/share/mime/application/x-tgif.xml
    /usr/share/mime/application/x-theme.xml
    /usr/share/mime/application/x-toutdoux.xml
    /usr/share/mime/application/x-trash.xml
    /usr/share/mime/application/x-trig.xml
    /usr/share/mime/application/x-troff-man-compressed.xml
    /usr/share/mime/application/x-troff-man.xml
    /usr/share/mime/application/x-tzo.xml
    /usr/share/mime/application/x-ufraw.xml
    /usr/share/mime/application/x-ustar.xml
    /usr/share/mime/application/x-virtualbox-hdd.xml
    /usr/share/mime/application/x-virtualbox-ova.xml
    /usr/share/mime/application/x-virtualbox-ovf.xml
    /usr/share/mime/application/x-virtualbox-vbox-extpack.xml
    /usr/share/mime/application/x-virtualbox-vbox.xml
    /usr/share/mime/application/x-virtualbox-vdi.xml
    /usr/share/mime/application/x-virtualbox-vhd.xml
    /usr/share/mime/application/x-virtualbox-vmdk.xml
    /usr/share/mime/application/x-wais-source.xml
    /usr/share/mime/application/x-windows-themepack.xml
    /usr/share/mime/application/x-wpg.xml
    /usr/share/mime/application/x-wwf.xml
    /usr/share/mime/application/x-x509-ca-cert.xml
    /usr/share/mime/application/x-xbel.xml
    /usr/share/mime/application/x-xliff.xml
    /usr/share/mime/application/x-xoj.xml
    /usr/share/mime/application/x-xpinstall.xml
    /usr/share/mime/application/x-xz-compressed-tar.xml
    /usr/share/mime/application/x-xzpdf.xml
    /usr/share/mime/application/x-xz.xml
    /usr/share/mime/application/x-yaml.xml
    /usr/share/mime/application/x-zerosize.xml
    /usr/share/mime/application/x-zoo.xml
    /usr/share/mime/application/zip.xml
    /usr/share/mime/audio/
    /usr/share/mime/audio/aac.xml
    /usr/share/mime/audio/ac3.xml
    /usr/share/mime/audio/AMR-WB.xml
    /usr/share/mime/audio/AMR.xml
    /usr/share/mime/audio/annodex.xml
    /usr/share/mime/audio/basic.xml
    /usr/share/mime/audio/flac.xml
    /usr/share/mime/audio/midi.xml
    /usr/share/mime/audio/mp2.xml
    /usr/share/mime/audio/mp4.xml
    /usr/share/mime/audio/mpeg.xml
    /usr/share/mime/audio/ogg.xml
    /usr/share/mime/audio/prs.sid.xml
    /usr/share/mime/audio/vnd.dts.hd.xml
    /usr/share/mime/audio/vnd.dts.xml
    /usr/share/mime/audio/vnd.rn-realaudio.xml
    /usr/share/mime/audio/webm.xml
    /usr/share/mime/audio/x-adpcm.xml
    /usr/share/mime/audio/x-aifc.xml
    /usr/share/mime/audio/x-aiff.xml
    /usr/share/mime/audio/x-amzxml.xml
    /usr/share/mime/audio/x-ape.xml
    /usr/share/mime/audio/x-flac+ogg.xml
    /usr/share/mime/audio/x-gsm.xml
    /usr/share/mime/audio/x-iriver-pla.xml
    /usr/share/mime/audio/x-it.xml
    /usr/share/mime/audio/x-m4b.xml
    /usr/share/mime/audio/x-matroska.xml
    /usr/share/mime/audio/x-minipsf.xml
    /usr/share/mime/audio/x-mo3.xml
    /usr/share/mime/audio/x-mod.xml
    /usr/share/mime/audio/x-mpegurl.xml
    /usr/share/mime/audio/x-ms-asx.xml
    /usr/share/mime/audio/x-ms-wma.xml
    /usr/share/mime/audio/x-musepack.xml
    /usr/share/mime/audio/x-psflib.xml
    /usr/share/mime/audio/x-psf.xml
    /usr/share/mime/audio/x-riff.xml
    /usr/share/mime/audio/x-s3m.xml
    /usr/share/mime/audio/x-scpls.xml
    /usr/share/mime/audio/x-speex+ogg.xml
    /usr/share/mime/audio/x-speex.xml
    /usr/share/mime/audio/x-stm.xml
    /usr/share/mime/audio/x-tta.xml
    /usr/share/mime/audio/x-voc.xml
    /usr/share/mime/audio/x-vorbis+ogg.xml
    /usr/share/mime/audio/x-wavpack-correction.xml
    /usr/share/mime/audio/x-wavpack.xml
    /usr/share/mime/audio/x-wav.xml
    /usr/share/mime/audio/x-xi.xml
    /usr/share/mime/audio/x-xmf.xml
    /usr/share/mime/audio/x-xm.xml
    /usr/share/mime/generic-icons
    /usr/share/mime/globs
    /usr/share/mime/globs2
    /usr/share/mime/icons
    /usr/share/mime/image/
    /usr/share/mime/image/bmp.xml
    /usr/share/mime/image/cgm.xml
    /usr/share/mime/image/dpx.xml
    /usr/share/mime/image/fax-g3.xml
    /usr/share/mime/image/fits.xml
    /usr/share/mime/image/g3fax.xml
    /usr/share/mime/image/gif.xml
    /usr/share/mime/image/ief.xml
    /usr/share/mime/image/jp2.xml
    /usr/share/mime/image/jpeg.xml
    /usr/share/mime/image/openraster.xml
    /usr/share/mime/image/png.xml
    /usr/share/mime/image/rle.xml
    /usr/share/mime/image/svg+xml-compressed.xml
    /usr/share/mime/image/svg+xml.xml
    /usr/share/mime/image/tiff.xml
    /usr/share/mime/image/vnd.adobe.photoshop.xml
    /usr/share/mime/image/vnd.djvu.xml
    /usr/share/mime/image/vnd.dwg.xml
    /usr/share/mime/image/vnd.dxf.xml
    /usr/share/mime/image/vnd.microsoft.icon.xml
    /usr/share/mime/image/vnd.ms-modi.xml
    /usr/share/mime/image/vnd.rn-realpix.xml
    /usr/share/mime/image/vnd.wap.wbmp.xml
    /usr/share/mime/image/x-3ds.xml
    /usr/share/mime/image/x-adobe-dng.xml
    /usr/share/mime/image/x-apple-ios-png.xml
    /usr/share/mime/image/x-applix-graphics.xml
    /usr/share/mime/image/x-bzeps.xml
    /usr/share/mime/image/x-canon-cr2.xml
    /usr/share/mime/image/x-canon-crw.xml
    /usr/share/mime/image/x-cmu-raster.xml
    /usr/share/mime/image/x-compressed-xcf.xml
    /usr/share/mime/image/x-dcraw.xml
    /usr/share/mime/image/x-dds.xml
    /usr/share/mime/image/x-dib.xml
    /usr/share/mime/image/x-emf.xml
    /usr/share/mime/image/x-eps.xml
    /usr/share/mime/image/x-exr.xml
    /usr/share/mime/image/x-fpx.xml
    /usr/share/mime/image/x-fuji-raf.xml
    /usr/share/mime/image/x-gzeps.xml
    /usr/share/mime/image/x-icns.xml
    /usr/share/mime/image/x-ilbm.xml
    /usr/share/mime/image/x-jng.xml
    /usr/share/mime/image/x-kodak-dcr.xml
    /usr/share/mime/image/x-kodak-k25.xml
    /usr/share/mime/image/x-kodak-kdc.xml
    /usr/share/mime/image/x-lwo.xml
    /usr/share/mime/image/x-lws.xml
    /usr/share/mime/image/x-macpaint.xml
    /usr/share/mime/image/x-minolta-mrw.xml
    /usr/share/mime/image/x-msod.xml
    /usr/share/mime/image/x-niff.xml
    /usr/share/mime/image/x-nikon-nef.xml
    /usr/share/mime/image/x-olympus-orf.xml
    /usr/share/mime/image/x-panasonic-raw2.xml
    /usr/share/mime/image/x-panasonic-raw.xml
    /usr/share/mime/image/x-pcx.xml
    /usr/share/mime/image/x-pentax-pef.xml
    /usr/share/mime/image/x-photo-cd.xml
    /usr/share/mime/image/x-pict.xml
    /usr/share/mime/image/x-portable-anymap.xml
    /usr/share/mime/image/x-portable-bitmap.xml
    /usr/share/mime/image/x-portable-graymap.xml
    /usr/share/mime/image/x-portable-pixmap.xml
    /usr/share/mime/image/x-quicktime.xml
    /usr/share/mime/image/x-rgb.xml
    /usr/share/mime/image/x-sgi.xml
    /usr/share/mime/image/x-sigma-x3f.xml
    /usr/share/mime/image/x-skencil.xml
    /usr/share/mime/image/x-sony-arw.xml
    /usr/share/mime/image/x-sony-sr2.xml
    /usr/share/mime/image/x-sony-srf.xml
    /usr/share/mime/image/x-sun-raster.xml
    /usr/share/mime/image/x-tga.xml
    /usr/share/mime/image/x-win-bitmap.xml
    /usr/share/mime/image/x-wmf.xml
    /usr/share/mime/image/x-xbitmap.xml
    /usr/share/mime/image/x-xcf.xml
    /usr/share/mime/image/x-xcursor.xml
    /usr/share/mime/image/x-xfig.xml
    /usr/share/mime/image/x-xpixmap.xml
    /usr/share/mime/image/x-xwindowdump.xml
    /usr/share/mime/inode/
    /usr/share/mime/inode/blockdevice.xml
    /usr/share/mime/inode/chardevice.xml
    /usr/share/mime/inode/directory.xml
    /usr/share/mime/inode/fifo.xml
    /usr/share/mime/inode/mount-point.xml
    /usr/share/mime/inode/socket.xml
    /usr/share/mime/inode/symlink.xml
    /usr/share/mime/magic
    /usr/share/mime/message/
    /usr/share/mime/message/delivery-status.xml
    /usr/share/mime/message/disposition-notification.xml
    /usr/share/mime/message/external-body.xml
    /usr/share/mime/message/news.xml
    /usr/share/mime/message/partial.xml
    /usr/share/mime/message/rfc822.xml
    /usr/share/mime/message/x-gnu-rmail.xml
    /usr/share/mime/mime.cache
    /usr/share/mime/model/
    /usr/share/mime/model/vrml.xml
    /usr/share/mime/multipart/
    /usr/share/mime/multipart/alternative.xml
    /usr/share/mime/multipart/appledouble.xml
    /usr/share/mime/multipart/digest.xml
    /usr/share/mime/multipart/encrypted.xml
    /usr/share/mime/multipart/mixed.xml
    /usr/share/mime/multipart/related.xml
    /usr/share/mime/multipart/report.xml
    /usr/share/mime/multipart/signed.xml
    /usr/share/mime/multipart/x-mixed-replace.xml
    /usr/share/mime/subclasses
    /usr/share/mime/text/
    /usr/share/mime/text/cache-manifest.xml
    /usr/share/mime/text/calendar.xml
    /usr/share/mime/text/css.xml
    /usr/share/mime/text/csv.xml
    /usr/share/mime/text/enriched.xml
    /usr/share/mime/text/htmlh.xml
    /usr/share/mime/text/html.xml
    /usr/share/mime/text/plain.xml
    /usr/share/mime/text/rfc822-headers.xml
    /usr/share/mime/text/richtext.xml
    /usr/share/mime/text/sgml.xml
    /usr/share/mime/text/spreadsheet.xml
    /usr/share/mime/text/tab-separated-values.xml
    /usr/share/mime/text/troff.xml
    /usr/share/mime/text/vcard.xml
    /usr/share/mime/text/vnd.graphviz.xml
    /usr/share/mime/text/vnd.rn-realtext.xml
    /usr/share/mime/text/vnd.sun.j2me.app-descriptor.xml
    /usr/share/mime/text/vnd.trolltech.linguist.xml
    /usr/share/mime/text/vnd.wap.wmlscript.xml
    /usr/share/mime/text/vnd.wap.wml.xml
    /usr/share/mime/text/vtt.xml
    /usr/share/mime/text/x-adasrc.xml
    /usr/share/mime/text/x-authors.xml
    /usr/share/mime/text/x-bibtex.xml
    /usr/share/mime/text/x-changelog.xml
    /usr/share/mime/text/x-c++hdr.xml
    /usr/share/mime/text/x-chdr.xml
    /usr/share/mime/text/x-cmake.xml
    /usr/share/mime/text/x-cobol.xml
    /usr/share/mime/text/x-copying.xml
    /usr/share/mime/text/x-credits.xml
    /usr/share/mime/text/x-csharp.xml
    /usr/share/mime/text/x-c++src.xml
    /usr/share/mime/text/x-csrc.xml
    /usr/share/mime/text/x-dcl.xml
    /usr/share/mime/text/x-dsl.xml
    /usr/share/mime/text/x-dsrc.xml
    /usr/share/mime/text/x-eiffel.xml
    /usr/share/mime/text/x-emacs-lisp.xml
    /usr/share/mime/text/x-erlang.xml
    /usr/share/mime/text/x-fortran.xml
    /usr/share/mime/text/x-gettext-translation-template.xml
    /usr/share/mime/text/x-gettext-translation.xml
    /usr/share/mime/text/x-google-video-pointer.xml
    /usr/share/mime/text/x-go.xml
    /usr/share/mime/text/x-haskell.xml
    /usr/share/mime/text/x-idl.xml
    /usr/share/mime/text/x-iMelody.xml
    /usr/share/mime/text/x-install.xml
    /usr/share/mime/text/x-iptables.xml
    /usr/share/mime/text/x-java.xml
    /usr/share/mime/text/x-ldif.xml
    /usr/share/mime/text/x-lilypond.xml
    /usr/share/mime/text/x-literate-haskell.xml
    /usr/share/mime/text/x-log.xml
    /usr/share/mime/text/x-lua.xml
    /usr/share/mime/text/x-makefile.xml
    /usr/share/mime/text/x-markdown.xml
    /usr/share/mime/text/x-matlab.xml
    /usr/share/mime/text/xmcd.xml
    /usr/share/mime/text/x-microdvd.xml
    /usr/share/mime/text/x-moc.xml
    /usr/share/mime/text/x-modelica.xml
    /usr/share/mime/text/x-mof.xml
    /usr/share/mime/text/x-mpsub.xml
    /usr/share/mime/text/x-mrml.xml
    /usr/share/mime/text/x-ms-regedit.xml
    /usr/share/mime/text/x-mup.xml
    /usr/share/mime/text/x-nfo.xml
    /usr/share/mime/text/x-objcsrc.xml
    /usr/share/mime/text/x-ocaml.xml
    /usr/share/mime/text/x-ocl.xml
    /usr/share/mime/text/x-ooc.xml
    /usr/share/mime/text/x-opml+xml.xml
    /usr/share/mime/text/x-pascal.xml
    /usr/share/mime/text/x-patch.xml
    /usr/share/mime/text/x-python.xml
    /usr/share/mime/text/x-qml.xml
    /usr/share/mime/text/x-readme.xml
    /usr/share/mime/text/x-reject.xml
    /usr/share/mime/text/x-rpm-spec.xml
    /usr/share/mime/text/x-scala.xml
    /usr/share/mime/text/x-scheme.xml
    /usr/share/mime/text/x-setext.xml
    /usr/share/mime/text/x-sql.xml
    /usr/share/mime/text/x-ssa.xml
    /usr/share/mime/text/x-subviewer.xml
    /usr/share/mime/text/x-svhdr.xml
    /usr/share/mime/text/x-svsrc.xml
    /usr/share/mime/text/x-tcl.xml
    /usr/share/mime/text/x-texinfo.xml
    /usr/share/mime/text/x-tex.xml
    /usr/share/mime/text/x-troff-me.xml
    /usr/share/mime/text/x-troff-mm.xml
    /usr/share/mime/text/x-troff-ms.xml
    /usr/share/mime/text/x-txt2tags.xml
    /usr/share/mime/text/x-uil.xml
    /usr/share/mime/text/x-uri.xml
    /usr/share/mime/text/x-uuencode.xml
    /usr/share/mime/text/x-vala.xml
    /usr/share/mime/text/x-verilog.xml
    /usr/share/mime/text/x-vhdl.xml
    /usr/share/mime/text/x-xmi.xml
    /usr/share/mime/text/x-xslfo.xml
    /usr/share/mime/treemagic
    /usr/share/mime/types
    /usr/share/mime/version
    /usr/share/mime/video/
    /usr/share/mime/video/3gpp2.xml
    /usr/share/mime/video/3gpp.xml
    /usr/share/mime/video/annodex.xml
    /usr/share/mime/video/dv.xml
    /usr/share/mime/video/isivideo.xml
    /usr/share/mime/video/mp2t.xml
    /usr/share/mime/video/mp4.xml
    /usr/share/mime/video/mpeg.xml
    /usr/share/mime/video/ogg.xml
    /usr/share/mime/video/quicktime.xml
    /usr/share/mime/video/vivo.xml
    /usr/share/mime/video/vnd.mpegurl.xml
    /usr/share/mime/video/vnd.rn-realvideo.xml
    /usr/share/mime/video/wavelet.xml
    /usr/share/mime/video/webm.xml
    /usr/share/mime/video/x-anim.xml
    /usr/share/mime/video/x-flic.xml
    /usr/share/mime/video/x-flv.xml
    /usr/share/mime/video/x-javafx.xml
    /usr/share/mime/video/x-matroska.xml
    /usr/share/mime/video/x-mng.xml
    /usr/share/mime/video/x-ms-asf.xml
    /usr/share/mime/video/x-msvideo.xml
    /usr/share/mime/video/x-ms-wmv.xml
    /usr/share/mime/video/x-nsv.xml
    /usr/share/mime/video/x-ogm+ogg.xml
    /usr/share/mime/video/x-sgi-movie.xml
    /usr/share/mime/video/x-theora+ogg.xml
    /usr/share/mime/x-content/
    /usr/share/mime/x-content/audio-cdda.xml
    /usr/share/mime/x-content/audio-dvd.xml
    /usr/share/mime/x-content/audio-player.xml
    /usr/share/mime/x-content/blank-bd.xml
    /usr/share/mime/x-content/blank-cd.xml
    /usr/share/mime/x-content/blank-dvd.xml
    /usr/share/mime/x-content/blank-hddvd.xml
    /usr/share/mime/x-content/ebook-reader.xml
    /usr/share/mime/x-content/image-dcf.xml
    /usr/share/mime/x-content/image-picturecd.xml
    /usr/share/mime/x-content/software.xml
    /usr/share/mime/x-content/unix-software.xml
    /usr/share/mime/x-content/video-bluray.xml
    /usr/share/mime/x-content/video-dvd.xml
    /usr/share/mime/x-content/video-hddvd.xml
    /usr/share/mime/x-content/video-svcd.xml
    /usr/share/mime/x-content/video-vcd.xml
    /usr/share/mime/x-content/win32-software.xml
    /usr/share/mime/x-epoc/
    /usr/share/mime/x-epoc/x-sisx-app.xml
    /usr/share/mime/XMLnamespaces
    /usr/share/texmf/
    /usr/share/texmf-dist/ls-R
    /usr/share/texmf/ls-R
    /usr/var/
    /usr/var/run/
    /usr/var/run/thermald/
    [1] https://wiki.archlinux.org/index.php/Pa … ny_package
    Last edited by orschiro (2013-12-25 13:23:40)

    The /etc/skel folder is (optionally) used when creating a new user as a template for their home directory. By default it usually only has shell config files and X initialisation files, but you (as a system administrator) can add files to it that you want new users to have in their home folders.
    The following is a list of official packages that install files to /etc/skel:
    $ foreach package in $(pkgfile -qg "/etc/skel/*"); do echo "$package:"; pkgfile -lq $package | grep "/etc/skel/."; echo; done
    bash:
    /etc/skel/.bash_logout
    /etc/skel/.bash_profile
    /etc/skel/.bashrc
    grml-zsh-config:
    /etc/skel/.zshrc
    screen:
    /etc/skel/.screenrc
    xorg-xinit:
    /etc/skel/.xinitrc
    /etc/skel/.xsession
    mksh:
    /etc/skel/.mkshrc
    If you didn't copy these files yourself, perhaps they were added by an AUR package (or more likely, several), check with 'pacman -Qo /path/to/file' for several of the files to see if any are owned by unofficial packages. If they are, I would check with the maintainer to see if this is intended (it seems highly irregular in my opinion, and I'd avoid using any packages that polluted my filesystem in such a manner). If they are not owned by a package, then you (or someone else with root access on your installaion) must have created them manually. If it wasn't you, and you don't think you created them manually, check your logs for suspicious activity, and make sure you haven't been compromised. You can remove the files if you don't need them.

  • Error starting managed server weblogic 10.3.5

    hi my jdeveloper is 11.1.2.0 and my weblogic is 10.3.5 am having error when trying to start my managed server
    the error am geting is
    or
            at weblogic.jdbc.common.internal.XAConnectionEnvFactory.makeConnection(X
    AConnectionEnvFactory.java:494)
            at weblogic.jdbc.common.internal.XAConnectionEnvFactory.createResource(X
    AConnectionEnvFactory.java:177)
            at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourceP
    oolImpl.java:1249)
            at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourceP
    oolImpl.java:1166)
            at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.
    java:249)
            Truncated. see log file for complete stacktrace
    >
    <24 Jan 2014 11:03:14 AM> <Warning> <JDBC> <BEA-001129> <Received exception whil
    e creating connection for pool "jdbc/HRDS": Listener refused the connection with
    the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descript
    or
    >
    <24 Jan 2014 11:03:15 AM> <Error> <Deployer> <BEA-149205> <Failed to initialize
    the application 'jdbc/HRDS' due to error weblogic.application.ModuleException: .
    weblogic.application.ModuleException:
            at weblogic.jdbc.module.JDBCModule.prepare(JDBCModule.java:302)
            at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(Modu
    leListenerInvoker.java:199)
            at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(Depl
    oymentCallbackFlow.java:517)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
            at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(Dep
    loymentCallbackFlow.java:159)
            Truncated. see log file for complete stacktrace
    Caused By: weblogic.common.ResourceException: Listener refused the connection wi
    th the following error:
    ORA-12505, TNS:listener does not currently know of SID given in connect descript
    or
            at weblogic.jdbc.common.internal.XAConnectionEnvFactory.makeConnection(X
    AConnectionEnvFactory.java:494)
            at weblogic.jdbc.common.internal.XAConnectionEnvFactory.createResource(X
    AConnectionEnvFactory.java:177)
            at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourceP
    oolImpl.java:1249)
            at weblogic.common.resourcepool.ResourcePoolImpl.makeResources(ResourceP
    oolImpl.java:1166)
            at weblogic.common.resourcepool.ResourcePoolImpl.start(ResourcePoolImpl.
    java:249)
            Truncated. see log file for complete stacktrace
    >
    <24 Jan 2014 11:03:17 AM> <Error> <Deployer> <BEA-149205> <Failed to initialize
    the application 'wsm-pm' due to error weblogic.management.DeploymentException: [
    J2EE:160149]Error while processing library references. Unresolved application li
    brary references, defined in weblogic-application.xml: [Extension-Name: oracle.w
    sm.seedpolicies, Specification-Version: 11.1.1, Implementation-Version: 11.1.1,
    exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: oracle.wsm.seedpolicies, Specification-Version
    : 11.1.1, Implementation-Version: 11.1.1, exact-match: false].
            at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
            at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:613)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
            at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:184)
            at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:58)
            Truncated. see log file for complete stacktrace
    >
    <24 Jan 2014 11:03:18 AM> <Notice> <SipServer.Resource> <BEA-332401> <Initializi
    ng SipServer Resource with configuration com.bea.wcp.sip.management.descriptor.b
    eans.SipServerBeanImpl>
    <24 Jan 2014 11:03:18 AM> <Notice> <WLSS.Engine> <BEA-330071> <WebLogic Sip Serv
    er "madimad-b533821" patch version: WebLogic Server 10.3.4.0  Fri Dec 17 20:47:3
    3 PST 2010 1384255
    Javax Server Pages  Client Capable 1.2 Tue Jul 13 02:43:41 EDT 2010
    Expression Language 2.1 for JSP 1.0 Sun Jul 18 23:17:34 PDT 2010
    Javax Enterprise Servlets  Client Capable 1.0 Thu Aug 2 12:41:25 EDT 2007
    Eclipse Java Development Tools 3.5.2 Thu Sep 2 09:47:11 EDT 2010
    WebLogic java compiler utils package Client Capable 1.2 Thu Feb 11 03:38:50 EST
    2010
    WebLogic WebApp Container Public API Client Capable 1.4 Fri Oct 1 20:01:15 PDT 2
    010
    Oracle WebLogic Server Module Dependencies 10.3 Thu Oct 28 06:03:12 PDT 2010
    ANTLR Java based compiler generator Client 2.7 Mon Jun 11 12:19:48 EDT 2007
    WebLogic Descriptors for J2EE 1.5 Wed May 5 14:32:58 EDT 2010
    WebLogic Descriptors for J2EE 1.5 Binding Bundle
    WebLogic Specific Descriptors 1.3 Tue Sep 14 18:48:42 PDT 2010
    WebLogic Specific Descriptors 1.3 Binding Bundle
    WebLogic Datasource 1.9 Tue Oct 26 13:50:26 PDT 2010
    WebLogic Datasource 1.9 Binding Bundle
    WebLogic Beangen Client Capable 1.7 Wed Feb 24 16:02:48 PST 2010
    WebLogic Beangen 1.7 Binding Bundle
    WLDF Accessor Client Capable 1.5 Fri Sep 3 17:10:52 EDT 2010
    WLDF Accessor 1.5 Binding Bundle
    WebLogic Management Core Interfaces Client Capable 2.8 Wed Aug 11 08:20:03 PDT 2
    010
    WebLogic Management Core Interfaces 2.8 Binding Bundle
    WebLogic EJBGen Client Capable 1.1 Thu Jun 3 13:17:07 EDT 2010
    Apache Byte Code Engineering Library (BCEL) extracted from 5.2.zip from http://j
    akarta.apache.org/site/downloads/downloads_bcel.cgi with packages renamed from o
    rg.apache.bcel to com.bea.core.repackaged.apache.bcel Client 5.2 Tue May 15 09:5
    2:37 EDT 2007
    Apache commons collections package 3.2 Tue Mar 20 15:48:25 MDT 2007
    Apache commons lang package 2.1 Tue Mar 20 15:48:30 MDT 2007
    Apache commons pool package 1.3 Tue Mar 20 15:48:36 MDT 2007
    Apache commons io 1.4 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache commons fileupload 1.2.1 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache DOM implementation 1.0 Tue Mar 20 15:36:46 MDT 2007
    Apache Logging Support 1.0 Tue Mar 20 15:36:50 MDT 2007
    Apache OpenJPA classes 1.2 Thu Jul 22 05:16:07 EDT 2010
    XMLBeans - Apache SVN rev 962560 2.1 Thu Jul 15 09:52:54 EDT 2010
    BEA Logging Runtime Support Client Capable 1.8 Mon Jun 7 12:07:02 PDT 2010
    BEA Common Security Open SAML 1.0 Fri May 14 20:18:10 PDT 2010
    BEA OpenSAML 2.0 1.0 Wed Mar 24 13:18:27 PDT 2010
    bea-harvester-api2.0 Client Capable 2.3 Mon Feb 15 14:41:06 EST 2010
    bea-harvester-jmx2.0 Client Capable 2.3 Wed Feb 3 11:54:03 PST 2010
    bea-harvester-utils Client Capable 1.4 Mon Feb 15 14:41:06 EST 2010
    bea-mbean-typing-util 1.4 Wed Feb 24 19:15:33 EST 2010
    Javolution 3.7.19 3.7 Tue Aug 28 17:32:21 PDT 2007
    Joda-time 1.2.1 1.2 Tue Aug 28 17:32:27 PDT 2007
    BEA STAX Build Time Support 1.5 Tue May 4 07:32:25 PDT 2010
    BEA STAX Runtime Time Support Client Capable 1.7 Wed Aug 4 19:40:47 EDT 2010
    BEA Generic Annotations Client Capable 1.3 Sat Jul 11 00:30:54 EDT 2009
    BEA Kodo 1.3 Tue Dec 7 12:34:59 PST 2010
    BEA Kodo Integration Client Capable 1.6 Sun Nov 22 16:29:06 PST 2009
    BEA Kodo Integration 1.6 Binding Bundle
    BEA Kodo Integration Tools 1.3 Sat Feb 13 09:30:33 PST 2010
    XML Beans Marshalling (package renamed com.bea) SVN 962560 2.2 Thu Jul 15 09:52:
    54 EDT 2010
    WebLogic Utils Client Capable 1.9 Thu Nov 11 13:50:07 PST 2010
    Aspect 5.3 Fri Jun 4 14:55:18 PDT 2010
    BEA Apache Commons Logging Repackaged 1.2 Mon Jun 11 12:47:12 EDT 2007
    Spring Framework  1.1 Thu Dec 3 12:21:08 EST 2009
    Pitchfork 1.3 Thu Jun 3 13:17:07 EDT 2010
    ${description} 1.2 Fri Jun 25 16:25:26 EDT 2010
    CSS i18n 1.0 Fri Oct 8 10:32:52 EDT 2010
    CSS xacml 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML2 Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Interfaces 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security API 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security JDK Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 Management JavaBeans 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    XACML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Environment 1.0 Fri Oct 8 10:32:52 EDT 2010
    RSA certj 3.1 Wed May 5 15:11:55 PDT 2010
    Netscape LDAP JDK 1.2 Mon Jun 7 15:56:47 EDT 2010
    Commons Networking Utilty classes 1.0 Wed Feb 6 15:01:03 PST 2008
    WebLogic SAAJ 1.6 Wed Jun 16 22:02:31 EDT 2010
    WebLogic STAX Client Capable 1.8 Sat May 15 16:38:03 EDT 2010
    jaxb-impl.jar taken from Glassfish JAXB 2.1.9 1.0 Fri Aug 20 14:37:07 EDT 2010
    jaxb-impl.jar taken from Glassfish JAXB 2.1.12 1.0 Thu May 6 16:10:04 PDT 2010
    resolver.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:24 EST 2009
    Fastinfoset.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:27 EST 2009
    jaxws-rt.jar taken from Glassfish JAXWS 2.1.5 1.1 Wed Oct 13 20:37:41 PDT 2010
    Java.net implementation of MimePull.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu
    Dec 3 11:46:33 EST 2009
    Codehaus STaX Interfaces 3.0.1 1.0 Mon Mar 8 20:49:50 PST 2010
    Woodstox STaX Parser 4.0.5 1.0 Thu Dec 3 11:35:43 EST 2009
    jaxws-tools.jar taken from Glassfish JAXWS 2.1.5 1.1 Fri Sep 24 17:55:05 PDT 201
    0
    Java.net Stax Extensions 1.0 Tue Jun 3 07:12:06 PDT 2008
    Java.net xml stream buffer 1.0 Tue Mar 17 05:24:12 PDT 2009
    Jakarta ORO  1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Enterprise Activation 1.1 Tue Apr 8 09:31:17 PDT 2008
    Javax Annotation 1.0 Fri Dec 25 09:02:47 PST 2009
    Javax Interceptor 1.0 Tue Mar 20 15:37:16 MDT 2007
    Javax Enterprise Beans  3.0 Mon Jun 11 12:21:01 EDT 2007
    Java Data Objects 2.0 Mon Jun 11 12:20:56 EDT 2007
    Java Enterprise Deployment APIs  1.2 Tue Mar 20 15:37:28 MDT 2007
    Java Enterprise Messaging  1.1 Mon Jun 11 12:21:11 EDT 2007
    Java Web Services  2.0 Tue Mar 20 15:37:37 MDT 2007
    Javax Enterprise Mail 1.1 Mon Jul 6 10:41:09 MDT 2009
    Java Enterprise Management APIs  1.0 Tue Mar 20 15:37:49 MDT 2007
    Java Persistence Client Capable 1.0 Tue Oct 7 12:18:34 PDT 2008
    Java Connector  1.5 Mon Jun 11 12:22:07 EDT 2007
    Java Authorization Contract for Containers 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Transaction APIs  Client Capable 1.0 Thu Aug 2 12:42:14 EDT 2007
    JAXB 2.1 Mon Jun 11 12:22:53 EDT 2007
    Java XML Registry 1.0 Wed Feb 6 15:01:03 PST 2008
    Java XML Soap Extensions 1.3 Mon Jun 11 12:22:59 EDT 2007
    Java Stream XML Extensions 1.1 Mon Jun 11 12:23:05 EDT 2007
    JAX-WS APIs 2.1 Mon Jun 11 12:23:16 EDT 2007
    Java API for XML-based RPC   1.2 Mon Jun 11 12:23:10 EDT 2007
    Monfox Dynamic SNMP Agent 1.1 Fri Mar 19 05:46:27 MDT 2010
    Serp bytecode manipulation framework 1.14.3 Fri Jun 11 12:06:08 PDT 2010
    WebLogic Apache Classes Client Capable 1.2 Thu Feb 18 22:06:19 PST 2010
    WebLogic BeanInfo Caching and Discovery Client Capable 2.4 Sat Oct 25 20:46:29 P
    DT 2008
    WebLogic Descriptor Client Capable 1.9 Tue Jul 20 16:03:09 EDT 2010
    Repackaged ASM-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-commons-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-tree-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-util-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Oracle JFR 1.0 Thu Feb 18 19:06:33 PST 2010
    WebLogic Diagnostics Core Interfaces Client Capable 2.5 Thu Jun 3 05:20:41 PDT 2
    010
    WebLogic Diagnostics Logging Client Capable 1.2 Fri Dec 12 11:37:59 MST 2008
    WebLogic Diagnostics Query Module Client Capable 1.2 Tue Oct 27 02:48:36 PDT 200
    9
    WebLogic Diagnostics Instrumentor Tool 1.7 Tue May 18 03:51:46 PDT 2010
    WebLogic Diagnostics Instrumentor Config Tool 1.7 Tue Jun 29 16:41:19 EDT 2010
    WebLogic Diagnostics JRockit Flight Recorder Interfaces Client Capable 1.1 Fri O
    ct 29 16:32:05 EDT 2010
    Diagnostics Notifications Module Client Capable 1.4 Sun Nov 22 16:03:32 PST 2009
    BEA Logging Runtime Support Client Capable 1.5 Thu Apr 29 20:43:42 EDT 2010
    WebLogic i18n Runtime Support Client Capable 1.8 Fri Sep 10 08:12:34 EDT 2010
    WebLogic i18n Build Support Client Capable 1.5 Fri Feb 19 15:03:15 EST 2010
    WebLogic I18N tools Client Capable 1.3 Sun Nov 22 16:03:32 PST 2009
    WebLogic Management JMX Interfaces 1.4 Thu Aug 12 11:16:22 PDT 2010
    WebLogic Security Provider Generation Tool 1.5 Wed Oct 14 16:39:28 MDT 2009
    WebLogic Security Provider Generation Tool Client Capable 1.5 Wed Oct 14 16:39:2
    8 MDT 2009
    WebLogic Messaging Kernel Client Capable 1.8 Mon Aug 23 21:42:11 EDT 2010
    WebLogic Resource Pool Client Capable 1.7 Mon Sep 27 12:00:08 EDT 2010
    WebLogic Socket Muxer API Client Capable 1.2 Thu Apr 1 21:16:27 EDT 2010
    WebLogic RMI Client Capable 1.8 Fri Sep 24 18:35:21 EDT 2010
    Common Security WebLogic Server Integration Support  1.0 Fri Oct 8 10:32:52 EDT
    2010
    Server Lifecycle Interfaces Client Capable 1.4 Fri Feb 19 15:03:15 EST 2010
    WebLogic Store Client Capable 1.7 Fri Dec 17 16:52:31 EST 2010
    WebLogic STORE GXA Client Capable 1.6 Mon Aug 23 21:16:10 EDT 2010
    WebLogic Store Admin Tool Client Capable 1.2 Thu Jan 21 10:24:18 PST 2010
    WebLogic JDBC Store Client Capable 1.3 Mon May 17 10:46:33 PDT 2010
    WebLogic JTA implementation Client Capable 2.7 Fri Sep 17 12:19:45 PDT 2010
    WebLogic Utils 1.9 Thu Nov 11 13:50:07 PST 2010
    Agent Utililities 1.1 Tue Feb 16 00:16:03 EST 2010
    WebLogic Utility Classloader implementations Client Capable 1.8 Mon Jun 28 19:28
    :16 PDT 2010
    WebLogic Utils for working with Expressions Client Capable 1.4 Tue Sep 29 14:45:
    53 EDT 2009
    WebLogic Utils for Dynamically Generated Class Wrappers Client Capable 1.4 Fri F
    eb 13 14:44:23 MST 2009
    WebLogic Timers Client Capable 1.7 Thu Feb 18 13:08:44 EST 2010
    WebLogic Work Manager Client Capable 1.9 Mon Oct 11 18:25:35 EDT 2010
    WebLogic Workarea Client Capable 1.7 Wed Feb 24 17:18:56 PST 2010
    WebLogic XML XPath Implementation Client Capable 1.4 Mon Feb 22 15:07:14 PST 201
    0
    Weblogic Tuxedo Connector Core Client Capable 1.5 Sat Jul 3 19:05:38 EDT 2010
    WebLogic Security 1.0 Fri Oct 8 10:32:52 EDT 2010
    Weblogic Server Java Authentication Helper Classes Client Capable 1.1 Mon Jul 5
    20:42:35 EDT 2010
    Weblogic Server Message Digest Utilities Client Capable 1.0 Thu Aug 2 12:51:30 E
    DT 2007
    Weblogic Server Authenticated Subject Client Capable 1.1 Thu Oct 28 05:46:37 PDT
    2010
    Weblogic Server Authenticated Subject Client Capable 1.5 Thu Sep 9 10:23:21 MDT
    2010
    PrintingSecurityManager - PSM 1.1 Tue Feb 16 05:30:08 PST 2010
    WebLogic security ssl classes 1.0 Tue Jun 15 17:39:53 EDT 2010
    WebLogic Nodemanager Plugin Client Capable 1.3 Tue Nov 18 18:23:10 EST 2008
    nodemanager module for managed processes 1.0 Thu Apr 8 15:14:38 PDT 2010
    WebLogic JMS Pool Client Capable 1.7 Mon Sep 27 12:00:08 EDT 2010
    Contains compiled schema type from WLS 9.0 for WLP compatibility 1.3 Wed Feb 24
    19:15:33 EST 2010
    WebLogic Http Pub/Sub Module Client Capable 1.6 Mon Jul 12 02:31:07 EDT 2010
    Class Redefinition Project 1.5 Mon May 10 19:48:21 EDT 2010
    Class Redefinition Project Client Capable 1.5 Mon Apr 5 17:00:52 PDT 2010
    Class Redefinition Project 1.5 Binding Bundle
    Commonj SDO 1.0 Wed Sep 24 19:11:23 PDT 2008
    WebLogic Coherence Descriptor 1.1 Wed May 5 15:17:47 EDT 2010
    WebLogic Coherence Descriptor 1.1 Binding Bundle
    This module contains all message catalogs 1.1 Fri Dec 17 08:04:35 PST 2010
    WebLogic WebService Public API's 1.1 Tue Sep 21 22:15:05 EDT 2010
    WebLogic EclipseLink Integration 1.0 Thu Feb 25 14:56:43 PST 2010
    WebLogic SCA Client 1.0 Thu Feb 25 00:27:10 EST 2010
    WebLogic RAC Module UCP Client Capable 1.0 Mon Sep 13 09:03:00 PDT 2010
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu S
    ep 23 15:02:15 PDT 2010
    BEA Patches of apache ant Client Capable 1.2 Wed Jan 13 08:48:17 PST 2010
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server Datatier 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    WebLogic SIPServer Extension API 10.3.4.0 at 709997 built on 2010/09/27
    WebLogic SIPServer Extension API 10.3.4 at 709997 built on 2010/09/27
    WebLogic SIPServer CallState 10.3.4 at 709997 built on 2010/09/27
    Oracle WebLogic Communications SCTP 10.3.1 at 688160 built on 2009/03/11
    WebLogic WebService Databinding Plugins 1.2 Fri Oct 15 07:38:46 PDT 2010
    WebLogic WebService Databinding 1.2 Fri Oct 15 06:35:13 PDT 2010
    WebLogic SIP Activator 10.3.4 at 710163 built on 2010/09/30
    >
    <24 Jan 2014 11:03:25 AM> <Error> <WLSS.Engine> <BEA-330075> <There are no sip n
    or diameter channels targeted to server "madimad-b533821">
    <24 Jan 2014 11:03:25 AM> <Error> <WLSS.Engine> <BEA-330049> <Failed to start th
    e sip service, shutting down>
    C:\mydomain\base_domain\bin>

    i did but there is no respond
    i started the database
    C:\mydomain\base_domain\bin>startManagedWebLogic.cmd madimad-b533821
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=
    128m  -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C
    :\PROGRA~1\Java\JDK16~1.0_2\lib\tools.jar;C:\mywls\wlserver\server\lib\weblogic_
    sp.jar;C:\mywls\wlserver\server\lib\weblogic.jar;C:\mywls\modules\features\weblo
    gic.server.modules_10.3.4.0.jar;C:\mywls\wlserver\server\lib\webservices.jar;C:\
    mywls\modules\ORGAPA~1.1/lib/ant-all.jar;C:\mywls\modules\NETSFA~1.0_1/lib/ant-c
    ontrib.jar;C:\oracle\Middleware\wlserver_10.3\sip\server\lib\weblogic_sip.jar;C:
    \Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\mywls\wlserver\co
    mmon\derby\lib\derbyclient.jar;C:\mywls\wlserver\server\lib\xqrl.jar
    PATH=;C:\mywls\wlserver\server\native\win\32;C:\mywls\wlserver\server\bin;C:\myw
    ls\modules\ORGAPA~1.1\bin;C:\PROGRA~1\Java\JDK16~1.0_2\jre\bin;C:\PROGRA~1\Java\
    JDK16~1.0_2\bin;C:\Program Files\PC Connectivity Solution\;C:\product\11.2.0\dbh
    ome_1\bin;C:\product\11.2.0\dbhome_1;C:\forms;C:\DevSuiteHome_1\jlib;C:\Program
    Files\PHP;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Fil
    es\Common Files\Roxio Shared\DLLShared;C:\Program Files\Common Files\Roxio Share
    d\DLLShared;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared;C:\Program
    Files\Common Files\DivX Shared;c:\Program Files\Java\jdk1.6.0_21\bin;C:\Program
    Files\Common Files\Roxio Shared\10.0\DLLShared;C:\Program Files\Common Files\Rox
    io Shared\DLLShared;C:\Program Files\Common Files\Roxio Shared\10.0\DLLShared;C:
    \mywls;C:\mydomain\base_domain\bin;C:\Program Files\Java\jre6\bin\client;C:\Prog
    ram Files\Java\jre6\bin;C:\Program Files\Java\jdk1.6.0_21\jre\bin;C:\Program Fil
    es\Java\jdk1.6.0_21\bin;C:\Program Files\Java\jdk1.6.0_21;C:\Program Files\Java\
    jre6;C:\DevSuiteHome_1\forms;C:\DevSuiteHome_1\cgenf61\admin;C:\DevSuiteHome_1\f
    orms;C:\forms\sms_code.pll;C:\mywls\wlserver;C:\Java\jdk1.6.0_21;C:\mywls\wlserv
    er\server\native\win\32\oci920_8
    *  To start WebLogic Server, use a username and   *
    *  password assigned to an admin-level user.  For *
    *  server administration, use the WebLogic Server *
    *  console at http:\\hostname:port\console        *
    starting weblogic with Java version:
    java version "1.6.0_21"
    Java(TM) SE Runtime Environment (build 1.6.0_21-b07)
    Java HotSpot(TM) Client VM (build 17.0-b17, mixed mode)
    Starting WLS with line:
    C:\PROGRA~1\Java\JDK16~1.0_2\bin\java -client   -Xms256m -Xmx512m -XX:CompileThr
    eshold=8000 -XX:PermSize=128m  -XX:MaxPermSize=512m -Dweblogic.Name=madimad-b533
    821 -Djava.security.policy=C:\mywls\wlserver\server\lib\weblogic.policy -Dweblog
    ic.security.SSL.trustedCAKeyStore="C:\mywls\wlserver\server\lib\cacerts"  -Xveri
    fy:none -ea:com.bea.wcp...   -da -Dplatform.home=C:\mywls\wlserver -Dwls.home=C:
    \mywls\wlserver\server -Dweblogic.home=C:\mywls\wlserver\server  -Dcommon.compon
    ents.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.
    logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.home=C:\mydomai
    n\BASE_D~1 -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1
    .1\jrocket_optfile.txt -Doracle.server.config.dir=C:\mydomain\BASE_D~1\config\FM
    WCON~1\servers\madimad-b533821 -Doracle.domain.config.dir=C:\mydomain\BASE_D~1\c
    onfig\FMWCON~1  -Digf.arisidbeans.carmlloc=C:\mydomain\BASE_D~1\config\FMWCON~1\
    carml  -Digf.arisidstack.home=C:\mydomain\BASE_D~1\config\FMWCON~1\arisidprovide
    r -Doracle.security.jps.config=C:\mydomain\BASE_D~1\config\fmwconfig\jps-config.
    xml -Doracle.deployed.app.dir=C:\mydomain\BASE_D~1\servers\madimad-b533821\tmp\_
    WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirectory=C:\Oracl
    e\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\mo
    dules\oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle.mds.net.prot
    ocol  -Dweblogic.jdbc.remoteEnabled=false  -Dweblogic.management.discover=false
    -Dweblogic.management.server=http://madimad-b533821:7001  -Dwlw.iterativeDev=fal
    se -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false  weblogic.Server
    <24 Jan 2014 12:52:41 PM> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE
    Provider self-integrity check for better startup performance. To enable this che
    ck, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <24 Jan 2014 12:52:42 PM> <Info> <Security> <BEA-090906> <Changing the default R
    andom Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable thi
    s change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <24 Jan 2014 12:52:42 PM> <Notice> <WebLogicServer> <BEA-000395> <Following exte
    nsions directory contents added to the end of the classpath:
    C:\mydomain\base_domain\lib\sipactivator.jar>
    <24 Jan 2014 12:52:42 PM> <Info> <Server> <BEA-002647> <The service plugin, com.
    oracle.core.sip.activator, was added from C:\mydomain\base_domain\lib\sipactivat
    or.jar.>
    <24 Jan 2014 12:52:42 PM> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogi
    c Server with Java HotSpot(TM) Client VM Version 17.0-b17 from Sun Microsystems
    Inc.>
    <24 Jan 2014 12:52:45 PM> <Info> <Security> <BEA-090065> <Getting boot identity
    from user.>
    Enter username to boot WebLogic server:tshifhiwa
    Enter password to boot WebLogic server:
    <24 Jan 2014 12:52:57 PM> <Info> <Management> <BEA-141107> <Version: WebLogic Se
    rver 10.3.4.0  Fri Dec 17 20:47:33 PST 2010 1384255 >
    <24 Jan 2014 12:53:01 PM> <Error> <Management> <BEA-141252> <The domain version,
    10.3.5.0, is greater than the release version, 10.3.4.0, of this server.>
    <24 Jan 2014 12:53:01 PM> <Error> <Configuration Management> <BEA-150001> <An er
    ror occurred while connecting to the admin server to bootstrap through URL: http
    ://madimad-b533821:7001/bea_wls_management_internal2/Bootstrap, user: tshifhiwa
    weblogic.management.configuration.ConfigurationException: [Management:141252]The
    domain version, 10.3.5.0, is greater than the release version, 10.3.4.0, of thi
    s server.
            at weblogic.management.provider.internal.BootStrapHelper.getBootStrapStr
    uct(BootStrapHelper.java:147)
            at weblogic.management.provider.internal.RuntimeAccessImpl.initialize(Ru
    ntimeAccessImpl.java:432)
            at weblogic.management.provider.internal.RuntimeAccessService.start(Runt
    imeAccessService.java:49)
            at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesMan
    ager.java:461)
            at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServ
    icesManager.java:166)
            at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:879)
            at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:566)
            at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:467)
            at weblogic.Server.main(Server.java:71)
    >
    <24 Jan 2014 12:53:01 PM> <Notice> <WebLogicServer> <BEA-000365> <Server state c
    hanged to STARTING>
    <24 Jan 2014 12:53:01 PM> <Info> <WorkManager> <BEA-002900> <Initializing self-t
    uning thread pool>
    <24 Jan 2014 12:53:02 PM> <Notice> <LoggingService> <BEA-320400> <The log file C
    :\mydomain\base_domain\servers\madimad-b533821\logs\madimad-b533821.log will be
    rotated. Reopen the log file if tailing has stopped. This can happen on some pla
    tforms like Windows.>
    <24 Jan 2014 12:53:02 PM> <Notice> <LoggingService> <BEA-320401> <The log file h
    as been rotated to C:\mydomain\base_domain\servers\madimad-b533821\logs\madimad-
    b533821.log00007. Log messages will continue to be logged in C:\mydomain\base_do
    main\servers\madimad-b533821\logs\madimad-b533821.log.>
    <24 Jan 2014 12:53:02 PM> <Notice> <Log Management> <BEA-170019> <The server log
    file C:\mydomain\base_domain\servers\madimad-b533821\logs\madimad-b533821.log i
    s opened. All server side log events will be written to this file.>
    <24 Jan 2014 12:54:25 PM> <Critical> <WebLogicServer> <BEA-000386> <Server subsy
    stem failed. Reason: java.lang.AssertionError: Assertion violated
    java.lang.AssertionError: Assertion violated
            at weblogic.utils.Debug.assertion(Debug.java:57)
            at weblogic.server.channels.ChannelService.getServerChannel(ChannelServi
    ce.java:2060)
            at weblogic.server.channels.ChannelService.getServerChannel(ChannelServi
    ce.java:1998)
            at weblogic.protocol.ServerChannelManager.findServerChannel(ServerChanne
    lManager.java:76)
            at weblogic.ldap.EmbeddedLDAP.findLdapURL(EmbeddedLDAP.java:1482)
            Truncated. see log file for complete stacktrace
    >
    <24 Jan 2014 12:54:26 PM> <Notice> <WebLogicServer> <BEA-000365> <Server state c
    hanged to FAILED>
    <24 Jan 2014 12:54:26 PM> <Error> <WebLogicServer> <BEA-000383> <A critical serv
    ice failed. The server will shut itself down>
    <24 Jan 2014 12:54:26 PM> <Notice> <WebLogicServer> <BEA-000365> <Server state c
    hanged to FORCE_SHUTTING_DOWN>

  • Permgen error while launching the weblogic server in windows

    Hi,
    While starting the weblogic server from the windows, I am getting the below error 'Permgen space error' for Sip Server. Please let me know how can I avoid running the sip server while starting the weblogic server or how can I avoid the permgen error.
    <21 Apr, 2012 7:33:33 AM IST> <Warning> <J2EE> <BEA-160195> <The application ver
    sion lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLif
    ecycleListener is ignored because the application em is not versioned.>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <SipServer.Resource> <BEA-332401> <Initia
    lizing SipServer Resource with configuration com.bea.wcp.sip.management.descript
    or.beans.SipServerBeanImpl>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <SipServer.Resource> <BEA-332404> <Engine
    AdminServer is in NON-REPLICATED mode>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Engine> <BEA-330071> <WebLogic Sip
    Server "AdminServer" patch version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06
    PDT 2011 1398638
    Javax Server Pages Client Capable 1.2 Tue Jul 13 02:43:41 EDT 2010
    Expression Language 2.1 for JSP 1.0 Sun Jul 18 23:17:34 PDT 2010
    Javax Enterprise Servlets Client Capable 1.0 Thu Aug 2 12:41:25 EDT 2007
    Eclipse Java Development Tools 3.5.2 Thu Sep 2 09:47:11 EDT 2010
    WebLogic java compiler utils package Client Capable 1.2 Thu Feb 11 03:38:50 EST
    2010
    WebLogic WebApp Container Public API Client Capable 1.4 Fri Oct 1 20:01:15 PDT 2
    010
    Oracle WebLogic Server Module Dependencies 10.3 Thu Mar 3 14:37:52 PST 2011
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu F
    eb 3 16:30:47 EST 2011
    ANTLR Java based compiler generator Client 2.7 Mon Jun 11 12:19:48 EDT 2007
    WebLogic Descriptors for J2EE 1.5 Wed May 5 14:32:58 EDT 2010
    WebLogic Descriptors for J2EE 1.5 Binding Bundle
    WebLogic Specific Descriptors 1.3 Tue Sep 14 18:48:42 PDT 2010
    WebLogic Specific Descriptors 1.3 Binding Bundle
    WebLogic Datasource 1.9 Tue Oct 26 13:50:26 PDT 2010
    WebLogic Datasource 1.9 Binding Bundle
    WebLogic Beangen Client Capable 1.7 Wed Feb 24 16:02:48 PST 2010
    WebLogic Beangen 1.7 Binding Bundle
    WLDF Accessor Client Capable 1.5 Fri Sep 3 17:10:52 EDT 2010
    WLDF Accessor 1.5 Binding Bundle
    WebLogic Management Core Interfaces Client Capable 2.8 Thu Mar 3 12:10:10 EST 20
    11
    WebLogic Management Core Interfaces 2.8 Binding Bundle
    WebLogic EJBGen Client Capable 1.1 Thu Jun 3 13:17:07 EDT 2010
    Apache Byte Code Engineering Library (BCEL) extracted from 5.2.zip from http://j
    akarta.apache.org/site/downloads/downloads_bcel.cgi with packages renamed from o
    rg.apache.bcel to com.bea.core.repackaged.apache.bcel Client 5.2 Tue May 15 09:5
    2:37 EDT 2007
    Apache commons collections package 3.2 Tue Mar 20 15:48:25 MDT 2007
    Apache commons lang package 2.1 Tue Mar 20 15:48:30 MDT 2007
    Apache commons pool package 1.3 Tue Mar 20 15:48:36 MDT 2007
    Apache commons io 1.4 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache commons fileupload 1.2.1 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache DOM implementation 1.0 Tue Mar 20 15:36:46 MDT 2007
    Apache Logging Support 1.0 Tue Mar 20 15:36:50 MDT 2007
    Apache OpenJPA classes 1.2 Thu Jul 22 05:16:07 EDT 2010
    XMLBeans - Apache SVN rev 962560 2.1 Thu Jul 15 09:52:54 EDT 2010
    BEA Logging Runtime Support Client Capable 1.8 Mon Jun 7 12:07:02 PDT 2010
    BEA Common Security Open SAML 1.0 Fri May 14 20:18:10 PDT 2010
    BEA OpenSAML 2.0 1.0 Wed Mar 24 13:18:27 PDT 2010
    bea-harvester-api2.0 Client Capable 2.3 Mon Feb 15 14:41:06 EST 2010
    bea-harvester-jmx2.0 Client Capable 2.3 Wed Feb 3 11:54:03 PST 2010
    bea-harvester-utils Client Capable 1.4 Mon Feb 15 14:41:06 EST 2010
    bea-mbean-typing-util 1.4 Wed Feb 24 19:15:33 EST 2010
    Javolution 3.7.19 3.7 Tue Aug 28 17:32:21 PDT 2007
    Joda-time 1.2.1 1.2 Tue Aug 28 17:32:27 PDT 2007
    BEA STAX Build Time Support 1.5 Tue May 4 07:32:25 PDT 2010
    BEA STAX Runtime Time Support Client Capable 1.7 Wed Aug 4 19:40:47 EDT 2010
    BEA Generic Annotations Client Capable 1.3 Sat Jul 11 00:30:54 EDT 2009
    BEA Kodo 1.4 Mon Feb 7 16:22:04 PST 2011
    BEA Kodo Integration Client Capable 1.6 Sun Nov 22 16:29:06 PST 2009
    BEA Kodo Integration 1.6 Binding Bundle
    BEA Kodo Integration Tools 1.4 Thu Feb 3 16:07:53 EST 2011
    XML Beans Marshalling (package renamed com.bea) SVN 962560 2.3 Thu Mar 3 12:10:1
    0 EST 2011
    WebLogic Utils Client Capable 1.9 Thu Mar 3 12:10:10 EST 2011
    Aspect 5.3 Fri Jun 4 14:55:18 PDT 2010
    BEA Apache Commons Logging Repackaged 1.2 Mon Jun 11 12:47:12 EDT 2007
    Spring Framework 1.1 Thu Dec 3 12:21:08 EST 2009
    Pitchfork 1.3 Thu Jun 3 13:17:07 EDT 2010
    ${description} 1.2 Fri Jun 25 16:25:26 EDT 2010
    CSS i18n 1.0 Fri Oct 8 10:32:52 EDT 2010
    CSS xacml 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML2 Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Interfaces 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security API 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security JDK Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 Management JavaBeans 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    XACML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Environment 1.0 Fri Oct 8 10:32:52 EDT 2010
    RSA certj 3.1 Wed May 5 15:11:55 PDT 2010
    Netscape LDAP JDK 1.2 Mon Jun 7 15:56:47 EDT 2010
    Commons Networking Utilty classes 1.0 Wed Feb 6 15:01:03 PST 2008
    WebLogic SAAJ 1.6 Wed Jun 16 22:02:31 EDT 2010
    WebLogic STAX Client Capable 1.9 Thu Feb 10 18:00:52 PST 2011
    jaxb-impl.jar taken from Glassfish JAXB 2.1.9 1.0 Fri Aug 20 14:37:07 EDT 2010
    jaxb-impl.jar taken from Glassfish JAXB 2.1.12 1.0 Thu May 6 16:10:04 PDT 2010
    resolver.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:24 EST 2009
    Fastinfoset.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:27 EST 2009
    jaxws-rt.jar taken from Glassfish JAXWS 2.1.5 1.2 Mon Feb 28 17:53:01 PST 2011
    Java.net implementation of MimePull.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu
    Dec 3 11:46:33 EST 2009
    Codehaus STaX Interfaces 3.0.1 1.0 Mon Mar 8 20:49:50 PST 2010
    Woodstox STaX Parser 4.0.5 1.0 Thu Dec 3 11:35:43 EST 2009
    jaxws-tools.jar taken from Glassfish JAXWS 2.1.5 1.1 Fri Sep 24 17:55:05 PDT 201
    0
    Java.net Stax Extensions 1.0 Tue Jun 3 07:12:06 PDT 2008
    Java.net xml stream buffer 1.0 Tue Mar 17 05:24:12 PDT 2009
    Jakarta ORO 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Enterprise Activation 1.1 Tue Apr 8 09:31:17 PDT 2008
    Javax Annotation 1.0 Fri Dec 25 09:02:47 PST 2009
    Javax Interceptor 1.0 Tue Mar 20 15:37:16 MDT 2007
    Javax Enterprise Beans 3.0 Mon Jun 11 12:21:01 EDT 2007
    Java Data Objects 2.0 Mon Jun 11 12:20:56 EDT 2007
    Java Enterprise Deployment APIs 1.2 Tue Mar 20 15:37:28 MDT 2007
    Java Enterprise Messaging 1.1 Mon Jun 11 12:21:11 EDT 2007
    Java Web Services 2.0 Tue Mar 20 15:37:37 MDT 2007
    Javax Enterprise Mail 1.1 Mon Jul 6 10:41:09 MDT 2009
    Java Enterprise Management APIs 1.0 Tue Mar 20 15:37:49 MDT 2007
    Java Persistence Client Capable 1.0 Tue Oct 7 12:18:34 PDT 2008
    Java Connector 1.5 Mon Jun 11 12:22:07 EDT 2007
    Java Authorization Contract for Containers 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Transaction APIs Client Capable 1.0 Thu Aug 2 12:42:14 EDT 2007
    JAXB 2.1 Mon Jun 11 12:22:53 EDT 2007
    Java XML Registry 1.0 Wed Feb 6 15:01:03 PST 2008
    Java XML Soap Extensions 1.3 Mon Jun 11 12:22:59 EDT 2007
    Java Stream XML Extensions 1.1 Mon Jun 11 12:23:05 EDT 2007
    JAX-WS APIs 2.1 Mon Jun 11 12:23:16 EDT 2007
    Java API for XML-based RPC 1.2 Mon Jun 11 12:23:10 EDT 2007
    Monfox Dynamic SNMP Agent 1.1 Fri Mar 19 05:46:27 MDT 2010
    Serp bytecode manipulation framework 1.14.3 Fri Jun 11 12:06:08 PDT 2010
    WebLogic Apache Classes Client Capable 1.2 Thu Feb 18 22:06:19 PST 2010
    WebLogic BeanInfo Caching and Discovery Client Capable 2.4 Sat Oct 25 20:46:29 P
    DT 2008
    WebLogic Descriptor Client Capable 1.9 Tue Jul 20 16:03:09 EDT 2010
    Repackaged ASM-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-commons-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-tree-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-util-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Oracle JFR 1.0 Thu Feb 18 19:06:33 PST 2010
    WebLogic Diagnostics Core Interfaces Client Capable 2.5 Thu Jun 3 05:20:41 PDT 2
    010
    WebLogic Diagnostics Logging Client Capable 1.2 Fri Dec 12 11:37:59 MST 2008
    WebLogic Diagnostics Query Module Client Capable 1.2 Tue Oct 27 02:48:36 PDT 200
    9
    WebLogic Diagnostics Instrumentor Tool 1.7 Tue May 18 03:51:46 PDT 2010
    WebLogic Diagnostics Instrumentor Config Tool 1.7 Tue Jun 29 16:41:19 EDT 2010
    WebLogic Diagnostics JRockit Flight Recorder Interfaces Client Capable 1.1 Fri O
    ct 29 16:32:05 EDT 2010
    Diagnostics Notifications Module Client Capable 1.4 Sun Nov 22 16:03:32 PST 2009
    BEA Logging Runtime Support Client Capable 1.5 Thu Apr 29 20:43:42 EDT 2010
    WebLogic i18n Runtime Support Client Capable 1.8 Fri Sep 10 08:12:34 EDT 2010
    WebLogic i18n Build Support Client Capable 1.5 Fri Feb 19 15:03:15 EST 2010
    WebLogic I18N tools Client Capable 1.3 Sun Nov 22 16:03:32 PST 2009
    WebLogic Management JMX Interfaces 1.4 Thu Aug 12 11:16:22 PDT 2010
    WebLogic Security Provider Generation Tool 1.5 Wed Oct 14 16:39:28 MDT 2009
    WebLogic Security Provider Generation Tool Client Capable 1.5 Wed Oct 14 16:39:2
    8 MDT 2009
    WebLogic Messaging Kernel Client Capable 1.8 Mon Aug 23 21:42:11 EDT 2010
    WebLogic Resource Pool Client Capable 1.7 Mon Sep 27 12:00:08 EDT 2010
    WebLogic Socket Muxer API Client Capable 1.2 Thu Apr 1 21:16:27 EDT 2010
    WebLogic RMI Client Capable 1.10 Tue Mar 22 16:56:32 PDT 2011
    Common Security WebLogic Server Integration Support 1.0 Fri Oct 8 10:32:52 EDT
    2010
    Server Lifecycle Interfaces Client Capable 1.4 Fri Feb 19 15:03:15 EST 2010
    WebLogic Store Client Capable 1.7 Fri Dec 17 16:52:31 EST 2010
    WebLogic STORE GXA Client Capable 1.6 Mon Aug 23 21:16:10 EDT 2010
    WebLogic Store Admin Tool Client Capable 1.2 Thu Jan 21 10:24:18 PST 2010
    WebLogic JDBC Store Client Capable 1.3 Mon May 17 10:46:33 PDT 2010
    WebLogic JTA implementation Client Capable 2.7 Fri Sep 17 12:19:45 PDT 2010
    WebLogic Utils 1.9 Thu Mar 3 12:10:10 EST 2011
    Agent Utililities 1.1 Tue Feb 16 00:16:03 EST 2010
    WebLogic Utility Classloader implementations Client Capable 1.9 Wed Mar 2 14:10:
    04 PST 2011
    WebLogic Utils for working with Expressions Client Capable 1.4 Tue Sep 29 14:45:
    53 EDT 2009
    WebLogic Utils for Dynamically Generated Class Wrappers Client Capable 1.4 Fri F
    eb 13 14:44:23 MST 2009
    WebLogic Timers Client Capable 1.7 Thu Feb 18 13:08:44 EST 2010
    WebLogic Work Manager Client Capable 1.10 Thu Feb 17 10:25:54 PST 2011
    WebLogic Workarea Client Capable 1.7 Wed Feb 24 17:18:56 PST 2010
    WebLogic XML XPath Implementation Client Capable 1.4 Mon Feb 22 15:07:14 PST 201
    0
    Weblogic Tuxedo Connector Core Client Capable 1.5 Sat Jul 3 19:05:38 EDT 2010
    WebLogic Security 1.0 Fri Oct 8 10:32:52 EDT 2010
    Weblogic Server Java Authentication Helper Classes Client Capable 1.1 Mon Jul 5
    20:42:35 EDT 2010
    Weblogic Server Message Digest Utilities Client Capable 1.0 Thu Aug 2 12:51:30 E
    DT 2007
    Weblogic Server Authenticated Subject Client Capable 1.1 Thu Oct 28 05:46:37 PDT
    2010
    Weblogic Server Authenticated Subject Client Capable 1.5 Thu Sep 9 10:23:21 MDT
    2010
    PrintingSecurityManager - PSM 1.1 Tue Feb 16 05:30:08 PST 2010
    WebLogic security ssl classes 1.0 Tue Jun 15 17:39:53 EDT 2010
    WebLogic Nodemanager Plugin Client Capable 1.3 Tue Nov 18 18:23:10 EST 2008
    nodemanager module for managed processes 1.0 Thu Apr 8 15:14:38 PDT 2010
    WebLogic JMS Pool Client Capable 1.8 Thu Mar 3 14:11:40 PST 2011
    Contains compiled schema type from WLS 9.0 for WLP compatibility 1.3 Wed Feb 24
    19:15:33 EST 2010
    WebLogic Http Pub/Sub Module Client Capable 1.6 Mon Jul 12 02:31:07 EDT 2010
    Class Redefinition Project 1.5 Mon May 10 19:48:21 EDT 2010
    Class Redefinition Project Client Capable 1.5 Mon Apr 5 17:00:52 PDT 2010
    Class Redefinition Project 1.5 Binding Bundle
    Commonj SDO 1.0 Wed Sep 24 19:11:23 PDT 2008
    WebLogic Coherence Descriptor 1.1 Wed May 5 15:17:47 EDT 2010
    WebLogic Coherence Descriptor 1.1 Binding Bundle
    This module contains all message catalogs 1.1 Fri Dec 17 08:04:35 PST 2010
    WebLogic WebService Public API's 1.1 Tue Sep 21 22:15:05 EDT 2010
    WebLogic EclipseLink Integration 1.0 Thu Feb 25 14:56:43 PST 2010
    WebLogic SCA Client 1.0 Thu Feb 25 00:27:10 EST 2010
    WebLogic RAC Module UCP Client Capable 1.0 Mon Sep 13 09:03:00 PDT 2010
    BEA Patches of apache ant Client Capable 1.2 Wed Jan 13 08:48:17 PST 2010
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server Datatier 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    WebLogic SIPServer Extension API 10.3.4.0 at 709997 built on 2010/09/27
    WebLogic SIPServer Extension API 10.3.4 at 709997 built on 2010/09/27
    WebLogic SIPServer CallState 10.3.4 at 709997 built on 2010/09/27
    Oracle WebLogic Communications SCTP 10.3.1 at 688160 built on 2009/03/11
    ALSB Client 1.3 Mon Apr 12 19:21:38 PDT 2010
    WebLogic WebService Databinding 1.2 Fri Oct 15 06:35:13 PDT 2010
    WebLogic WebService Databinding Plugins 1.2 Fri Oct 15 07:38:46 PDT 2010
    WebLogic SCA Engine 1.2 Mon Aug 16 20:42:39 EDT 2010
    WebLogic WebService Databinding Plugins 1.2 Fri Oct 15 07:38:46 PDT 2010
    WebLogic WebService Databinding 1.2 Fri Oct 15 06:35:13 PDT 2010
    WebLogic SIP Activator 10.3.4 at 710163 built on 2010/09/30
    >
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Engine> <BEA-330065> <SIP server re
    plication is DISABLED>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Engine> <BEA-330000> <WebLogic SIP
    Server "sipserver" has started.>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SI
    P Message processor (Transport TCP)" is listening on port 5060>
    <21 Apr, 2012 7:33:36 AM IST> <Notice> <WLSS.Transport> <BEA-330687> <Thread "SI
    P Message processor (Transport TCP)" is listening on port 5061>
    <21 Apr, 2012 7:34:40 AM IST> <Error> <WLSS.Setup> <BEA-331210> <Skip SIP relate
    d logic, because error occurs when parsing sip related annotations of "em"
    com.bea.wcp.sip.engine.server.setup.SipAnnotationParsingException:
    at com.bea.wcp.sip.engine.server.setup.SipAnnotationData.<init>(SipAnnot
    ationData.java:146)
    at com.bea.wcp.sip.util.DeploymentUtil.getOrCreateAnnotationData(Deploym
    entUtil.java:70)
    at com.bea.wcp.sip.util.DeploymentUtil.isSipModule(DeploymentUtil.java:9
    6)
    at com.bea.wcp.sip.engine.server.SipServerTailModule$1.visit(SipServerTa
    ilModule.java:127)
    at com.bea.wcp.sip.engine.server.SipServerTailModule.visitAllContexts(Si
    pServerTailModule.java:112)
    Truncated. see log file for complete stacktrace
    Caused By: java.lang.OutOfMemoryError: PermGen space
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:630)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:614)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:14
    1)
    at weblogic.utils.classloaders.GenericClassLoader.defineClass(GenericCla
    ssLoader.java:343)
    Truncated. see log file for complete stacktrace
    >
    <21 Apr, 2012 7:35:05 AM IST> <Warning> <J2EE> <BEA-160181> <An error was encoun
    tered and ignored during undeployment. The error was: weblogic.utils.ErrorCollec
    tionException:
    There are 2 nested errors:
    java.lang.OutOfMemoryError: PermGen space
    and
    java.lang.OutOfMemoryError: PermGen space
    weblogic.utils.ErrorCollectionException:
    There are 2 nested errors:
    java.lang.OutOfMemoryError: PermGen space
    and
    java.lang.OutOfMemoryError: PermGen space
    at weblogic.application.utils.StateMachineDriver.previousState(StateMach
    ineDriver.java:227)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:63)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.
    java:205)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.ja
    va:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(Deploym
    entStateChecker.java:161)
    Truncated. see log file for complete stacktrace
    >

    What options have you selected when you set-up WebLogic?
    You can increase the PermSize and MaxPermSize parameters of the JVM to avoid java.lang.OutOfMemoryError: PermGen space.
    These parameters can be set in the setDomainEnv file.

  • WLS 10.3.5 Managed server is not starting in Windows 7

    Hello there,
    I had installed SOA suite 11 and weblogic server 10.3.5. setDomainEnv is setting environment variables like below.
    Path
    C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\native;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bin;C:\Oracle\instantclient_11_2;C:\Oracle\oraclexe\app\oracle\product\10.2.0\server\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\QuickTime\QTSystem\;C:\Program Files\CREDANT\Shield v7.1\;C:\Program Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX;C:\Program Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX\Support binaries;C:\Program Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Broker;C:\Program Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Client;C:\Oracle\Middleware\jdeveloper\ant\bin;C:\Oracle\Middleware\jdk160_24\bin;C:\Oracle\product\10.2.0.1\BIN;C:\Program Files\Java\jre7\bin;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920_8
    Classpath
    C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\JDK160~1\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\Middleware\wlserver_10.3\sip\server\lib\weblogic_sip.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;.;C:\Oracle\Middleware\jdk160_24\lib;C:\Oracle\Middleware\jdeveloper\ant\lib;
    Now i have given this command in user_domains/../bin folder
    startManagedWebLogic.cmd soa_managed_server01 http://suchalam-ws:7002
    But the managed server is shutting down. below is the trace from windows7 command prompt.
    this server is being started in managed server independence mode in the absence of
    the admin server.>
    <Aug 30, 2012 1:13:28 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Aug 30, 2012 1:13:28 AM IST> <Info> <WorkManager> <BEA-002900> <Initializing se
    lf-tuning thread pool>
    <Aug 30, 2012 1:13:28 AM IST> <Notice> <LoggingService> <BEA-320400> <The log fi
    le C:\Oracle\Middleware\user_projects\domains\sudheers_domain\servers\soa_manage
    d_server01\logs\soa_managed_server01.log will be rotated. Reopen the log file if
    tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 30, 2012 1:13:28 AM IST> <Notice> <LoggingService> <BEA-320401> <The log fi
    le has been rotated to C:\Oracle\Middleware\user_projects\domains\sudheers_domai
    n\servers\soa_managed_server01\logs\soa_managed_server01.log00011. Log messages
    will continue to be logged in C:\Oracle\Middleware\user_projects\domains\sudheer
    s_domain\servers\soa_managed_server01\logs\soa_managed_server01.log.>
    <Aug 30, 2012 1:13:28 AM IST> <Notice> <Log Management> <BEA-170019> <The server
    log file C:\Oracle\Middleware\user_projects\domains\sudheers_domain\servers\soa
    managedserver01\logs\soa_managed_server01.log is opened. All server side log e
    vents will be written to this file.>
    Aug 30, 2012 1:13:30 AM oracle.security.jps.internal.common.util.XmlSchemaValida
    tionUtil$StrictErrorHandler warning
    WARNING: Failed to validate the xml content. SchemaLocation: schemaLocation valu
    e = 'http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd' must have e
    ven number of URI's. Location: line 2 column 272.
    <Aug 30, 2012 1:13:39 AM IST> <Notice> <Security> <BEA-090082> <Security initial
    izing using security realm myrealm.>
    <Aug 30, 2012 1:13:51 AM IST> <Warning> <JTA> <BEA-110503> <The migrator(the Adm
    inServer for manual JTA migration policy, or the Singleton Master for automatic
    JTA migration policy) is not available. Will skip JTA TRS failback because isStr
    ictOwnershipCheck is [false]. This may lead to potencial TLOG corruption if TRS
    of soa_managed_server01 has been migrated to backup server and the backup server
    is accessing the TLOG of soa_managed_server01. More safety can be achieved by s
    etting isStrictOwnershipCheck to [true].>
    <Aug 30, 2012 1:13:52 AM IST> <Warning> <Management> <BEA-141277> <The JMX MBean
    PlatformMBeanServerUsed attribute is true, but the Platform MBeanServer was cre
    ated without the hooks for the WLS security infrastructure. The Platform MBeanSe
    rver will NOT be used and Platform MBeans will NOT be available via the WLS Runt
    ime or Domain Runtime MBeanServers. This can occur if you have defined Platform
    MBeanServer system properties or JVM options (-Dcom.sun.management.jmxremote or
    JRockit -XManagement).
    To allow the Platform MBeanServer to be used, you must either remove the system
    properties/JVM options or start WLS with the following system property:
    -Djavax.management.builder.initial=weblogic.management.jmx.mbeanserver.WLSMBean
    ServerBuilder
    If you want to eliminate this log error and do not need Platform MBeans to be a
    vailable via WLS, then set the PlatformMBeanUsed attribute in the JMXMBean to fa
    lse.>
    <Aug 30, 2012 1:14:01 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STANDBY>
    <Aug 30, 2012 1:14:01 AM IST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Aug 30, 2012 1:14:04 AM IST> <Error> <Deployer> <BEA-149205> <Failed to initial
    ize the application 'wsm-pm' due to error weblogic.management.DeploymentExceptio
    n: [J2EE:160149]Error while processing library references. Unresolved applicatio
    n library references, defined in weblogic-application.xml: [Extension-Name: orac
    le.wsm.seedpolicies, Specification-Version: 11.1.1, Implementation-Version: 11.1
    .1, exact-match: false]..
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing lib
    rary references. Unresolved application library references, defined in weblogic-
    application.xml: [Extension-Name: oracle.wsm.seedpolicies, Specification-Version
    : 11.1.1, Implementation-Version: 11.1.1, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(
    CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.ja
    va:613)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineD
    river.java:52)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.j
    ava:184)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.jav
    a:58)
    Truncated. see log file for complete stacktrace
    >
    <Aug 30, 2012 1:14:04 AM IST> <Notice> <SipServer.Resource> <BEA-332401> <Initia
    lizing SipServer Resource with configuration com.bea.wcp.sip.management.descript
    or.beans.SipServerBeanImpl>
    <Aug 30, 2012 1:14:08 AM IST> <Notice> <WLSS.Engine> <BEA-330071> <WebLogic Sip
    Server "soa_managed_server01" patch version: WebLogic Server 10.3.5.0 Fri Apr 1
    20:20:06 PDT 2011 1398638
    Javax Server Pages Client Capable 1.2 Tue Jul 13 02:43:41 EDT 2010
    Expression Language 2.1 for JSP 1.0 Sun Jul 18 23:17:34 PDT 2010
    Javax Enterprise Servlets Client Capable 1.0 Thu Aug 2 12:41:25 EDT 2007
    Eclipse Java Development Tools 3.5.2 Thu Sep 2 09:47:11 EDT 2010
    WebLogic java compiler utils package Client Capable 1.2 Thu Feb 11 03:38:50 EST
    2010
    WebLogic WebApp Container Public API Client Capable 1.4 Fri Oct 1 20:01:15 PDT 2
    010
    Oracle WebLogic Server Module Dependencies 10.3 Thu Mar 3 14:37:52 PST 2011
    Oracle WebLogic Server on JRockit Virtual Edition Module Dependencies 10.3 Thu F
    eb 3 16:30:47 EST 2011
    ANTLR Java based compiler generator Client 2.7 Mon Jun 11 12:19:48 EDT 2007
    WebLogic Descriptors for J2EE 1.5 Wed May 5 14:32:58 EDT 2010
    WebLogic Descriptors for J2EE 1.5 Binding Bundle
    WebLogic Specific Descriptors 1.3 Tue Sep 14 18:48:42 PDT 2010
    WebLogic Specific Descriptors 1.3 Binding Bundle
    WebLogic Datasource 1.9 Tue Oct 26 13:50:26 PDT 2010
    WebLogic Datasource 1.9 Binding Bundle
    WebLogic Beangen Client Capable 1.7 Wed Feb 24 16:02:48 PST 2010
    WebLogic Beangen 1.7 Binding Bundle
    WLDF Accessor Client Capable 1.5 Fri Sep 3 17:10:52 EDT 2010
    WLDF Accessor 1.5 Binding Bundle
    WebLogic Management Core Interfaces Client Capable 2.8 Thu Mar 3 12:10:10 EST 20
    11
    WebLogic Management Core Interfaces 2.8 Binding Bundle
    WebLogic EJBGen Client Capable 1.1 Thu Jun 3 13:17:07 EDT 2010
    Apache Byte Code Engineering Library (BCEL) extracted from 5.2.zip from http://j
    akarta.apache.org/site/downloads/downloads_bcel.cgi with packages renamed from o
    rg.apache.bcel to com.bea.core.repackaged.apache.bcel Client 5.2 Tue May 15 09:5
    2:37 EDT 2007
    Apache commons collections package 3.2 Tue Mar 20 15:48:25 MDT 2007
    Apache commons lang package 2.1 Tue Mar 20 15:48:30 MDT 2007
    Apache commons pool package 1.3 Tue Mar 20 15:48:36 MDT 2007
    Apache commons io 1.4 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache commons fileupload 1.2.1 package 1.0 Wed Jun 2 17:36:36 EDT 2010
    Apache DOM implementation 1.0 Tue Mar 20 15:36:46 MDT 2007
    Apache Logging Support 1.0 Tue Mar 20 15:36:50 MDT 2007
    Apache OpenJPA classes 1.2 Thu Jul 22 05:16:07 EDT 2010
    XMLBeans - Apache SVN rev 962560 2.1 Thu Jul 15 09:52:54 EDT 2010
    BEA Logging Runtime Support Client Capable 1.8 Mon Jun 7 12:07:02 PDT 2010
    BEA Common Security Open SAML 1.0 Fri May 14 20:18:10 PDT 2010
    BEA OpenSAML 2.0 1.0 Wed Mar 24 13:18:27 PDT 2010
    bea-harvester-api2.0 Client Capable 2.3 Mon Feb 15 14:41:06 EST 2010
    bea-harvester-jmx2.0 Client Capable 2.3 Wed Feb 3 11:54:03 PST 2010
    bea-harvester-utils Client Capable 1.4 Mon Feb 15 14:41:06 EST 2010
    bea-mbean-typing-util 1.4 Wed Feb 24 19:15:33 EST 2010
    Javolution 3.7.19 3.7 Tue Aug 28 17:32:21 PDT 2007
    Joda-time 1.2.1 1.2 Tue Aug 28 17:32:27 PDT 2007
    BEA STAX Build Time Support 1.5 Tue May 4 07:32:25 PDT 2010
    BEA STAX Runtime Time Support Client Capable 1.7 Wed Aug 4 19:40:47 EDT 2010
    BEA Generic Annotations Client Capable 1.3 Sat Jul 11 00:30:54 EDT 2009
    BEA Kodo 1.4 Mon Feb 7 16:22:04 PST 2011
    BEA Kodo Integration Client Capable 1.6 Sun Nov 22 16:29:06 PST 2009
    BEA Kodo Integration 1.6 Binding Bundle
    BEA Kodo Integration Tools 1.4 Thu Feb 3 16:07:53 EST 2011
    XML Beans Marshalling (package renamed com.bea) SVN 962560 2.3 Thu Mar 3 12:10:1
    0 EST 2011
    WebLogic Utils Client Capable 1.9 Thu Mar 3 12:10:10 EST 2011
    Aspect 5.3 Fri Jun 4 14:55:18 PDT 2010
    BEA Apache Commons Logging Repackaged 1.2 Mon Jun 11 12:47:12 EDT 2007
    Spring Framework 1.1 Thu Dec 3 12:21:08 EST 2009
    Pitchfork 1.3 Thu Jun 3 13:17:07 EDT 2010
    ${description} 1.2 Fri Jun 25 16:25:26 EDT 2010
    CSS i18n 1.0 Fri Oct 8 10:32:52 EDT 2010
    CSS xacml 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML2 Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Engine Interfaces 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security API 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security Implementation 1.0 Fri Oct 8 10:32:52 EDT 2010
    BEA Common Security JDK Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 1.0 Fri Oct 8 10:32:52 EDT 2010
    Common Security SAML 2.0 Management JavaBeans 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Utilities 1.0 Fri Oct 8 10:32:52 EDT 2010
    SAML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    XACML Utils 1.0 Fri Oct 8 10:32:52 EDT 2010
    Security Provider Environment 1.0 Fri Oct 8 10:32:52 EDT 2010
    RSA certj 3.1 Wed May 5 15:11:55 PDT 2010
    Netscape LDAP JDK 1.2 Mon Jun 7 15:56:47 EDT 2010
    Commons Networking Utilty classes 1.0 Wed Feb 6 15:01:03 PST 2008
    WebLogic SAAJ 1.6 Wed Jun 16 22:02:31 EDT 2010
    WebLogic STAX Client Capable 1.9 Thu Feb 10 18:00:52 PST 2011
    jaxb-impl.jar taken from Glassfish JAXB 2.1.9 1.0 Fri Aug 20 14:37:07 EDT 2010
    jaxb-impl.jar taken from Glassfish JAXB 2.1.12 1.0 Thu May 6 16:10:04 PDT 2010
    resolver.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:24 EST 2009
    Fastinfoset.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu Dec 3 11:46:27 EST 2009
    jaxws-rt.jar taken from Glassfish JAXWS 2.1.5 1.2 Mon Feb 28 17:53:01 PST 2011
    Java.net implementation of MimePull.jar taken from Glassfish JAXWS 2.1.5 1.0 Thu
    Dec 3 11:46:33 EST 2009
    Codehaus STaX Interfaces 3.0.1 1.0 Mon Mar 8 20:49:50 PST 2010
    Woodstox STaX Parser 4.0.5 1.0 Thu Dec 3 11:35:43 EST 2009
    jaxws-tools.jar taken from Glassfish JAXWS 2.1.5 1.1 Fri Sep 24 17:55:05 PDT 201
    0
    Java.net Stax Extensions 1.0 Tue Jun 3 07:12:06 PDT 2008
    Java.net xml stream buffer 1.0 Tue Mar 17 05:24:12 PDT 2009
    Jakarta ORO 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Enterprise Activation 1.1 Tue Apr 8 09:31:17 PDT 2008
    Javax Annotation 1.0 Fri Dec 25 09:02:47 PST 2009
    Javax Interceptor 1.0 Tue Mar 20 15:37:16 MDT 2007
    Javax Enterprise Beans 3.0 Mon Jun 11 12:21:01 EDT 2007
    Java Data Objects 2.0 Mon Jun 11 12:20:56 EDT 2007
    Java Enterprise Deployment APIs 1.2 Tue Mar 20 15:37:28 MDT 2007
    Java Enterprise Messaging 1.1 Mon Jun 11 12:21:11 EDT 2007
    Java Web Services 2.0 Tue Mar 20 15:37:37 MDT 2007
    Javax Enterprise Mail 1.1 Mon Jul 6 10:41:09 MDT 2009
    Java Enterprise Management APIs 1.0 Tue Mar 20 15:37:49 MDT 2007
    Java Persistence Client Capable 1.0 Tue Oct 7 12:18:34 PDT 2008
    Java Connector 1.5 Mon Jun 11 12:22:07 EDT 2007
    Java Authorization Contract for Containers 1.0 Wed Feb 6 15:01:03 PST 2008
    Javax Transaction APIs Client Capable 1.0 Thu Aug 2 12:42:14 EDT 2007
    JAXB 2.1 Mon Jun 11 12:22:53 EDT 2007
    Java XML Registry 1.0 Wed Feb 6 15:01:03 PST 2008
    Java XML Soap Extensions 1.3 Mon Jun 11 12:22:59 EDT 2007
    Java Stream XML Extensions 1.1 Mon Jun 11 12:23:05 EDT 2007
    JAX-WS APIs 2.1 Mon Jun 11 12:23:16 EDT 2007
    Java API for XML-based RPC 1.2 Mon Jun 11 12:23:10 EDT 2007
    Monfox Dynamic SNMP Agent 1.1 Fri Mar 19 05:46:27 MDT 2010
    Serp bytecode manipulation framework 1.14.3 Fri Jun 11 12:06:08 PDT 2010
    WebLogic Apache Classes Client Capable 1.2 Thu Feb 18 22:06:19 PST 2010
    WebLogic BeanInfo Caching and Discovery Client Capable 2.4 Sat Oct 25 20:46:29 P
    DT 2008
    WebLogic Descriptor Client Capable 1.9 Tue Jul 20 16:03:09 EDT 2010
    Repackaged ASM-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-commons-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-tree-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Repackaged asm-util-3.2 1.0 Fri Jul 31 19:30:27 MDT 2009
    Oracle JFR 1.0 Thu Feb 18 19:06:33 PST 2010
    WebLogic Diagnostics Core Interfaces Client Capable 2.5 Thu Jun 3 05:20:41 PDT 2
    010
    WebLogic Diagnostics Logging Client Capable 1.2 Fri Dec 12 11:37:59 MST 2008
    WebLogic Diagnostics Query Module Client Capable 1.2 Tue Oct 27 02:48:36 PDT 200
    9
    WebLogic Diagnostics Instrumentor Tool 1.7 Tue May 18 03:51:46 PDT 2010
    WebLogic Diagnostics Instrumentor Config Tool 1.7 Tue Jun 29 16:41:19 EDT 2010
    WebLogic Diagnostics JRockit Flight Recorder Interfaces Client Capable 1.1 Fri O
    ct 29 16:32:05 EDT 2010
    Diagnostics Notifications Module Client Capable 1.4 Sun Nov 22 16:03:32 PST 2009
    BEA Logging Runtime Support Client Capable 1.5 Thu Apr 29 20:43:42 EDT 2010
    WebLogic i18n Runtime Support Client Capable 1.8 Fri Sep 10 08:12:34 EDT 2010
    WebLogic i18n Build Support Client Capable 1.5 Fri Feb 19 15:03:15 EST 2010
    WebLogic I18N tools Client Capable 1.3 Sun Nov 22 16:03:32 PST 2009
    WebLogic Management JMX Interfaces 1.4 Thu Aug 12 11:16:22 PDT 2010
    WebLogic Security Provider Generation Tool 1.5 Wed Oct 14 16:39:28 MDT 2009
    WebLogic Security Provider Generation Tool Client Capable 1.5 Wed Oct 14 16:39:2
    8 MDT 2009
    WebLogic Messaging Kernel Client Capable 1.8 Mon Aug 23 21:42:11 EDT 2010
    WebLogic Resource Pool Client Capable 1.7 Mon Sep 27 12:00:08 EDT 2010
    WebLogic Socket Muxer API Client Capable 1.2 Thu Apr 1 21:16:27 EDT 2010
    WebLogic RMI Client Capable 1.10 Tue Mar 22 16:56:32 PDT 2011
    Common Security WebLogic Server Integration Support 1.0 Fri Oct 8 10:32:52 EDT
    2010
    Server Lifecycle Interfaces Client Capable 1.4 Fri Feb 19 15:03:15 EST 2010
    WebLogic Store Client Capable 1.7 Fri Dec 17 16:52:31 EST 2010
    WebLogic STORE GXA Client Capable 1.6 Mon Aug 23 21:16:10 EDT 2010
    WebLogic Store Admin Tool Client Capable 1.2 Thu Jan 21 10:24:18 PST 2010
    WebLogic JDBC Store Client Capable 1.3 Mon May 17 10:46:33 PDT 2010
    WebLogic JTA implementation Client Capable 2.7 Fri Sep 17 12:19:45 PDT 2010
    WebLogic Utils 1.9 Thu Mar 3 12:10:10 EST 2011
    Agent Utililities 1.1 Tue Feb 16 00:16:03 EST 2010
    WebLogic Utility Classloader implementations Client Capable 1.9 Wed Mar 2 14:10:
    04 PST 2011
    WebLogic Utils for working with Expressions Client Capable 1.4 Tue Sep 29 14:45:
    53 EDT 2009
    WebLogic Utils for Dynamically Generated Class Wrappers Client Capable 1.4 Fri F
    eb 13 14:44:23 MST 2009
    WebLogic Timers Client Capable 1.7 Thu Feb 18 13:08:44 EST 2010
    WebLogic Work Manager Client Capable 1.10 Thu Feb 17 10:25:54 PST 2011
    WebLogic Workarea Client Capable 1.7 Wed Feb 24 17:18:56 PST 2010
    WebLogic XML XPath Implementation Client Capable 1.4 Mon Feb 22 15:07:14 PST 201
    0
    Weblogic Tuxedo Connector Core Client Capable 1.5 Sat Jul 3 19:05:38 EDT 2010
    WebLogic Security 1.0 Fri Oct 8 10:32:52 EDT 2010
    Weblogic Server Java Authentication Helper Classes Client Capable 1.1 Mon Jul 5
    20:42:35 EDT 2010
    Weblogic Server Message Digest Utilities Client Capable 1.0 Thu Aug 2 12:51:30 E
    DT 2007
    Weblogic Server Authenticated Subject Client Capable 1.1 Thu Oct 28 05:46:37 PDT
    2010
    Weblogic Server Authenticated Subject Client Capable 1.5 Thu Sep 9 10:23:21 MDT
    2010
    PrintingSecurityManager - PSM 1.1 Tue Feb 16 05:30:08 PST 2010
    WebLogic security ssl classes 1.0 Tue Jun 15 17:39:53 EDT 2010
    WebLogic Nodemanager Plugin Client Capable 1.3 Tue Nov 18 18:23:10 EST 2008
    nodemanager module for managed processes 1.0 Thu Apr 8 15:14:38 PDT 2010
    WebLogic JMS Pool Client Capable 1.8 Thu Mar 3 14:11:40 PST 2011
    Contains compiled schema type from WLS 9.0 for WLP compatibility 1.3 Wed Feb 24
    19:15:33 EST 2010
    WebLogic Http Pub/Sub Module Client Capable 1.6 Mon Jul 12 02:31:07 EDT 2010
    Class Redefinition Project 1.5 Mon May 10 19:48:21 EDT 2010
    Class Redefinition Project Client Capable 1.5 Mon Apr 5 17:00:52 PDT 2010
    Class Redefinition Project 1.5 Binding Bundle
    Commonj SDO 1.0 Wed Sep 24 19:11:23 PDT 2008
    WebLogic Coherence Descriptor 1.1 Wed May 5 15:17:47 EDT 2010
    WebLogic Coherence Descriptor 1.1 Binding Bundle
    This module contains all message catalogs 1.1 Fri Dec 17 08:04:35 PST 2010
    WebLogic WebService Public API's 1.1 Tue Sep 21 22:15:05 EDT 2010
    WebLogic EclipseLink Integration 1.0 Thu Feb 25 14:56:43 PST 2010
    WebLogic SCA Client 1.0 Thu Feb 25 00:27:10 EST 2010
    WebLogic RAC Module UCP Client Capable 1.0 Mon Sep 13 09:03:00 PDT 2010
    BEA Patches of apache ant Client Capable 1.2 Wed Jan 13 08:48:17 PST 2010
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server Datatier 10.3.4.0 at 710154 built on: 2010/09/30
    Oracle WebLogic Server 10.3.4.0 at 710154 built on: 2010/09/30
    WebLogic SIPServer Extension API 10.3.4.0 at 709997 built on 2010/09/27
    WebLogic SIPServer Extension API 10.3.4 at 709997 built on 2010/09/27
    WebLogic SIPServer CallState 10.3.4 at 709997 built on 2010/09/27
    Oracle WebLogic Communications SCTP 10.3.1 at 688160 built on 2009/03/11
    WebLogic WebService Databinding Plugins 1.3 Wed Dec 1 17:41:28 EST 2010
    WebLogic WebService Databinding 1.3 Tue Oct 18 16:38:56 EDT 2011
    WebLogic SIP Activator 10.3.4 at 710163 built on 2010/09/30
    >
    <Aug 30, 2012 1:14:08 AM IST> <Error> <WLSS.Engine> <BEA-330075> <There are no s
    ip nor diameter channels targeted to server "soa_managed_server01">
    <Aug 30, 2012 1:14:08 AM IST> <Error> <WLSS.Engine> <BEA-330049> <Failed to star
    t the sip service, shutting down>
    C:\Oracle\Middleware\user_projects\domains\sudheers_domain\bin
    Thanks in advance,
    Sudheer

    Hi Vlad, Kalyan
    Thanks for the response. Actually i am not planning to configure weblogic SIP... as it may need little insight. I just created domain including everything.
    Now i have created a new domain with basic functionality with default configuration. Now everything is working fine. I can see the Admin console as well.
    But i have stuck up in running the EM console. Below is the CMD prompt trace.
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.
    C:\Users\suchalam>cd C:\Oracle\Middleware\user_projects\domains\sudheer_domain\b
    in
    C:\Oracle\Middleware\user_projects\domains\sudheer_domain\bin>startManagedWebLog
    ic.cmd soa_server1
    ** Setting up SOA specific environment for win...
    PATH=C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\native;C:\Oracle\MIDDLE~1
    \patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\nat
    ive\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\O
    RGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bi
    n;C:\Oracle\instantclient_11_2;C:\Oracle\oraclexe\app\oracle\product\10.2.0\serv
    er\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System
    32\WindowsPowerShell\v1.0\;C:\Program Files\CREDANT\Shield v7.1\;C:\Program File
    s (x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX;C:\Program Files (
    x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX\Support binaries;C:\P
    rogram Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Broker;C:\P
    rogram Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Client;C:\O
    racle\Middleware\jdeveloper\ant\bin;C:\Oracle\product\10.2.0.1\BIN;C:\Oracle\Mid
    dleware\jdk160_24\bin;;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920
    _8;C:\Oracle\Middleware\Oracle_SOA1\soa\thirdparty\edifecs\XEngine\bin
    USER_MEM_ARGS=-Xms512m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
    JAVA_OPTIONS=-Dweblogic.security.SSL.trustedCAKeyStore="C:\Oracle\Middleware\wls
    erver_10.3\server\lib\cacerts" -Xverify:none
    ** End SOA Specific environment setup for win.
    ** SOA specific environment is already set. Skipping ...
    JAVA Memory arguments: -Xms512m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jdbc_11.1.1\ojdbc6dms.jar;C
    :\Oracle\Middleware\Oracle_SOA1\soa\modules\user-patch.jar;C:\Oracle\Middleware\
    Oracle_SOA1\soa\modules\soa-startup.jar;;C:\Oracle\MIDDLE~1\patch_wls1035\profil
    es\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_jd
    ev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDD
    LE~1\JDK160~1\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic_sp
    .jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\mo
    dules\features\weblogic.server.modules_10.3.5.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.
    3\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.j
    ar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\Oracle\MIDDLE~
    1\ORACLE~1\soa\modules\commons-cli-1.1.jar;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modul
    es\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;C:\Oracle\Middleware\Oracle_SOA1\so
    a\modules\oracle.soa.common.adapters_11.1.1\oracle.soa.common.adapters.jar;C:\Or
    acle\Middleware\Oracle_SOA1\communications\modules\usermessaging-config_11.1.1.j
    ar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.xdk_11.1.0\xsu12.jar;C:\Oracle\MID
    DLE~1\modules\features\weblogic.server.modules.xquery_10.3.1.0.jar;C:\Oracle\Mid
    dleware\Oracle_SOA1\soa\modules\db2jcc4.jar;C:\Oracle\MIDDLE~1\USER_P~1\domains\
    SUDHEE~2\config\soa-infra;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\fabric-ur
    l-handler_11.1.1.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\quartz-all-1.6
    .5.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.fabric_11.1.1\ora
    cle.soa.fabric.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules\oracle.soa.fabri
    c_11.1.1\fabric-runtime-ext-wls.jar;C:\Oracle\Middleware\Oracle_SOA1\soa\modules
    \oracle.soa.adapter_11.1.1\oracle.soa.adapter.jar;C:\Oracle\Middleware\Oracle_SO
    A1\soa\modules\oracle.soa.b2b_11.1.1\oracle.soa.b2b.jar;C:\Oracle\MIDDLE~1\ORACL
    E~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\derby
    \lib\derbyclient.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar;C:\Oracle
    \Middleware\jdeveloper\ant\lib;C:\Oracle\Middleware\jdk160_24\lib;
    PATH=C:\Oracle\MIDDLE~1\patch_wls1035\profiles\default\native;C:\Oracle\MIDDLE~1
    \patch_jdev1111\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\nat
    ive\win\32;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\O
    RGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JDK160~1\jre\bin;C:\Oracle\MIDDLE~1\JDK160~1\bi
    n;C:\Oracle\instantclient_11_2;C:\Oracle\oraclexe\app\oracle\product\10.2.0\serv
    er\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System
    32\WindowsPowerShell\v1.0\;C:\Program Files\CREDANT\Shield v7.1\;C:\Program File
    s (x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX;C:\Program Files (
    x86)\SSH Communications Security\SSH Tectia\SSH Tectia AUX\Support binaries;C:\P
    rogram Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Broker;C:\P
    rogram Files (x86)\SSH Communications Security\SSH Tectia\SSH Tectia Client;C:\O
    racle\Middleware\jdeveloper\ant\bin;C:\Oracle\product\10.2.0.1\BIN;C:\Oracle\Mid
    dleware\jdk160_24\bin;;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\32\oci920
    _8;C:\Oracle\Middleware\Oracle_SOA1\soa\thirdparty\edifecs\XEngine\bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b50)
    Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode)
    Starting WLS with line:
    C:\Oracle\MIDDLE~1\JDK160~1\bin\java -client -Xms512m -Xmx512m -XX:PermSize=12
    8m -XX:MaxPermSize=512m -Dweblogic.Name=soa_server1 -Djava.security.policy=C:\Or
    acle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Dweblogic.security.SSL.trus
    tedCAKeyStore="C:\Oracle\Middleware\wlserver_10.3\server\lib\cacerts" -Xverify:
    none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MID
    DLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -D
    common.components.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.ap
    ache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Ddomain.ho
    me=C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2 -Djrockit.optfile=C:\Oracle\MIDD
    LE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.server.conf
    ig.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2\config\FMWCON~1\servers\soa_
    server1 -Doracle.domain.config.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2\
    config\FMWCON~1 -Digf.arisidbeans.carmlloc=C:\Oracle\MIDDLE~1\USER_P~1\domains\
    SUDHEE~2\config\FMWCON~1\carml -Digf.arisidstack.home=C:\Oracle\MIDDLE~1\USER_P
    ~1\domains\SUDHEE~2\config\FMWCON~1\arisidprovider -Doracle.security.jps.config=
    C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2\config\fmwconfig\jps-config.xml -Do
    racle.deployed.app.dir=C:\Oracle\MIDDLE~1\USER_P~1\domains\SUDHEE~2\servers\soa_
    server1\tmp\_WL_user -Doracle.deployed.app.ext=\- -Dweblogic.alternateTypesDirec
    tory=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~
    1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Djava.protocol.handler.pkgs=oracle
    .mds.net.protocol"|"oracle.fabric.common.classloaderurl.handler"|"oracle.fabric.
    common.uddiurl.handler"|"oracle.bpm.io.fs.protocol -Dweblogic.jdbc.remoteEnable
    d=false -Doracle.security.jps.policy.migration.validate.principal=false -da:org
    .apache.xmlbeans... -Dsoa.archives.dir=C:\Oracle\Middleware\Oracle_SOA1\soa -Dso
    a.oracle.home=C:\Oracle\Middleware\Oracle_SOA1 -Dsoa.instance.home=C:\Oracle\MID
    DLE~1\USER_P~1\domains\SUDHEE~2 -Dtangosol.coherence.clusteraddress=227.7.7.9 -D
    tangosol.coherence.clusterport=9778 -Dtangosol.coherence.log=jdk -Djavax.xml.soa
    p.MessageFactory=oracle.j2ee.ws.saaj.soap.MessageFactoryImpl -Dweblogic.transact
    ion.blocking.commit=true -Dweblogic.transaction.blocking.rollback=true -Djavax.n
    et.ssl.trustStore=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks -Dem.or
    acle.home=C:\Oracle\Middleware\oracle_common -Djava.awt.headless=true -Dbam.orac
    le.home=C:\Oracle\Middleware\Oracle_SOA1 -Dums.oracle.home=C:\Oracle\Middleware\
    Oracle_SOA1 -Dweblogic.management.discover=false -Dweblogic.management.server=ht
    tp://SUCHALAM-WS:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.lo
    gErrorsToConsole=false -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1035\prof
    iles\default\sysext_manifest_classpath;C:\Oracle\MIDDLE~1\patch_jdev1111\profile
    s\default\sysext_manifest_classpath weblogic.Server
    <Sep 2, 2012 6:51:28 PM IST> <Info> <Security> <BEA-090905> <Disabling CryptoJ J
    CE Provider self-integrity check for better startup performance. To enable this
    check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Sep 2, 2012 6:51:29 PM IST> <Info> <Security> <BEA-090906> <Changing the defaul
    t Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable
    this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Sep 2, 2012 6:51:30 PM IST> <Info> <WebLogicServer> <BEA-000377> <Starting WebL
    ogic Server with Java HotSpot(TM) Client VM Version 19.1-b02 from Sun Microsyste
    ms Inc.>
    <Sep 2, 2012 6:51:32 PM IST> <Info> <Security> <BEA-090065> <Getting boot identi
    ty from user.>
    Enter username to boot WebLogic server:weblogic
    Enter password to boot WebLogic server:
    <Sep 2, 2012 6:51:42 PM IST> <Info> <Management> <BEA-141107> <Version: WebLogic
    Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <Sep 2, 2012 6:51:45 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server stat
    e changed to STARTING>
    <Sep 2, 2012 6:51:45 PM IST> <Info> <WorkManager> <BEA-002900> <Initializing sel
    f-tuning thread pool>
    <Sep 2, 2012 6:51:46 PM IST> <Notice> <Log Management> <BEA-170019> <The server
    log file C:\Oracle\Middleware\user_projects\domains\sudheer_domain\servers\soa_s
    erver1\logs\soa_server1.log is opened. All server side log events will be writte
    n to this file.>
    <Sep 2, 2012 6:51:59 PM IST> <Notice> <Security> <BEA-090082> <Security initiali
    zing using security realm myrealm.>
    <Sep 2, 2012 6:53:56 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server stat
    e changed to STANDBY>
    <Sep 2, 2012 6:53:56 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server stat
    e changed to STARTING>
    <Sep 2, 2012 7:19:07 PM IST> <Warning> <J2EE> <BEA-160140> <Unresolved optional
    package references (in META-INF/MANIFEST.MF): [Extension-Name: oracle.applcore.m
    odel, Specification-Version: 0.1, Implementation-Version: 11.1.1.0.0, referenced
    from: C:\Oracle\Middleware\user_projects\domains\sudheer_domain\servers\soa_ser
    ver1\tmp\_WL_user\usermessagingserver\y73z7z]. Make sure the referenced optional
    package has been deployed as a library.>
    <Sep 2, 2012 7:19:12 PM IST> <Warning> <EJB> <BEA-015036> <In the EJB MessageRec
    eiverBean(Application: usermessagingserver, EJBComponent: sdpmessagingengine.jar
    ), the value for the activation config property 'connectionFactoryJNDIName' will
    be ignored since it is overridden with the value 'OraSDPM/QueueConnectionFactor
    y';>
    It kept on waiting here for so long. Can u please suggest me what is missing here.
    Thanks in advance,
    Sudheer

Maybe you are looking for

  • Mac Pro 2.0 outperforming Mac Pro 2.66, WHY?

    Ok Guys, I am stumped here and hopefully someone can shed some light. I have 2 Mac Pros: System 1 - 2 x 2.66 with 9GB of memory and System 2 - a recently acquired 2 x 2.0 with 5 GB of memory. System 1 has banks filled as follows: Riser A Bank 1: 2gb

  • Ipod Touch 1st Generation Power On Problem?

    I own a 1st generation ipod touch which l cannot access. I was updating an app then my ipod froze which led to a full power-off. I turned the ipod back on. The apple logo will come up after holding the power on button, but my ipod touch was turning o

  • "No payload set" error in CQ5 workflow

    I'm trying to programmatically start a workflow from an OSGi service/servlet. Everything seems to work fine, I checked the WorkflowData and the model to verify they are correct. However, when the startWorkflow method runs, it creates a new instance o

  • SE48 and SE49 transactions..

    dear experts, from which version onwards the T.Codes SE48 and SE49 are available?... thaks in advance.

  • Web gallery syncing (Aperture 2)  - Why does it resend all images?

    Hi All, I have a number of web galleries, many of which I like to continually update as I make new photos. But when, for instance, I want to add a single photo to a gallery that already contains 50 images, I tell it to synchronize the gallery, it upl