Weblogic-application.xml and prefer-application-packages tag issue.

Hi All,
To solve one of the issue I have mentioned already in
http://forums.bea.com/bea/thread.jspa?threadID=300000394 post.
I am planning to use prefer-application-packages tag in weblogic-application.xml but it says XML is invalid and shows following error in workshop 9.2.1.
Severity     Description     Resource     In Folder     Location     Creation Time     Id
2     cvc-complex-type.2.4.a: Invalid content was found starting with element 'wls:prefer-application-packages'. One of '{"http://www.bea.com/ns/weblogic/90":library-ref, "http://www.bea.com/ns/weblogic/90":fair-share-request, "http://www.bea.com/ns/weblogic/90":response-time-request, "http://www.bea.com/ns/weblogic/90":context-request, "http://www.bea.com/ns/weblogic/90":max-threads-constraint, "http://www.bea.com/ns/weblogic/90":min-threads-constraint, "http://www.bea.com/ns/weblogic/90":capacity, "http://www.bea.com/ns/weblogic/90":work-manager, "http://www.bea.com/ns/weblogic/90":application-admin-mode-trigger, "http://www.bea.com/ns/weblogic/90":session-descriptor, "http://www.bea.com/ns/weblogic/90":library-context-root-override}' is expected.     weblogic-application.xml     wivApp/EarContent/META-INF     line 22     June 13, 2007 9:12:51 AM     191
This is my weblogic-application.xml
<?xml version="1.0" encoding="UTF-8"?>
<wls:weblogic-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/j2ee_1_4.xsd http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-application.xsd">
<wls:application-param>
<wls:param-name>webapp.encoding.default</wls:param-name>
<wls:param-value>UTF-8</wls:param-value>
</wls:application-param>
<wls:library-ref>
<wls:library-name>beehive-controls-1.0</wls:library-name>
<wls:specification-version>1.0</wls:specification-version>
<wls:implementation-version>1.0</wls:implementation-version>
</wls:library-ref>
<wls:library-ref>
<wls:library-name>wls-commonslogging-bridge</wls:library-name>
<wls:specification-version>1.0</wls:specification-version>
<wls:implementation-version>1.0</wls:implementation-version>
</wls:library-ref>
<wls:library-ref>
<wls:library-name>weblogic-controls-1.0</wls:library-name>
<wls:specification-version>1.0</wls:specification-version>
<wls:implementation-version>1.0</wls:implementation-version>
</wls:library-ref>
<wls:prefer-application-packages>
     <wls:package-name>org.apache.log4j.*</wls:package-name>
</wls:prefer-application-packages>
</wls:weblogic-application>

Hi Hitesh,
Got the same problem.
What I did to fix it was to switch both declarations :
Before :
http://www.bea.com/ns/weblogic/90
http://www.bea.com/ns/weblogic/90/weblogic-application.xsd
After :
http://www.bea.com/ns/weblogic/90/weblogic-application.xsd http://www.bea.com/ns/weblogic/90
And the Workshop error's gone.
Note that I don't think it would have prevented your filtering class loader from working.
Regards

