Remove the unnecessary tags in XML using PL/SQL

Hi Friends
from the below XML, its generate by a complex SQL query, Now we need to remove all the object type tags, and all the empty tags.
Version - PL/SQL Release 11.2.0.3.0 - Production
<MajorLine>
    <MAJOR_LINE_OBJECT_TYPE> -- Need to remove these Objects types showing in the XML
        <LINEID>143424538</LINEID>
        <ITEMNAME>TC-ABC-123</ITEMNAME>
        <ITEMPATH>78245</ITEMPATH>
        <QUANTITY>10</QUANTITY>
        <SERVICELINE/> -- Need to remove all the Empty tags
        <MINORLINE>
            <MINOR_LINE_OBJECT_TYPE> -- Need to remove these Objects types showing in the XML
                <LINEID>143424799</LINEID>
                <ITEMNAME>TCC-abc</ITEMNAME>
                <ITEMPATH>78245</ITEMPATH>
                <QUANTITY>10</QUANTITY>
                <SERVICELINE/>-- Need to remove all the Empty tags
                <MINOR_MINOR_LINES>
                    <M_MINOR_LINE_TYPE> -- Need to remove these Objects types showing in the XML
                        <LINEID>143424798</LINEID>
                        <ITEMNAME>SF15-abc-xyz</ITEMNAME>
                        <ITEMPATH>78245</ITEMPATH>
                        <QUANTITY>10</QUANTITY>
                  </M_MINOR_LINE_TYPE>-- Need to remove these Objects types showing in the XML
                </MINOR_MINOR_LINES>
            </MINOR_LINE_OBJECT_TYPE>--Need to remove these Objects types showing in the XML
        </MINORLINE>
    </MAJOR_LINE_OBJECT_TYPE>-- Need to remove these Objects types showing in the XML