Similar Messages

  • HT2693 i am downloading a software update, but at the last moment before it finishes, it says in order to continue, please close the following application: safari, and the application is closed, what do they mean, and what should i do?

    i am downloading a software update, but at the last moment before it finishes, it says in order to continue, please close the following application: safari, and the application is closed, what do they mean, and what should i do?

    You should close safari.

  • Install both Sun Application server and Jboss application server- Can I?

    Dear all,
    I am programmer and want to test for something.
    Is it possible to install sun application server and jboss application server in the same computer (Windows XP Professional)?
    Is there any special attention I need to take?

    I am programmer and want to test for something.Allowed.
    Is it possible to install sun application server and jboss application server in the same computer (Windows XP Professional)?Why do you think it may not be possible ?
    Is there any special attention I need to take?just the way the URL is populated.

  • RE:difference between application server and web application server

    hi,
         i am a fresher to SAP.please tell me the difference between application server and web application server so that my doubt will be clarified.

    Hi,
    the SAP Web Application Server is the reliable, open standard-based application server from SAP. It supports both J2EE and ABAP, and serves as the underlying infrastructure for all new and upcoming SAP solutions, like SAP R/3 Enterprise, SAP Portal, SAP Exchange Infrastructure, and all other SAP components.
    The SAP Web Application Server is not a new product, it is the natural evolution of proven SAP application server technology formerly known as SAP Basis. It provides the platform to develop, execute, and operate Web applications and Web services as well as traditional SAP GUI based applications
    if it helpful rewards points are appreciated

  • Deploy given EAR file having application.xml and change context-root

    hi
    Please consider deploying a given EAR file on WebLogic Server 10.3.5 (part of JDeveloper 11.1.1.6.0) and changing the context-root for its web-module.
    For example an EAR file with only a web-module (ReviewContextRootFirstApp.ear [1]) or an EAR file with a web-module and an ejb-module (ReviewContextRootSecondApp.ear [2]).
    Given documentation appendix B section "context-root" [3] saying
    "... A context-root setting in application.xml takes precedence over context-root setting in weblogic.xml. ..."
    and documentation section "Typical Deployment Configuration Workflows" [4] saying
    "Oracle does not support using a deployment plan to change the context-root in an application.xml file. However, if an application is deployed as a library, you can either change the context-root through an weblogic-application.xml file or use the deployment plan to change the context-root in an weblogic-application.xml file. "
    Some observed behaviour:
    - scenario (sc1) : deploy ReviewContextRootFirstApp.ear without deployment plan, results in context-root "/rcrfaweb" (as in application.xml)
    - scenario (sc2) : deploy ReviewContextRootFirstApp.ear with deployment plan fa-plan.xml (tries to configure "/rcrfaweb11"), results in context-root "/rcrfaweb" (as in application.xml)
    - scenario (sc3) : deploy ReviewContextRootSecondApp.ear without deployment plan, results in context-root "/rcrsaweb" (as in application.xml)
    - scenario (sc4) : deploy ReviewContextRootSecondApp.ear with deployment plan sa-plan.xml (tries to configure "/rcrsaweb21"), results in context-root "/rcrsaweb" (as in application.xml)
    The blog post "Defining the context root of a web application in Oracle WebLogic server" [5] by Silviu Leahu in its section "Defining the context root in deployment plan" suggests to
    "Remove the META-INF/application.xml DD from the EAR"
    - scenario (sc5) : remove application.xml from ReviewContextRootFirstApp.ear (e.g. using Ant target "remove.application.xml.from.ear") and deploy with deployment plan fa-plan.xml, results in context-root "/rcrfaweb11" (as in fa-plan.xml)
    - scenario (sc6) : remove application.xml from ReviewContextRootSecondApp.ear (e.g. using Ant target "remove.application.xml.from.ear") and deploy with deployment plan sa-plan.xml, results in context-root "/rcrsaweb21" (as in sa-plan.xml)
    One could expect that using a deployment plan (like in scenario's (sc2) and (sc4)) would allow to configure/change the context-root, whithout having to make changes to the EAR file to make this possible. (Somewhat like "Figure 4-2 Single Deployment Plan Workflow")
    Only in scenario's (sc5) and (sc6) I see something close to what I would like to achieve, but there the application.xml file has been removed from the EAR file.
    So ...
    - (q1) Is it impossible to change the context-root at deploy-time for a web-module in a given EAR file that includes an application.xml file, without changing the EAR file?
    - (q2) Is working with EAR files that don't have an application.xml file a supported approach (to change the context-root at deploy-time)?
    Seems like a simple goal, but I must be missing something that is required to achieve it.
    - [1] ReviewContextRootFirstApp/deploy/ReviewContextRootFirstApp.ear in the ZIP file
    at http://www.consideringred.com/files/oracle/2012/ReviewContextRootApps-v0.01.zip
    - [2] ReviewContextRootSecondApp/deploy/ReviewContextRootSecondApp.ear in the (same) ZIP file
    at http://www.consideringred.com/files/oracle/2012/ReviewContextRootApps-v0.01.zip
    - [3] http://docs.oracle.com/cd/E21764_01/web.1111/e13712/weblogic_xml.htm#WBAPP623
    - [4] http://docs.oracle.com/cd/E21764_01/web.1111/e13702/config.htm#DEPGD172
    - [5] http://blog.leahu.net/it/2011/01/04/defining-the-context-root-of-a-web-application-in-oracle-weblogic-server/
    many thanks
    Jan Vervecken

    Thanks for your reply René van Wijk.
    René van Wijk wrote:
    You can use deployment plans in order to change the context-root ...That is what I tried and describe in scenario's (sc2), (sc4), (sc5) and (sc6) in this forum thread.
    Because the application.xml file (in the "given EAR file"), added by JDeveloper 11.1.1.6.0 when deploying to an EAR file, doesn't have id attributes on its application/module elements, I first tried a different XPath expression:
    "/application/module/web[web-uri/text()="WebProject.war"]/context-root"
    But, that didn't work.
    Although the "given EAR file" does not have the suggested id attributes, I tried adding a deployment descriptor application.xml file that does have such id attributes [2], allowing an XPath expression like the one suggested:
    "/application/module[id="WebProject"]/web/context-root"
    - scenario (sc7) : deploy ReviewContextRootFirstApp.ear (in ReviewContextRootApps-v0.02.zip) with deployment plan fa-plan-application-xml-with-id.xml (tries to configure "/rcrfaweb14"), results in context-root "/rcrfaweb" (as in application.xml)
    - scenario (sc8) : deploy ReviewContextRootSecondApp.ear (in ReviewContextRootApps-v0.02.zip) with deployment plan sa-plan-application-xml-with-id.xml (tries to configure "/rcrsaweb24"), results in context-root "/rcrsaweb" (as in application.xml)
    So, it does not seem to work.
    ... you have to use a variable assignment in the right part of the deployment plan (in this case the application.xml) ...My observations I describe above (that it does not seem to work) seem to confirm the Oracle documentation [1] I referred to in this forum thread before:
    "Oracle does not support using a deployment plan to change the context-root in an application.xml file. ... "
    ... By using an xpath expression, you can define which part of the xml has to be changed. ...The values for the deployment-plan xpath elements seem to be "peculiar".
    Although it should not be a problem in an XPath expression, using single quotes (like module[id='WebProject'] ) instead of double quotes (like module[id="WebProject"] ) results in:
    "java.lang.AssertionError: Attributes must be defined as name value pairs, eg, name="value" -- [id='WebProject']"
    Because an XPath predicate expression would use an "@" to refer to an attribute, I also tried to replace what you suggested module[id="Web"] with something like module[@id="Web"] but that also did not make a difference.
    - [1] http://docs.oracle.com/cd/E21764_01/web.1111/e13702/config.htm#DEPGD172
    - [2] http://www.consideringred.com/files/oracle/2012/ReviewContextRootApps-v0.02.zip
    regards
    Jan Vervecken

  • Using ADL when Application.xml and Content.swf are not in the BIN directory

    Hello, I am trying to use the air debug launcher (ADL) to
    launch a simple air app. My issue is I am trying to have ADL launch
    this app from outside of the bin directory of the SDK. Whenever I
    try to pass adl the full path to the Applicaiton.xml file it says
    "application descriptor not found" Does anyone know how to get
    around this? How can I run an AIR app that is outside of the bin?
    My situation C:\AIR has the Applicaiton.xml and Content.swf
    files, then a directory way below C:\Program Files\....\..... has
    the bin directory. I can run adl using its full path C:\Program
    Files\....\bin\adl, but when I pass it the full path for
    Application.xml it fails.
    By the way when I put everything in the bin, or below the bin
    it works just fine.

    If you're receiving this error message then the full path
    you're specifying for application.xml must be incorrect.

  • Content-type: application/xml and Application server 9

    I have a web service running on Application server 9, implemented using netbeans and JAX-WS.
    When a client sends a request to it with:
    Content-type: application/xml
    the request is rejected because the server does not recognise the mime type.
    Specifically, the response is:
    HTTP/1.1 415 Unsupported Media Type
    X-Powered-By: Servlet/2.5
    Content-Type: text/plain; charset=iso-8859-1
    Date: Fri, 01 Sep 2006 14:49:04 GMT
    Server: Sun Java System Application Server Platform Edition 9.0
    Connection: close
    Everything works fine when the request has:
    Content-type: text/xml
    Is there a way to make my web service accept content type of 'application/xml'?
    -Tony Beaumont
    Aston University
    beaumoaj

    I have fixed this for myself, i.e. decompile, replace in jar.
    My problem was that most tools define the encoding but code was simply testing
    if( contentType.equalsIgnoreCase( "text/xml" ) )
    so sending xml from other tools that send contentType
    "text/xml;encoding=UTF-8" or some such, like soap tools, would mean no XML was seen.
    Is the proper source available for XSQL?

  • Application.xml and servicegen

    Hi
    Our web services each have an admin web application that goes with them. This enables us to change configuration settings at runtime.
    We want to try to build an ear file that includes both the service and the admin web app.
    The problem is that we need to add the web app as a module to application.xml. The Servicegen ant task does not seem to allow us to do this. Ideally, we would have our web app entries in a file that servicegen merges with its generated application.xml.
    Clearly we can manually edit the generated application file and repackage the ear file, put this is messy and prone to error.
    Any ideas?
    Thanks
    Andrew Bamford

    Found the solution.
    We created an application.xml with just the web application in it and added the overwrite="false" attribute to the servicegen task.
    The ant script was changed to copy our application.xml file to the appropriate place in the build area (/build/META-INF). Servicegen now adds to this, rather than overwriting it.
    Andrew Bamford:-)

  • Installer, application manager and camera raw plug in issues

    Hi - I need help.
    I'm running on Windows 7. I have just upgraded Photoshop to CS5.5 from CS4 (on my laptop not a creative cloud version). I have since uninstalled Photoshop CS4. I was trying to install the camera raw plug in 6.7.1 but it would not install and I got a message saying that the application manager was damaged and to download it again. I have downloaded the application manager file but cannot install it. I am getting the "installer failed to initilize" message. I've read through the forums on this and cannot find a solution.
    I have extracted the file so I am not trying to open a zip file. I have downloaded a second time to a different location and tried installing again while logged into creative cloud but got the same message. I saw the comment about deleting the Adobe/OOBE folder and trying again but was wary about doing this as I don't know what this folder is. Can someone tell me what this is and why I would delete it?
    I don't think I had this issue before I uninstalled CS4. I think I had already downloaded a camera raw plug in for that version. So I am wondering if deleting CS4 caused the issue.
    I then downloaded CS6 cloud version thinking that perhaps I would get application manager installed correctly within that. I have now been able to install the camera raw plug in and this is now working in CS5.5 but strangely still cannot run the setup.exe for the application manager (So perhaps it is just a problem with Installer?).
    Can someone tell me if application manager is just relevant for cloud based products or is it required for desktop versions as well? Could creative cloud be interferring with my desktop version? Where can I find the application manager files? If I uninstall CS6 will I have the same problem with application manager not working in future? I do not really want to use a cloud based version (CS6) and don't want to keep unnecessary programs on my laptop.I signed up to Creative Cloud when both desktop and cloud versions were supported and may not continue when my subscription expires.
    To fix this problem without CS6 do I need to reinstall CS5.5? (To do this I will have to reinstall CS4 as it was an upgrade version). Would just reinstalling CS4 fix the problem? Can I just reinstall the application manager part of either of these or is there a simpler solution?
    Thanks in advance as I am not super tecchie and am running out of ideas.

    Hi
    I have Creative Suite 5.5 Master Collection but have only installed Photoshop and Bridge ( this includes files associated with that install). Since installing that I have also installed Photoshop 6 (with Bridge etc).
    The issue I had in Photoshop 5.5 was I was unable to read files from Canon EOS 5D Mark 2. I was trying to install the camera raw plug in 6.7.1 to fix this. I got a message saying that the application manager was damaged and to download it again. I downloaded the application manager file (adobe application manager 8) but couldn't install it. I got an "installer failed to initilize" message.
    So I downloaded CS6 to see if that would fix the application manager issue. I have now been able to install the camera raw plug 6.7.1  and this is now working in CS5.5. So the initial problem is fixed for now but what I want to know is -
    - Is the Application Manager associated with the version or does it stand alone as a separate file?
    - If I now uninstall Photoshop 6 will the Application Manager uninstall also, or will it continue to work in 5.5?
    - What is the best way to uninstall version 6 - should I do this through Application Manager not Windows Control Panel? I cannot see where to do this.
    The Adobe site says to start AAM by :
    Choose Help > Updates in a Creative Suite 5 product.
    Double-click PDApp.exe in the following locations:  Windows 64 bit: \Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\
    If I chose Help in Photoshop 5.5 - the update option is greyed out and not available.
    If I follow the second option I get the Creative Cloud Application Manager (version 9) offering me updates for version Photoshop 6 only.
    How can I find out if I have a working Application manager for 5.5?
    What is the best way to uninstall version 6?
    You are right I have found folders / files which need to be cleaned up from CS4 eg: plug ins and a lot of empty folders. What is the best way to clean up these - can I just delete them in Windows Explorer?
    Sorry this is long - I am learning as I go
    Carmel

  • In Windows 7 I mistakenly un-installed Adobe Application Manager and all applications (CS3E, CS5 and Elements 6) have disappeared from programs on the start menu

    WIN7: Mistakenly un-installed Adobe Application Manager and now all Adobe apps (CS3, CS5 and Elements 6) have disappeared from the programs list in the start up menu.
    CS5 Bridge is still there so I can get into the photo editor to de-activate it and re-install.
    However, all of CS3 has disappeared so I cannot get into it to de-activate.
    Question 1: Will downloading and re-installing Adobe Application manager get CS3 automatically back?
    Question 2: If not, what to do to get CS3 back things working properly again? Remember, I can't de-activate it.
    Thanks and have a happy day!

    Don't worry about activation unless you are installing on a new and different machine. Simply reinstall in order. It should all work.
    Then install any updates. Product updates
    After that, let me know how it went and if there are any further questions.
    Gene

  • New user, same application settings and prefs

    I want to create a new user account, but I would like to keep the same preferences and settings for certain applications, Mail, bookmarks in Safari, etc. from another account. I don't want to completely duplicate an account, but I would like to keep some things the same, and I don't want to have to go and manually re-enter everything I've set up, like, say, my Photoshop actions and color settings.
    Can I do this? If so, how?

    To Apple Discussions!
    Any of the following helpful?
    Using Presets to Create New Accounts
    Adding a new user account to your computer
    If the above is not helpful, you can search for yourself over on Knowledge Base - http://search.info.apple.com/

  • Adobe Application Manager and all applications "hang"

    For the last week I have been unable to open most of my Adoe applications tha tI have as aa member of Creative Cloud - I am able to open Lightroom, and, after recurrent failures, Premiere Pro did launch and I could work on it, but subsequently I have been unable to do so again.  I have tried contacting support, but after 45 minutes of waiting my phone battery died (on two occasions).
    I am using wiindows 7
    I have tried to:
    Uninstall AAM and reinstall - no help:  When I launch this program it either does not launch at all or starts bu then hangs.  When it does tno lauch the AAM process is visible in the task maanger pane in Windows.
    I tired to uninstall Photoshop, but this was a problem as the Adobe uninstaller 'froze' as the AAM does.
    I tired to use Adobe Download assistant as described somewhere on teh forum - no advance.  I ran Adobe support advisor and received this notification number -
    40-44589-041827012013 - but have been unable to notify to anyone!  (Tried 'chat tech support" - told me to phone voice support)
    Today I launched Adobe Creative Suite Cleaner and removed the AAM as per instructions.  When I then went to reinstall Photoshop, the AAM launched but blue dots started to go aroundand then stopped as occurred previously.
    I hope that someone can offer advice - please help!
    Stephen

    Have you actually trahsed all the application prefs? Made your system's security tools behave? Checked the specific causes for the failures in your System Event Viewer? Removed any other software/ Windows updates? If all apps fail, something has changed on your system and it's most likely not the Adobe software...
    Mylenium

  • Oracle Forms on IBM Web Sphere Application Server  and BEA Application Serv

    Hi,
    Can we run Oracle Forms on top of IBM web phere or Bea application servers?..
    If possible, please give the steps that we need to follow to make it run on them

    I've seen this asked before and the general repsonse was : don't do it , it's not worth the hassle. Apart from anything else you'll still have to pay the license fees for the Oracle Application server ....

  • Weblogic 8.1 and exploded EAR application

    I have been trying to deploy my eclipse j2ee project in exploded way in weblogic 8.1
    I have standard folder structure,
    <APP_ROOT>
    -> index.jsps etc.
    -> WEB-INF/classes
    -> APP-INF/lib (for 3rd party libs)
    META-INF/ application.xmls and ejb-jar xmls. Now problem is, i am not able to deploy ejbs using classpath WEB-INF/classes.
    I tried MANIFEST.MF class-path entry, it didn't work.
    Is there any way to define classpath for ejbs at application classloader level?
    Ofcourse, if I create new folder say 'ejb' and deploy that as ejb module and put all classes in ejb directory, it works.
    my application.xml looks like this
    <application>
    <display-name>Test Application</display-name>
    <module>
    <ejb>/</ejb>
    </module>
    <module>
    <web>
    <web-uri>/</web-uri>
    <context-root>webapp</context-root>
    </web>
    </module>
    </application>

    I have been trying to deploy my eclipse j2ee project in exploded way in weblogic 8.1
    I have standard folder structure,
    <APP_ROOT>
    -> index.jsps etc.
    -> WEB-INF/classes
    -> APP-INF/lib (for 3rd party libs)
    META-INF/ application.xmls and ejb-jar xmls. Now problem is, i am not able to deploy ejbs using classpath WEB-INF/classes.
    I tried MANIFEST.MF class-path entry, it didn't work.
    Is there any way to define classpath for ejbs at application classloader level?
    Ofcourse, if I create new folder say 'ejb' and deploy that as ejb module and put all classes in ejb directory, it works.
    my application.xml looks like this
    <application>
    <display-name>Test Application</display-name>
    <module>
    <ejb>/</ejb>
    </module>
    <module>
    <web>
    <web-uri>/</web-uri>
    <context-root>webapp</context-root>
    </web>
    </module>
    </application>

  • Deploying Enterprise Archive into weblogic 10.3.4.0 application server

    Hi All,
    I am trying to deploy enterprise archive into web-logic application server. This ear contains two modules. web service module and web application module.
    This application was previously running on Apache tomcat server and now i am migrating to web-logic application server.
    I am getting following error when deploying to the web-logic application server. Below exception.
    For web service and web application, I am using Hibernate and Spring frameworks. Following are the dependencies of web service
    [INFO] ------------------------------------------------------------------------
    [INFO] Building WebServiceModule Maven Webapp 1.0-SNAPSHOT
    [INFO] ------------------------------------------------------------------------
    [INFO]
    [INFO] --- maven-dependency-plugin:2.1:tree (default-cli) @ MavenWebAppModule ---
    [INFO] com.packt.maven:MavenWebAppModule:war:1.0-SNAPSHOT
    [INFO] +- com.packt.maven:BusinessLogicModule:jar:1.0-SNAPSHOT:compile
    [INFO] | +- com.packet.maven:DataPersistanceModule:jar:1.0-SNAPSHOT:compile
    [INFO] | \- com.packt.maven:DataModelModule:jar:1.0-SNAPSHOT:compile
    [INFO] +- com.packt.maven:WebServiceClientModule:jar:1.0-SNAPSHOT:compile
    [INFO] +- org.apache.struts:struts2-core:jar:2.1.8:compile
    [INFO] | +- com.opensymphony:xwork-core:jar:2.1.6:compile
    [INFO] | | \- org.springframework:spring-test:jar:2.5.6:compile
    [INFO] | +- org.freemarker:freemarker:jar:2.3.15:compile
    [INFO] | +- ognl:ognl:jar:2.7.3:compile
    [INFO] | +- commons-fileupload:commons-fileupload:jar:1.2.1:compile
    [INFO] | \- commons-io:commons-io:jar:1.3.2:compile
    [INFO] +- org.apache.struts:struts2-spring-plugin:jar:2.1.8:compile
    [INFO] | +- org.springframework:spring-beans:jar:2.5.6:compile
    [INFO] | +- org.springframework:spring-core:jar:2.5.6:compile
    [INFO] | \- org.springframework:spring-context:jar:2.5.6:compile
    [INFO] | \- aopalliance:aopalliance:jar:1.0:compile
    [INFO] +- xml-apis:xml-apis:jar:1.0.b2:provided (scope not updated to compile)
    [INFO] +- javassist:javassist:jar:3.12.1.GA:compile
    [INFO] +- com.oracle:ojdbc6:jar:11.2.0:compile
    [INFO] +- org.springframework:spring:jar:2.5.6:compile
    [INFO] +- org.springframework:spring-web:jar:2.5.6:compile
    [INFO] +- org.hibernate:hibernate:jar:3.2.7.ga:compile
    [INFO] | +- net.sf.ehcache:ehcache:jar:1.2.3:compile
    [INFO] | +- javax.transaction:jta:jar:1.0.1B:compile
    [INFO] | \- asm:asm-attrs:jar:1.5.3:compile
    [INFO] +- dom4j:dom4j:jar:1.6.1:compile
    [INFO] +- commons-logging:commons-logging:jar:1.1.1:compile
    [INFO] +- commons-collections:commons-collections:jar:3.2.1:compile
    [INFO] +- cglib:cglib:jar:2.2:compile
    [INFO] +- antlr:antlr:jar:2.7.7:compile
    [INFO] +- asm:asm:jar:3.3:compile
    [INFO] +- javax.xml.soap:saaj-api:jar:1.3.3:compile
    [INFO] | \- javax.activation:activation:jar:1.1:compile
    [INFO] +- com.sun.xml.messaging.saaj:saaj-impl:jar:1.3.4:compile
    [INFO] | \- org.jvnet:mimepull:jar:1.4:compile
    [INFO] \- junit:junit:jar:3.8.1:test (scope not updated to compile)
    [INFO]
    Following are the dependencies of maven web app module
    [INFO] ------------------------------------------------------------------------
    [INFO] Building MavenWebAppModule Maven Webapp 1.0-SNAPSHOT
    [INFO] ------------------------------------------------------------------------
    [INFO]
    [INFO] --- maven-dependency-plugin:2.1:tree (default-cli) @ WebServiceModule ---
    [INFO] com.packt.maven:WebServiceModule:war:1.0-SNAPSHOT
    [INFO] +- org.springframework:spring:jar:2.5.6:compile
    [INFO] +- org.springframework:spring-web:jar:2.5.6:compile
    [INFO] | +- org.springframework:spring-beans:jar:2.5.6:compile
    [INFO] | +- org.springframework:spring-context:jar:2.5.6:compile
    [INFO] | | \- aopalliance:aopalliance:jar:1.0:compile
    [INFO] | \- org.springframework:spring-core:jar:2.5.6:compile
    [INFO] +- xml-apis:xml-apis:jar:1.0.b2:provided (scope not updated to compile)
    [INFO] +- javax:javaee-api:jar:6.0:provided
    [INFO] +- junit:junit:jar:3.8.1:test (scope not updated to compile)
    [INFO] +- com.oracle:ojdbc6:jar:11.2.0:compile
    [INFO] +- org.hibernate:hibernate:jar:3.2.7.ga:compile
    [INFO] | +- net.sf.ehcache:ehcache:jar:1.2.3:compile
    [INFO] | +- javax.transaction:jta:jar:1.0.1B:compile
    [INFO] | \- asm:asm-attrs:jar:1.5.3:compile
    [INFO] +- dom4j:dom4j:jar:1.6.1:compile
    [INFO] +- commons-logging:commons-logging:jar:1.1.1:compile
    [INFO] +- commons-collections:commons-collections:jar:3.2.1:compile
    [INFO] +- cglib:cglib:jar:2.2:compile
    [INFO] +- antlr:antlr:jar:2.7.7:compile
    [INFO] +- com.sun.xml.ws:jaxws-rt:jar:2.2.3:compile
    [INFO] | +- javax.xml.ws:jaxws-api:jar:2.2.3:compile
    [INFO] | | +- javax.xml.bind:jaxb-api:jar:2.2.2:compile
    [INFO] | | \- org.glassfish:javax.annotation:jar:3.1-b35:compile
    [INFO] | +- com.sun.xml.bind:jaxb-impl:jar:2.2.3-1:compile
    [INFO] | +- com.sun.xml.messaging.saaj:saaj-impl:jar:1.3.8:compile
    [INFO] | +- com.sun.xml.stream.buffer:streambuffer:jar:1.2:compile
    [INFO] | +- org.codehaus.woodstox:wstx-asl:jar:3.2.1:compile
    [INFO] | | \- stax:stax-api:jar:1.0.1:compile
    [INFO] | +- org.jvnet.staxex:stax-ex:jar:1.4:compile
    [INFO] | | \- javax.xml.stream:stax-api:jar:1.0-2:compile
    [INFO] | +- com.sun.org.apache.xml.internal:resolver:jar:20050927:compile
    [INFO] | +- org.jvnet:mimepull:jar:1.5:compile
    [INFO] | +- com.sun.xml.ws:policy:jar:2.2.2:compile
    [INFO] | | +- com.sun.xml.txw2:txw2:jar:20090102:compile
    [INFO] | | \- com.sun.istack:istack-commons-runtime:jar:2.2.1:compile
    [INFO] | +- org.glassfish.gmbal:gmbal-api-only:jar:3.1.0-b001:compile
    [INFO] | | \- org.glassfish.external:management-api:jar:3.0.0-b012:compile
    [INFO] | \- org.glassfish.ha:ha-api:jar:3.1.8:compile
    [INFO] +- asm:asm:jar:3.3:compile
    [INFO] \- org.jvnet.jax-ws-commons.spring:jaxws-spring:jar:1.8:compile
    [INFO] +- javax.servlet:servlet-api:jar:2.5:compile
    [INFO] +- org.apache.xbean:xbean-spring:jar:2.7:compile
    [INFO] +- javax.jws:jsr181-api:jar:1.0-MR1:compile
    [INFO] +- javax.xml.soap:saaj-api:jar:1.3:compile
    [INFO] +- com.sun.xml.stream:sjsxp:jar:1.0:compile
    [INFO] +- javax.annotation:jsr250-api:jar:1.0:compile
    [INFO] \- javax.activation:activation:jar:1.1:compile
    [INFO]
    In my weblogic application configuration i have provided following configuration to load java from my applications first. Could anybody help me on this issue. Thanks in advance for anyhelp
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:weblogic-application
         xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-application"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-application http://xmlns.oracle.com/weblogic/weblogic-application/1.0/weblogic-application.xsd http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/javaee_5.xsd">
         <!--weblogic-version:10.3.1 -->
         <wls:application-param>
              <wls:param-name>webapp.encoding.default</wls:param-name>
              <wls:param-value>UTF-8</wls:param-value>
         </wls:application-param>
         <wls:prefer-application-packages>
              <wls:package-name>antlr.*</wls:package-name>
         </wls:prefer-application-packages>
    </wls:weblogic-application>
    Exception.......
    SEVERE: Context initialization failed
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'com.sun.xml.ws.transport.http.servlet.SpringBinding#0' defined in ServletContext resourcepring/config/SpringBeans.xml]: Cannot create inner bean '(inner bean)' of type [org.jvnet.jax_ws_commons.spring.SpringService] while setting bean property 'service'; nested exceramework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)': FactoryBean threw exception on object creation; nested exception is java.lang.Linkageaint violation: when resolving field "DATETIME" the class loader (instance of weblogic/utils/classloaders/ChangeAwareClassLoader) of the referring class, javax/xml/datatype/Datahe class loader (instance of <bootloader>) for the field's resolved type, javax/xml/namespace/QName, have different Class objects for that type
    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveInnerBean(BeanDefinitionValueResolver.java:230)
    at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:122)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1245)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1010)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:472)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
    at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
    at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
    at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
    at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
    at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
    at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
    at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
    at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
    at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name '(inner bean)': FactoryBean threw exception on object creation; nested exceptiogeError: loader constraint violation: when resolving field "DATETIME" the class loader (instance of weblogic/utils/classloaders/ChangeAwareClassLoader) of the referring class, jtatypeConstants, and the class loader (instance of <bootloader>) for the field's resolved type, javax/xml/namespace/QName, have different Class objects for that type
    Edited by: user8643895 on Apr 14, 2013 3:42 AM

    This forum is about iAS. For weblogic go to: WebLogic Server - General

Maybe you are looking for

  • I take a lot of drugs got all my weekend on benders

    I take a lot of drugs got all my weekend on benders why wouldn't he two or three days and just drink and dance and take pills really am and into drugs to lose weight I enjoy the experience it was just part of my life and what I was doing at the time

  • Internal DVD -R/RW DL is no longer recognized

    My Lacie Lightscribe DVD-R/RW DL is no longer being recognized by my Mac running 10.3.9. Please Help!! Thank You

  • Help with Decode/Case

    Hello All, Can I use decode/case function within a decode function? {code} SELECT TO_CHAR (           EDMS_STRAGG_WC (              DISTINCT DECODE (                          eqs.attrib_code,                          'PRODUCT_AUTHORIZATION',    'Auth

  • Fonts don't look as good (even on an imac)?

    Is it just me or do the fonts look worse on snow leopard? I just installed it, and I first noticed it in Mail -- all the text for my mailboxes look a little harder to read. The text rendering just doesn't seem to look as good. Anyone else notice this

  • Add a "Questions" page

    I've created a "Questions" page with fields (firstname, emailaddress, phone, and questions) but when a user selects the submit button it just opens a new email that has all the fields in the form. i.e.  firstname=Penny&emailaddress=first.last%40my.ad