</MajorLine>
i tried one of the queries posted in this blog ,PFB  to remove the empty tags , but it didnt work for me unfortunately. Please help.
PFB
WITH sample_data AS (
  SELECT xmltype('<MajorLine>
    <MAJOR_LINE_OBJECT_TYPE>
        <LINEID>143424538</LINEID>
        <ITEMNAME>hijk</ITEMNAME>
        <ITEMPATH>78245</ITEMPATH>
        <QUANTITY>10</QUANTITY>
        <SERVICELINE/>
        <MINORLINE>
            <MINOR_LINE_OBJECT_TYPE>
                <LINEID>143424799</LINEID>
                <ITEMNAME>efg</ITEMNAME>
                <ITEMPATH>78245</ITEMPATH>
                <QUANTITY>10</QUANTITY>
                <SERVICELINE/>
                <MINOR_MINOR_LINES>
                    <M_MINOR_LINE_TYPE>
                        <LINEID>143424798</LINEID>
                        <ITEMNAME>abc</ITEMNAME>
                        <ITEMPATH>78245</ITEMPATH>
                        <QUANTITY>10</QUANTITY>
                    </M_MINOR_LINE_TYPE>
                </MINOR_MINOR_LINES>
            </MINOR_LINE_OBJECT_TYPE>
        </MINORLINE>
    </MAJOR_LINE_OBJECT_TYPE>
</MajorLine>') xmldoc
  FROM dual
SELECT deleteXML( t.xmldoc
                , '/MajorLine/*[.="" or contains(.,"?")]'
                ) as result
FROM sample_data t
My email ID is [email protected] -- You can reach me
thanks in advance ... Arun thomas T

Hey Odie. Great to see you again, the query is
SELECT XMLELEMENT (
          "MajorLine",
          major_line_object_type (
oola_major.line_id,
oola_major.ordered_item,
oola_major.header_id,
oola_major.ordered_quantity,
             CAST (
                MULTISET (
                   SELECT oola_ser.line_id,
oola_ser.ordered_item,
--oola_ser.header_id,
oola_ser.ordered_quantity,
CAST (
                             MULTISET (
SELECT oola_ser2.service_start_date,
oola_ser2.service_end_date,
oola_ser2.service_duration
                                  FROM oe_order_lines_all oola_ser2
                                 WHERE oola_major.line_id =
oola_ser2.service_reference_line_id
                                       AND oola_ser2.header_id =
oola_major.header_id) AS service_period_table_type)
FROM oe_order_lines_all oola_ser
                    WHERE oola_major.line_id =
                             oola_ser.service_reference_line_id
AND oola_ser.header_id = oola_major.header_id) --As of now excluding cross order service line
AS SERVICE_TABLE_TYPE),
             CAST (
                MULTISET (
                   SELECT oola_minor.line_id,
oola_minor.ordered_item,
oola_minor.header_id,
oola_minor.ordered_quantity,
CAST (
                             MULTISET (
                                SELECT oola_ser1.line_id,
oola_ser1.ordered_item,
                                       -- oola_ser1.header_id,
oola_ser1.ordered_quantity,
                                       CAST (
                                          MULTISET (
                                             SELECT oola_ser3.
service_start_date,
oola_ser3.
service_end_date,
oola_ser3.
service_duration
                                               FROM oe_order_lines_all oola_ser3
                                              WHERE oola_minor.line_id =
oola_ser3.
service_reference_line_id
AND oola_ser3.header_id =
oola_major.
header_id) AS service_period_table_type)
                                  FROM oe_order_lines_all oola_ser1
                                 WHERE oola_minor.line_id =
oola_ser1.service_reference_line_id
                                       AND oola_ser1.header_id =
oola_major.header_id) --As of now excluding cross order service line
AS SERVICE_TABLE_TYPE),
CAST (
                             MULTISET (
                                SELECT oola_minor_m.line_id,
oola_minor_m.ordered_item,
                                       oola_minor_m.header_id,
oola_minor_m.ordered_quantity
                                  FROM oe_order_lines_all oola_minor_m
                                 WHERE oola_minor.line_id =
                                          oola_minor_m.link_to_line_id
                                       AND oola_minor_m.header_id =
oola_major.header_id) --As of now excluding cross order service line
                                                                   AS m_minor_line_table_type)
FROM oe_order_lines_all oola_minor
                    WHERE    --oola_minor.top_model_line_id=oola_major.line_id
oola_minor.link_to_line_id = oola_major.line_id
AND oola_minor.header_id = oola_major.header_id
AND oola_minor.item_type_code != 'SERVICE') AS MINOR_LINE_TABLE_TYPE)))
          AS "XMLOutput"
  FROM oe_order_lines_all oola_major
WHERE oola_major.line_id = 143424538 AND oola_major.link_to_line_id IS NULL;
can we rewirte it to get the desired out put ..
Desired output is Just remove the Object_type tags and empty tags coming in the output xml.
The previous issues i mentioned are not solved yet  . actually will update the challenges ..
Odie .. thanks.. again

Similar Messages

  • How to remove the header tag in the XML data ?

    Hi All,
    I am sending an XML data from SFTP to Proxy, in that I want to remove the header tag (first tag) from the xml, while loading the data. how to do that ?

    Hi,
          It is not about the thing that, whether your source is XML or flat file. If you dont want some thing in your source file , dont consider it and dont map it with your target structure. think that, your not getting the header in your source.  What is the header here.
    <Emp_details>
    <Emp_Id> Employee No </Emp_Id>
    <Emp_Name> Employee Name </Emp_Name>
    </Emp_details>
    <Emp_details>
    <Emp_Id> 1234 </Emp_Id>
    <Emp_Name> xxxx </Emp_Name>
    </Emp_details>
    <Emp_details>
    <Emp_Id> 5678 </Emp_Id>
    <Emp_Name> yyy </Emp_Name>
    </Emp_details>
    you have two fields under node Emp_details. What do u want to avoid here?
    Regards,
    Reyaz

  • How do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

    how do i remove the songs from my iphone used to be easy with old version of itunes just unticked them but cant seem to find it any where on new version

  • Spry slideshow - how can i remove the title code when i use the widget??

    When I insert the slideshow widget, there is code for a title. I don't need this and don't want to have to remove the code each time I use the widget.
    Where can I change this permanently?
    <ul id="ImageSlideShow" title="Bookcase03091-1">
                    <li><a href="/aphoto1/mar9/bookcase-1a.jpg" title="White Orchids">
    I want to remove title information. I looked through all the JS pages and couldn't find the place to do this. Othewise the slideshow works great. I am using Dreamweaver CS5.
    Thanks for helping me!

    Gramps thanks for getting back to me. I went to the Widget Browser, opened the slideshow with film strip and clicked on configure.
    I Disabled the sliding titles and made the main title blank. Then I saved the preset.
    Unfortunately it didn't work. I tried three times. The sliding titles still appear.
    Please try it and see if you can get it to work- thank you!

  • How do I remove the acronym tags from menu items in Business Catalyst?

    Hello, can anybody answer this for me please? Not having any success googling or foruming it so far.
    How do I remove the acronym tags from menu items in Business Catalyst? 
    Thanks in advance
    Grant

    These are titles and in the dynamic menu will be the item description per item.
    These are actually important though and you do not really want to remove them but make them better and reword them other then the same as the link test. These are good for the user experience as well as SEO. A bot knowing a description of a link and where it is going coupled with the URL's and the title of an anchor are all important aspects of your sites SEO.

  • Remove the bilingual "tag"

    How do I remove the bilingual "tag" that appears at the bottom of every email I send? Thanks!
    Solved!
    Go to Solution.

    Here you go:
    Thanks,
    Bifocals
    http://bis.na.blackberry.com/html?brand=bell
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • [svn:bz-trunk] 14752: Remove the unnecessary dependency of blazeds-team app on data project.

    Revision: 14752
    Revision: 14752
    Author:   [email protected]
    Date:     2010-03-14 13:29:27 -0700 (Sun, 14 Mar 2010)
    Log Message:
    Remove the unnecessary dependency of blazeds-team app on data project.
    Modified Paths:
        blazeds/trunk/development/eclipse/projects/java/blazeds-team.war/.classpath

    I like it so far, good job I'll still always stick to the CLI for my package management most likely, but it's nice to have good GUIs out there, I always keep my eye out for them, and this is good so far. One small suggestion is for the AUR package, I don't think it should automatically add stuff to the daemons line in rc.conf, just my opinion. The install script should tell you to do it, but not actually do it, in my opinion, that's how every other package I see does it, but that's a minor issue

  • Removing the [Spam] tag from non Spam emails

    I have a few emails which come through to my Inbox with [Spam] in the subject field.  These emails are not Spam.  How do I remove the [Spam] tag and tell the system that they are not Spam. 
    If the system thinks they are Spam, why don't they go straight into the Spam folder?

    Hi orange_dude,
    Check out this link for more info on how to filter spam. Let me know if this helps.
    Thanks
    Neil
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • How to change the password of a schema using Oracle SQL Developer

    Hi need to change the password of a schema using Oracle SQL Developer how do i do it?

    Hi
    alter user username identified by password

  • What are the advanteges and disadvanteges of using pl/sql over hibernate

    i knwo that pl/sql are well structure and provide a lot of functionalities with oracle databse , but my question is the hibernate might give some advnateges of scalability over pl/sql.
    so what are the advanteges and disadvanteges of using pl/sql over hibernate?
    and does oracle recommend using hibernate for connecting JSP with oracle 11i , or it is better to connect the JSP pages with oracle databse using pl/sql ?

    812643 wrote:
    but if i search for the diferencess then there are a lot of opinions about this ..., specially when they say that with hibernate you can integrate with any DB , and it provides object printed architecture, etc.All databases are not equal. This is a basic and fundamental fact. SQL-Server is not Oracle. Oracle is not SQL-Server. As it is the case with Sybase, Ingres, DB2 and other database products. They are all different. And there are some very core differences between them.
    So how would a product like Hibernate treat these database products with their differences? By using the lowest common denominator. Which means your expensive database product is dumbed down - and even MS Access will likely have better and more features.
    You also need to decide what is the "permanent" part in your architecture. What is going to the core? What is the expensive part? The app server (with Hibernate)? Or the database server?
    What are you likely to change next year? The app server server? Or the database server?
    In the vast majority of cases, the core is the database server. That is your biggest expense and investment. As it should be - as it holds that which is most precious to business, data. You want to ensure the integrity of that data. The accuracy of that data. Make sure that it can be easily backed up and recovered. Is flexible to use. Etc. Etc.
    The database server is the core - and that is where you need to realise your return on investment. By using the database server to its full extent.
    Hibernate does not do that. And in that respect, it is junk.
    Why does it not do that? Because many Java developers are totally and fully clueless about what database servers are and how to use them. And want to use them as little plug-in black boxes - bit buckets that are only there to provide a data persistence layer. Instead of using the database server to its full extent, they instead use Hibernate, and try to do their own "+database thing+" in the app layer - and do it poorly and with utter lack of any scalability. (and no, only ignorant Java heads think that scalability means throwing more money and h/w at it)
    My largest database processes billions of rows per day, every day, 356 days a year (between 350 to 450 million new inserts into a single table per day). And have been for several years now. It does so using PL/SQL. Using Oracle to its full extent. Then there are Java heads that cannot even design and code an app that effectively process 1% of this volume... and grasp at straws like Hibernate and other Java cr@p to "fix" this - when the actual problem is their total lack of ignorance in how to use and scale the database server.
    Hibernate is trash - and a symptom of Java developers's ignorance of database technology.

  • How to remove the amp: from plsql xml code

    Hi All,
    The XML TopUpsOrderValuationRequestVOX000001014809_20100517_15_44_10_184.xml represents the input XML.
    When passed in to the database the values get stored as 10&amp;20 .
    We have to remove the existence of amp; from the database.
    its very urgent..
    thanks a lot..
    thanks & regards
    balaji.g

    Please provide a small script that demonstrates what you are seeing. Include your version of Oracle as well. Use the tag (see the FAQ under your sign-in name in the upper right) to retain formatting of your script/data.
    In order for others to help you properly, you need to include sufficient detail for those who can't see your screen.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Avoid explicit closing tag in XML using graphical mapping

    Hi,
    I created a data type with an element called TAG1 which has an attribute called attr.
    I mapped an empty constant to the element and the value XXX to the attribute.  I`m using graphical mapping and the XML I get is the following:
    <TAG1 attr = u201CXXXu201D></TAG1>
    But for reasons of volume I need to generate the XML without the explicit closing tag, such as:
    <TAG1 value = u201CXXXu201D/>
    Is there any possibility to achieve this with graphical mapping?
    Thanks & Best Regards,
    Viviana

    > But for reasons of volume I need to generate the XML without the explicit closing tag, such as:
    >
    >  <TAG1 value = u201CXXXu201D/>
    >
    > Is there any possibility to achieve this with graphical mapping?
    This is not posible. The graphical mapping always creates start and end tag, even for empty elements.
    You need a seperate mapping step with XSLT or Java mapping.
    Regards
    Stefan

  • Help -- wls8.1 removes the applications in config.xml

    We deployed three web applications to weblogic 8.1 express. After running fine
    for about 4 days, there's an error logged, and weblogic 8.1 removed the applications
    we configured in config.xml. When we started weblogic 8.1 again, the applications
    are not loaded any more.
    Could any one tell me why this is happening? Thanks a lot
    -yuyu
    Here's the error log.
    ####<Dec 23, 2003 7:57:56 PM PST> <Notice> <Security> <devlabsrv1> <epServer>
    <main> <<WLS Kernel>> <> <BEA-090082> <Security initializing using security realm
    myrealm.>
    ####<Dec 23, 2003 7:57:57 PM PST> <Notice> <WebLogicServer> <devlabsrv1> <epServer>
    <main> <<WLS Kernel>> <> <BEA-000327> <Starting WebLogic Admin Server "epServer"
    for domain "Everypath">
    ####<Dec 23, 2003 7:58:14 PM PST> <Warning> <HTTP> <devlabsrv1> <epServer> <main>
    <<WLS Kernel>> <> <BEA-101247> <MTA: Public ID references the old version of the
    Servlet DTD. You must change the public ID in web.xml file to "-//Sun Microsystems,
    Inc.//DTD Web Application 2.3//EN".>
    ####<Dec 23, 2003 7:58:15 PM PST> <Warning> <HTTP> <devlabsrv1> <epServer> <main>
    <<WLS Kernel>> <> <BEA-101247> <epadmin: Public ID references the old version
    of the Servlet DTD. You must change the public ID in web.xml file to "-//Sun Microsystems,
    Inc.//DTD Web Application 2.3//EN".>
    ####<Dec 23, 2003 7:58:15 PM PST> <Warning> <HTTP> <devlabsrv1> <epServer> <main>
    <<WLS Kernel>> <> <BEA-101247> <ep: Public ID references the old version of the
    Servlet DTD. You must change the public ID in web.xml file to "-//Sun Microsystems,
    Inc.//DTD Web Application 2.3//EN".>
    ####<Dec 23, 2003 7:58:33 PM PST> <Warning> <Management> <devlabsrv1> <epServer>
    <main> <<WLS Kernel>> <> <BEA-141130> <The domain configuration version was not
    set for the domain Everypath that is being started. (The current server version
    is 8.1.0.0.)>
    ####<Dec 23, 2003 7:58:34 PM PST> <Notice> <WebLogicServer> <devlabsrv1> <epServer>
    <ListenThread.Default> <<WLS Kernel>> <> <BEA-000355> <Thread "ListenThread.Default"
    listening on port 7001, ip address *.*>
    ####<Dec 23, 2003 7:58:34 PM PST> <Notice> <WebLogicServer> <devlabsrv1> <epServer>
    <main> <<WLS Kernel>> <> <BEA-000365> <Server state changed to RUNNING>
    ####<Dec 23, 2003 7:58:34 PM PST> <Notice> <WebLogicServer> <devlabsrv1> <epServer>
    <main> <<WLS Kernel>> <> <BEA-000360> <Server started in RUNNING mode>
    ####<Dec 23, 2003 9:38:03 PM PST> <Warning> <WebLogicServer> <devlabsrv1> <epServer>
    <weblogic.health.CoreHealthMonitor> <<WLS Kernel>> <> <BEA-000337> <ExecuteThread:
    '14' for queue: 'default' has been busy for "1,084" seconds working on the request
    "Http Request: /MTA/Server", which is more than the configured time (StuckThreadMaxTime)
    of "600" seconds.>
    ####<Dec 24, 2003 11:08:04 AM PST> <Warning> <WebLogicServer> <devlabsrv1> <epServer>
    <weblogic.health.CoreHealthMonitor> <<WLS Kernel>> <> <BEA-000337> <ExecuteThread:
    '14' for queue: 'default' has been busy for "801" seconds working on the request
    "Http Request: /MTA/Server", which is more than the configured time (StuckThreadMaxTime)
    of "600" seconds.>
    ####<Dec 24, 2003 11:40:09 AM PST> <Warning> <HTTP Session> <devlabsrv1> <epServer>
    <ExecuteThread: '14' for queue: 'default'> <<anonymous>> <> <BEA-100061> <Web
    application: ServletContext(id=12222848,name=epadmin,context-path=/epadmin) tried
    to place a non-serializable attribute: schema into the session: 1pruOeafNuve6lfaVvZEkt2n19VVrY5wqVzmeJaq9HOK9qfI2ly4!634073209!1072294766531.
    This attribute will be lost upon redeployment. This message is logged only once
    per session.>
    ####<Dec 24, 2003 3:08:04 PM PST> <Warning> <WebLogicServer> <devlabsrv1> <epServer>
    <weblogic.health.CoreHealthMonitor> <<WLS Kernel>> <> <BEA-000337> <ExecuteThread:
    '13' for queue: 'default' has been busy for "1,159" seconds working on the request
    "Http Request: /MTA/Server", which is more than the configured time (StuckThreadMaxTime)
    of "600" seconds.>
    ####<Dec 24, 2003 3:18:04 PM PST> <Warning> <WebLogicServer> <devlabsrv1> <epServer>
    <weblogic.health.CoreHealthMonitor> <<WLS Kernel>> <> <BEA-000337> <ExecuteThread:
    '14' for queue: 'default' has been busy for "881" seconds working on the request
    "Http Request: /MTA/Server", which is more than the configured time (StuckThreadMaxTime)
    of "600" seconds.>
    ####<Dec 24, 2003 5:58:04 PM PST> <Warning> <WebLogicServer> <devlabsrv1> <epServer>
    <weblogic.health.CoreHealthMonitor> <<WLS Kernel>> <> <BEA-000337> <ExecuteThread:
    '14' for queue: 'default' has been busy for "1,104" seconds working on the request
    "Http Request: /MTA/Server", which is more than the configured time (StuckThreadMaxTime)
    of "600" seconds.>
    ####<Dec 29, 2003 4:28:28 AM PST> <Error> <Deployer> <devlabsrv1> <epServer> <ExecuteThread:
    '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149201> <Failed
    to complete the deployment task with ID 0 for the application appsdirepadmin_dir.
    java.lang.NullPointerException
         at weblogic.utils.FileUtils.remove(FileUtils.java:172)
         at weblogic.utils.FileUtils.remove(FileUtils.java:185)
         at weblogic.servlet.internal.WebAppModule.remove(WebAppModule.java:902)
         at weblogic.j2ee.J2EEApplicationContainer.remove(J2EEApplicationContainer.java:2206)
         at weblogic.j2ee.J2EEApplicationContainer.remove(J2EEApplicationContainer.java:2192)
         at weblogic.j2ee.J2EEApplicationContainerFactory.removeApplicationContainer(J2EEApplicationContainerFactory.java:143)
         at weblogic.management.deploy.slave.SlaveDeployer$RemoveTask.perform(SlaveDeployer.java:2608)
         at weblogic.management.deploy.slave.SlaveDeployer$RemoveTask.doCommit(SlaveDeployer.java:2581)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.commit(SlaveDeployer.java:2308)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.checkAutoCommit(SlaveDeployer.java:2390)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.prepare(SlaveDeployer.java:2302)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    --------------- nested within: ------------------
    weblogic.management.DeploymentException: [Deployer:149233]An unexpected error
    was encountered during the deployment process. - with nested exception:
    [java.lang.NullPointerException]
         at weblogic.management.deploy.slave.SlaveDeployer.throwUnexpected(SlaveDeployer.java:2181)
         at weblogic.management.deploy.slave.SlaveDeployer.access$700(SlaveDeployer.java:132)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.commit(SlaveDeployer.java:2323)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.checkAutoCommit(SlaveDeployer.java:2390)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.prepare(SlaveDeployer.java:2302)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    >
    ####<Dec 29, 2003 4:28:28 AM PST> <Notice> <Deployer> <devlabsrv1> <epServer>
    <ExecuteThread: '0' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149063>
    <There seems to be some configuration error with application appsdirepadmin_dir.
    See previous errors for details. The application appsdirepadmin_dir will be
    removed since its target list is empty.>
    ####<Dec 29, 2003 4:28:28 AM PST> <Warning> <Deployer> <devlabsrv1> <epServer>
    <ExecuteThread: '0' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149004>
    <Failures were detected while initiating Remove task for application appsdirepadmin_dir.>
    ####<Dec 29, 2003 4:28:28 AM PST> <Error> <Management> <devlabsrv1> <epServer>
    <ExecuteThread: '0' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149306>
    <Deployment update failed. Update Failed due to any one of the servers not up
    Server epServer failed in respond>
    ####<Dec 29, 2003 4:28:32 AM PST> <Warning> <DRS> <devlabsrv1> <epServer> <ExecuteThread:
    '0' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-002506> <The current
    version 6 for DataIdentifier DataIdentifierID: 1 does not match with incoming
    version 7 for a one-phase update.>
    ####<Dec 29, 2003 4:28:32 AM PST> <Error> <Deployer> <devlabsrv1> <epServer> <ExecuteThread:
    '0' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149201> <Failed
    to complete the deployment task with ID 1 for the application appsdirep_dir.
    java.lang.NullPointerException
         at weblogic.utils.FileUtils.remove(FileUtils.java:172)
         at weblogic.utils.FileUtils.remove(FileUtils.java:185)
         at weblogic.servlet.internal.WebAppModule.remove(WebAppModule.java:902)
         at weblogic.j2ee.J2EEApplicationContainer.remove(J2EEApplicationContainer.java:2206)
         at weblogic.j2ee.J2EEApplicationContainer.remove(J2EEApplicationContainer.java:2192)
         at weblogic.j2ee.J2EEApplicationContainerFactory.removeApplicationContainer(J2EEApplicationContainerFactory.java:143)
         at weblogic.management.deploy.slave.SlaveDeployer$RemoveTask.perform(SlaveDeployer.java:2608)
         at weblogic.management.deploy.slave.SlaveDeployer$RemoveTask.doCommit(SlaveDeployer.java:2581)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.commit(SlaveDeployer.java:2308)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.checkAutoCommit(SlaveDeployer.java:2390)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.prepare(SlaveDeployer.java:2302)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    --------------- nested within: ------------------
    weblogic.management.DeploymentException: [Deployer:149233]An unexpected error
    was encountered during the deployment process. - with nested exception:
    [java.lang.NullPointerException]
         at weblogic.management.deploy.slave.SlaveDeployer.throwUnexpected(SlaveDeployer.java:2181)
         at weblogic.management.deploy.slave.SlaveDeployer.access$700(SlaveDeployer.java:132)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.commit(SlaveDeployer.java:2323)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.checkAutoCommit(SlaveDeployer.java:2390)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.prepare(SlaveDeployer.java:2302)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    >
    ####<Dec 29, 2003 4:28:32 AM PST> <Notice> <Deployer> <devlabsrv1> <epServer>
    <ExecuteThread: '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149063>
    <There seems to be some configuration error with application appsdirep_dir.
    See previous errors for details. The application appsdirep_dir will be removed
    since its target list is empty.>
    ####<Dec 29, 2003 4:28:32 AM PST> <Warning> <Deployer> <devlabsrv1> <epServer>
    <ExecuteThread: '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149004>
    <Failures were detected while initiating Remove task for application appsdirep_dir.>
    ####<Dec 29, 2003 4:28:32 AM PST> <Error> <Management> <devlabsrv1> <epServer>
    <ExecuteThread: '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149306>
    <Deployment update failed. Update Failed due to any one of the servers not up
    Server epServer failed in respond>
    ####<Dec 29, 2003 4:28:36 AM PST> <Warning> <DRS> <devlabsrv1> <epServer> <ExecuteThread:
    '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-002506> <The current
    version 6 for DataIdentifier DataIdentifierID: 1 does not match with incoming
    version 8 for a one-phase update.>
    ####<Dec 29, 2003 4:28:37 AM PST> <Error> <Deployer> <devlabsrv1> <epServer> <ExecuteThread:
    '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149201> <Failed
    to complete the deployment task with ID 2 for the application appsdirMTA_dir.
    java.lang.NullPointerException
         at weblogic.utils.FileUtils.remove(FileUtils.java:172)
         at weblogic.utils.FileUtils.remove(FileUtils.java:185)
         at weblogic.servlet.internal.WebAppModule.remove(WebAppModule.java:902)
         at weblogic.j2ee.J2EEApplicationContainer.remove(J2EEApplicationContainer.java:2206)
         at weblogic.j2ee.J2EEApplicationContainer.remove(J2EEApplicationContainer.java:2192)
         at weblogic.j2ee.J2EEApplicationContainerFactory.removeApplicationContainer(J2EEApplicationContainerFactory.java:143)
         at weblogic.management.deploy.slave.SlaveDeployer$RemoveTask.perform(SlaveDeployer.java:2608)
         at weblogic.management.deploy.slave.SlaveDeployer$RemoveTask.doCommit(SlaveDeployer.java:2581)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.commit(SlaveDeployer.java:2308)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.checkAutoCommit(SlaveDeployer.java:2390)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.prepare(SlaveDeployer.java:2302)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    --------------- nested within: ------------------
    weblogic.management.DeploymentException: [Deployer:149233]An unexpected error
    was encountered during the deployment process. - with nested exception:
    [java.lang.NullPointerException]
         at weblogic.management.deploy.slave.SlaveDeployer.throwUnexpected(SlaveDeployer.java:2181)
         at weblogic.management.deploy.slave.SlaveDeployer.access$700(SlaveDeployer.java:132)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.commit(SlaveDeployer.java:2323)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.checkAutoCommit(SlaveDeployer.java:2390)
         at weblogic.management.deploy.slave.SlaveDeployer$Task.prepare(SlaveDeployer.java:2302)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    >
    ####<Dec 29, 2003 4:28:37 AM PST> <Notice> <Deployer> <devlabsrv1> <epServer>
    <ExecuteThread: '0' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149063>
    <There seems to be some configuration error with application appsdirMTA_dir.
    See previous errors for details. The application appsdirMTA_dir will be removed
    since its target list is empty.>
    ####<Dec 29, 2003 4:28:37 AM PST> <Warning> <Deployer> <devlabsrv1> <epServer>
    <ExecuteThread: '0' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149004>
    <Failures were detected while initiating Remove task for application appsdirMTA_dir.>
    ####<Dec 29, 2003 4:28:37 AM PST> <Error> <Management> <devlabsrv1> <epServer>
    <ExecuteThread: '0' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149306>
    <Deployment update failed. Update Failed due to any one of the servers not up
    Server epServer failed in respond>
    ####<Dec 29, 2003 4:44:22 AM PST> <Warning> <DRS> <devlabsrv1> <epServer> <ExecuteThread:
    '2' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-002506> <The current
    version 6 for DataIdentifier DataIdentifierID: 1 does not match with incoming
    version 9 for a one-phase update.>
    ####<Dec 29, 2003 4:44:22 AM PST> <Warning> <Deployer> <devlabsrv1> <epServer>
    <ExecuteThread: '2' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149004>
    <Failures were detected while initiating Deploy task for application appsdirepadmin_dir.>
    ####<Dec 29, 2003 4:44:22 AM PST> <Error> <Deployer> <devlabsrv1> <epServer> <ExecuteThread:
    '2' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149201> <Failed
    to complete the deployment task with ID 3 for the application appsdirepadmin_dir.
    javax.management.InstanceAlreadyExistsException: Everypath:Location=epServer,Name=epServer__appsdir_epadmin_dir,ServerRuntime=epServer,Type=ApplicationRuntime
         at com.sun.management.jmx.RepositorySupport.addMBean(RepositorySupport.java:134)
         at com.sun.management.jmx.MBeanServerImpl.internal_addObject(MBeanServerImpl.java:2371)
         at com.sun.management.jmx.MBeanServerImpl.registerMBean(MBeanServerImpl.java:876)
         at weblogic.management.internal.RemoteMBeanServerImpl.registerMBean(RemoteMBeanServerImpl.java:457)
         at weblogic.management.runtime.RuntimeMBeanDelegate.register(RuntimeMBeanDelegate.java:166)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:122)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:85)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:62)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:74)
         at weblogic.j2ee.J2EEApplicationRuntimeMBeanImpl.<init>(J2EEApplicationRuntimeMBeanImpl.java:42)
         at weblogic.j2ee.J2EEApplicationContainer.initRuntimeMBean(J2EEApplicationContainer.java:776)
         at weblogic.j2ee.J2EEApplicationContainer.<init>(J2EEApplicationContainer.java:447)
         at weblogic.j2ee.J2EEApplicationContainerFactory.createApplicationContainer(J2EEApplicationContainerFactory.java:131)
         at weblogic.j2ee.J2EEApplicationContainerFactory.getOrCreateApplicationContainer(J2EEApplicationContainerFactory.java:113)
         at weblogic.management.deploy.slave.SlaveDeployer$Application.getContainer(SlaveDeployer.java:2976)
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2518)
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2450)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    --------------- nested within: ------------------
    weblogic.management.ManagementException: - with nested exception:
    [javax.management.InstanceAlreadyExistsException: Everypath:Location=epServer,Name=epServer__appsdir_epadmin_dir,ServerRuntime=epServer,Type=ApplicationRuntime]
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2459)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    >
    ####<Dec 29, 2003 4:44:26 AM PST> <Warning> <DRS> <devlabsrv1> <epServer> <ExecuteThread:
    '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-002506> <The current
    version 6 for DataIdentifier DataIdentifierID: 1 does not match with incoming
    version 10 for a one-phase update.>
    ####<Dec 29, 2003 4:44:26 AM PST> <Warning> <Deployer> <devlabsrv1> <epServer>
    <ExecuteThread: '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149004>
    <Failures were detected while initiating Deploy task for application appsdirep_dir.>
    ####<Dec 29, 2003 4:44:26 AM PST> <Error> <Deployer> <devlabsrv1> <epServer> <ExecuteThread:
    '1' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149201> <Failed
    to complete the deployment task with ID 4 for the application appsdirep_dir.
    javax.management.InstanceAlreadyExistsException: Everypath:Location=epServer,Name=epServer__appsdir_ep_dir,ServerRuntime=epServer,Type=ApplicationRuntime
         at com.sun.management.jmx.RepositorySupport.addMBean(RepositorySupport.java:134)
         at com.sun.management.jmx.MBeanServerImpl.internal_addObject(MBeanServerImpl.java:2371)
         at com.sun.management.jmx.MBeanServerImpl.registerMBean(MBeanServerImpl.java:876)
         at weblogic.management.internal.RemoteMBeanServerImpl.registerMBean(RemoteMBeanServerImpl.java:457)
         at weblogic.management.runtime.RuntimeMBeanDelegate.register(RuntimeMBeanDelegate.java:166)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:122)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:85)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:62)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:74)
         at weblogic.j2ee.J2EEApplicationRuntimeMBeanImpl.<init>(J2EEApplicationRuntimeMBeanImpl.java:42)
         at weblogic.j2ee.J2EEApplicationContainer.initRuntimeMBean(J2EEApplicationContainer.java:776)
         at weblogic.j2ee.J2EEApplicationContainer.<init>(J2EEApplicationContainer.java:447)
         at weblogic.j2ee.J2EEApplicationContainerFactory.createApplicationContainer(J2EEApplicationContainerFactory.java:131)
         at weblogic.j2ee.J2EEApplicationContainerFactory.getOrCreateApplicationContainer(J2EEApplicationContainerFactory.java:113)
         at weblogic.management.deploy.slave.SlaveDeployer$Application.getContainer(SlaveDeployer.java:2976)
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2518)
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2450)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    --------------- nested within: ------------------
    weblogic.management.ManagementException: - with nested exception:
    [javax.management.InstanceAlreadyExistsException: Everypath:Location=epServer,Name=epServer__appsdir_ep_dir,ServerRuntime=epServer,Type=ApplicationRuntime]
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2459)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    >
    ####<Dec 29, 2003 4:44:30 AM PST> <Warning> <DRS> <devlabsrv1> <epServer> <ExecuteThread:
    '2' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-002506> <The current
    version 6 for DataIdentifier DataIdentifierID: 1 does not match with incoming
    version 11 for a one-phase update.>
    ####<Dec 29, 2003 4:44:31 AM PST> <Warning> <Deployer> <devlabsrv1> <epServer>
    <ExecuteThread: '2' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149004>
    <Failures were detected while initiating Deploy task for application appsdirMTA_dir.>
    ####<Dec 29, 2003 4:44:31 AM PST> <Error> <Deployer> <devlabsrv1> <epServer> <ExecuteThread:
    '2' for queue: 'weblogic.kernel.System'> <<WLS Kernel>> <> <BEA-149201> <Failed
    to complete the deployment task with ID 5 for the application appsdirMTA_dir.
    javax.management.InstanceAlreadyExistsException: Everypath:Location=epServer,Name=epServer__appsdir_MTA_dir,ServerRuntime=epServer,Type=ApplicationRuntime
         at com.sun.management.jmx.RepositorySupport.addMBean(RepositorySupport.java:134)
         at com.sun.management.jmx.MBeanServerImpl.internal_addObject(MBeanServerImpl.java:2371)
         at com.sun.management.jmx.MBeanServerImpl.registerMBean(MBeanServerImpl.java:876)
         at weblogic.management.internal.RemoteMBeanServerImpl.registerMBean(RemoteMBeanServerImpl.java:457)
         at weblogic.management.runtime.RuntimeMBeanDelegate.register(RuntimeMBeanDelegate.java:166)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:122)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:85)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:62)
         at weblogic.management.runtime.RuntimeMBeanDelegate.<init>(RuntimeMBeanDelegate.java:74)
         at weblogic.j2ee.J2EEApplicationRuntimeMBeanImpl.<init>(J2EEApplicationRuntimeMBeanImpl.java:42)
         at weblogic.j2ee.J2EEApplicationContainer.initRuntimeMBean(J2EEApplicationContainer.java:776)
         at weblogic.j2ee.J2EEApplicationContainer.<init>(J2EEApplicationContainer.java:447)
         at weblogic.j2ee.J2EEApplicationContainerFactory.createApplicationContainer(J2EEApplicationContainerFactory.java:131)
         at weblogic.j2ee.J2EEApplicationContainerFactory.getOrCreateApplicationContainer(J2EEApplicationContainerFactory.java:113)
         at weblogic.management.deploy.slave.SlaveDeployer$Application.getContainer(SlaveDeployer.java:2976)
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2518)
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2450)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)
    --------------- nested within: ------------------
    weblogic.management.ManagementException: - with nested exception:
    [javax.management.InstanceAlreadyExistsException: Everypath:Location=epServer,Name=epServer__appsdir_MTA_dir,ServerRuntime=epServer,Type=ApplicationRuntime]
         at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2459)
         at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:829)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:538)
         at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:496)
         at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:178)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:151)

    >
    Please help me find the error and eliminate it.
    I am disgusted with it as i am stuck at this position for last 15 days.15 days on "Hello Anything" should never happen.
    Even the demo sample projects given in NetBeans are generating error messages.Somebody explain to me how JSF is making life "easy".
    There's a lot here.
    %

  • Do i need to remove the micro sim card when using home wi fi on ipad2

    do i need to remove the micro sim card from the i pad 2 when using wi fi sat home?

    thank you Ralph may i just ask you if your home wifi network is not working do you then have to actively seek the data connection?i suppose i am asking do you need to choose from a menu ?

  • How do I remove the blue tag from my HD?

    Since upgrading to Mavericks I have had a blue 'dot' tag next to my HD's name on my desktop.
    I have figured out how to assign and remove tags from folders generally, but I just cannot find how to remove the blue dot from the main HD on the desktop.
    For example, if I right-click on the desktop icon I can see that the blue tag is selected in the tag options, but it just cannot be deselected there at all.
    If I right-click on the desktop HD icon and select 'Get Info' I can then see the top box in the Get Info panel has 'Blue' showing in it, but there appears to be no way to get rid of it there either.
    How can I switch of this unwanted blue tag on my HD icon?

    Looks like all you guys out there have all been a little too busy to post a reply to this one, but that's fine because life can be a little too full at times.
    The good news is that I found a solution, quite accidentally really.  I simply renamed the HD Drive (Get Info > Name & Extension).  The new name appeared under the drive icon without the blue tag.  Job done.  I am guessing that the blue tag was just a bug that was a hangover left by upgrading from a previous version of OS X, but whatever it was it has now gone.
    Thank you.

Maybe you are looking for

  • How to mark as 'Not Junk' in Mail?

    I no longer seem to have the option to mark mail as 'Not Junk' on my Mac. I only have one mail account on my Mac (MobileMe) and recently some of my Facebook email notifications haven't been getting through. It turns out that a few of these emails are

  • My iMac can't connect to my G5 tower anymore

    I have my G5 tower and my G5 iMac networked. On the iMac by accident I ejected the network icon that appears in the first column of the network window and now can't connect from the iMac to the tower. I can only connect from the tower to the iMac. Wh

  • Form layout problems

    I have two regions in row one and another region in row two. Top region in column one has just one column and bottom region in column one has 5 columns. The form layout looks awkward as column 1 regions are odd size. I tried to increase the top regio

  • Claiming Windows 7 instead of Windows 8

    I've bought Windows 8 with my laptop but i want to claim Windows 7 instead. How do i go about that?

  • Officejet Pro 6830 cannot find driver

    I have a x64 E-All-in-one printer I'm trying to install on a remote desktop server. What driver can I use? I am also trying to install on a Windows  Server 2003 R2 Service Pack 2 and the driver on HP's site doesn't work. Any suggestions? Thanks Kimbe