.jar not including .pngs

I hope I am not asking in the wrong forum, I apologize if I am!
I am working on a rather simple puzzle game and made custom .png files for the game pieces. Now that I finally figured out how to get Java to paint it on the board and work properly I'm having a new problem. If I make a .jar and run it from my machine it runs fine, presumably because the .pngs are stored locally on my machine. If I email the .jar to anyone, when they open the game everything is there except for the game pieces (the .pngs). I am not sure if there is a way to include the .pngs into the .jar file, or if I have to do something altogether different, such as encoding the .pngs. Since my question is faily generalized, and this project is written over many classes, I have decided not to include any code. Let me know what code you need to see and I will gladly and promptly post it.
I greatly appreciate any help given or directions pointed.

Drahkir wrote:
..I am working on a rather simple puzzle game and made custom .png files for the game pieces. Now that I finally figured out how to get Java to paint it on the board and work properly I'm having a new problem. If I make a .jar and run it from my machine it runs fine, presumably because the .pngs are stored locally on my machine. If I email the .jar to anyone, when they open the game everything is there except for the game pieces (the .pngs). I am not sure if there is a way to include the .pngs into the .jar file, Yes there is. A Jar can contain PNG, GIF, JPEG or BMP files, TXT, RTF, or HTML. In fact, Jars can store anything intended to be accessed by URL or (by virtue of that) InputStream. You will find that most Java methods that accept a File (or the ones that accept a String that represents a file path/name), will also accept an URL or InputStream. This is handy, since a File object can never point to a resource inside a Jar.
So, to make this happen:
- Put the images wherever you want in the Jar. A common approach would be to put them all into a sub-directory like 'images'.
- When it comes time to access them, form an URL to the resource using ..
URL url = myObject.getClass().getResource("images/image1.png");- Then use the URL in place of whatever you are doing now.
...Since my question is faily generalized, and this project is written over many classes, I have decided not to include any code. Let me know what code you need to see and I will gladly and promptly post it.For 3 reward points? No, please don't post your code.
I hope you can figure it out from what I have put above, but I am not very inclined to revisit this thread.

Similar Messages

  • Why is charsets.jar not included in jre5?

    hi,
    i recently decided to using jre1.5.0_9-b01 and wondered why my application that has originally been developed with 1.4.2_12 doesn't support the cp850 encoding anymore.
    so i browsed the docs at:
    http://java.sun.com/j2se/1.5.0/docs/guide/intl/encoding.doc.html
    and found out that beside others the cp850 belongs to an extended encoding set included in lib/charsets.jar.
    straight to the point, there is no such charsets.jar in the lib directory of the jre5 installation.
    as a temporary fix, i copied the charsets.jar from the 1.4.2 installation and my application works fine again.
    so, why is charsets.jar not included in jre5?
    best wishes,
    r.

    It is included...Just not installed by default (in a typical install).
    You can go to "start/settings/control panel/add and remove programs" and select the JRE. If you get the option to modify or change and you have "supervisor" rights to your machine, then you can select the "modify or change" option (twice) and add support for additional languages. If there is a little yellow "1" in front of the drive icon, it is not installed. You must select the option and choose the first option on the drop down list...follow through to finish. Make sure you do not have any browser windows open (or anything else which may be using the JRE such as Tomcat). The install builds the charsets.jar. Good Luck

  • Jars not included in J2EE Library DC SDA

    I'm trying to create a J2EE Library DC that contains a few jar files (JUnit and JUnitEE) that I want to upload to the J2EE server for usage by a set of test classes. 
    I created an external library DC, imported the two jar files into the libraries folder, and added both jar files to both a compilation and assembly public part.  I then built the DC.  Great, the jar files are copied into the hierarchy under gen/default/public/assembly and gen/default/public/compliation.  Everything seems to be in order.
    I then created a J2EE Library DC, and added the external library DC as a used DC, with a build and run time dependancy.
    When I build the J2EE Library DC, the two jar files are NOT included in the SDA file.  Nothing I've tried can get the two jar files to be placed in the SDA file for deployment.
    Why why WHY are the jar files not in the SDA?  What am I doing wrong?  I've spent the last while reading everything I can find on SDN about j2EE Library DCs, and it seems that I'm doing everything correctly - or am I?
    I'm running SP16.  Can someone verify that a) my procedure above is correct, and b) that this does work under SP16?
    FYI, I have done this before, but not with SP16 - this is my first attempt.  That said, I've always had problems getting the imported jar files to appear in the final SDA file....it's frustrating to say the least.  DCs are wonderful things, but man, when they don't work, it's a royal pain in the rear end trying to figure out what's wrong.

    Hmmm, perhaps this is part of the problem:  here is the defLib.pp file which is automatically generated when you create a J2EE Library DC:
    <?xml version="1.0" encoding="UTF-8"?>
    <public-part ....>
         <name>defLib</name>
         <purpose>compilation</purpose>
         <caption></caption>
         <description></description>
         <entities>
              <entity>
                   <name>sap.com~test~lib</name>
                   <entity-type>SERVER_COMPONENTS</entity-type>
              </entity>
         </entities>
    </public-part>
    I created a new Server Library DC and changed the purpose to assembly, and then was able to create an entity reference. However, now I get this error:
    createPublicParts:
      [pppacker] Packing assembly public part 'defLib'
      [pppacker] Packed   0 files for entity sap.com~zzz~lib (SERVER_COMPONENTS)
      [pppacker] Packing entity reference zzz/jars (sap.com), assembly:  ()
      [pppacker] ERROR: java.util.zip.ZipException: Access is denied
    (sigh)
    I'm not sure what SP you're running, but perhaps the later SP's understand the structure of External Libraries, and automatically propagate the references for you....at least, that must be what was happening with SP15, since it worked properly.
    I think I'll install SP15 again, and have close look at the generated public parts, and see if I can't detect a difference.

  • External jar not included in ear

    hi
    I created a library dc with an external jar in its public part and this library dc is used in a j2ee library dc (like described in [ Howto embedd external Jar in EAR    |;).
    my enterprise application project uses a web module dc and this j2ee library dc.
    so far..but when I deployed the buildt ear and call my application the classes which are in my external jar file can´t be resolved at runtime.
    what´s my fault? has anyone an idea?
    Edited by: Thorsten Winter on Feb 4, 2008 2:47 PM
    I am working with nwdi and nds and developers workplace sp 13 and web as 7.0

    Hi Thorsten
    Please follow the blogs
    /people/valery.silaev/blog/2005/09/14/a-bit-of-impractical-scripting-for-web-dynpro
    /people/bala.krishnan2/blog/2006/09/25/bid-adieu-to-bots--using-captchas
    Hope it helps
    Regards

  • SJWS SP3 - Not including some jars from war file

    I have a problem when deploying my application using the new Java Web Server SP3 that when my application is deployed my weblogic.jar and j2ee.jar are not included in the classpath that is created.
    I have turned on finest detail logging and it does not say why these jar files are not being included in the path.
    They are in the war files lib dir just like all the other jars(about 14 of them).
    The only way I can get the app to run under SJWS is to add these other two files manualy to the classpath in the server.xml file.
    This app runs fine under JRun 4.0 with no issues.
    Why is this server dropping these jars and not even telling me it did it? What can I do to make it include these files in the proper classpath?
    Thx

    Here are the log entries.
    finer: WebappLoader[/vc]: WEB3107: Deploy WAR /WEB-INF/lib/weblogic.jar to
    C:\Sun\WebServer6.1\https-mis-lt-23974.corporate\webapps\XXXXXXX\WEB-INF\lib\weblogic.jar
    finer: WebappLoader[/vc]: WEB3107: Deploy JAR /WEB-INF/lib/j2ee.jar to
    C:\Sun\WebServer6.1\https-mis-lt-23974.corporate\webapps\XXXXXXX\WEB-INF\lib\j2ee.jarAs you can see it see's the two jar files from my WAR file.
    But when I try and run the app, have a look at the CLASSPATH it created. The two jar's are missing. WHY??????????????
    info: for host 127.0.0.1 trying to GET /vc/login/jsp/login_redirect.jsp, service
    -j2ee reports: WEB2798: [] ServletContext.log(): WEB4077: Classpath from the ser
    vlet context is:
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/NetComponents.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/aseclient.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/client.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/dbswing.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/dx.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/xxx-xxxxtags.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/xxx-xxxxxtags.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/internetbeans.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/jbcl.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/jcert.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/jnet.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/log4j.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/regexp.jar;
    C:/Sun/WebServer6.1/https-mis-lt-23974.corporate/webapps/XXXXXXX/WEB-INF/lib/xerces.jar;
    /C:/Sun/WebServer6.1/bin/https/jar/webserv-rt.jar;/C:/j2sdk1.4.2_04/lib/tools.jar;
    /C:/Sun/WebServer6.1/bin/https/jar/webserv-ext.jar;
    /C:/Sun/WebServer6.1/bin/https/jar/webserv-jstl.jar;
    /C:/Sun/WebServer6.1/bin/https/jar/ktsearch.jar;
    /C:/app/XXXXXXX/;
    /C:/j2sdk1.4.2_04/jre/lib/ext/dnsns.jar;
    /C:/j2sdk1.4.2_04/jre/lib/ext/ldapsec.jar;
    /C:/j2sdk1.4.2_04/jre/lib/ext/localedata.jar;
    /C:/j2sdk1.4.2_04/jre/lib/ext/sunjce_provider.jar

  • Export JAR from NWDS does not include external JARs imported to project

    Hi.
    I'm need to develop and run a batch java program.  I'm having difficulty getting the application to find the 2 external JARs at runtime.
    For compile time, I have physically imported these 2 JARs into the project.  To add them to the build path, I selected "Add Jar".  I now see the JARs in the project.
    I've also update the Manifest file appropriately by adding this line.
    Class-Path: com.sap.security.api.jar logging.jar
    However, when running the program from the command line, I get class not found errors.
    I noticed that the exported application JAR does NOT contain the needed 2 JARs even though they clearly exist under the project.
    Am I going about this correctly?  Why do external JARs not get included in the application JAR that is created?  Can I somehow force them to be included?
    Thanks,
    Kevin

    Hi Kevin,
    why don´t you just add the two additional JAR files to the classpath at runtime:
    java -cp x1.jar;x2.jar -jar yourJar.jar
    This is the easiest way to start your Java app.
    Have a look at java - the Java application launcher for details.
    Regards Helmut

  • Java file not included .

    I have:
    import org.eclipse.swt.widgets.Shell;in my program. But this is showing a 'cannot resolve' error.
    I found that this file was actually in a winzip extractor,so I extracted it in the workspace folder .But it is still not accessible.
    I cannot figure out from where the program is importing it's file.
    What is the problem? Where does the folder "org/eclipse/swt/widgets" need to be ?

    It's in a jar. Probably SWT.jar. Include that in your library path, although I'm guessing you're using Eclipse, it usually has a class library specifically containing SWT dependencies. Read teh docs

  • NWDS SPS 09: Jars not in external Library - Patch available?

    Hello experts,
    I am facing the problem described here:
    https://forums.sdn.sap.com/click.jspa?searchID=131779&messageID=2755058
    The result of the discussion is that the jars not being included in the external library is a bug of NWDS SP 9.
    Is there already a patch available? I searched throught Service Market Place but there is only a patch for Developement Infrastructure (DI Build Tool).
    Thanks for help,
    Enrico Lenk.

    Hi Maksim,
    Here you are the content of application-j2ee-engine.xml from EAR project
    <?xml version="1.0" encoding="UTF-8"?>
    <application-j2ee-engine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="application-j2ee-engine.xsd">
    </application-j2ee-engine>
    And just in case, content of ejb-j2ee-engine.xml from the EJB project
    <?xml version="1.0" encoding="UTF-8"?>
    <ejb-j2ee-engine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ejb-j2ee-engine_3_0.xsd">
    </ejb-j2ee-engine>
    Libraries i'm using are: mdm-admin.jar, mdm-common.jar, mdm-core.jar, mdm-data.jar, mdm-extension.jar, mdm-protocol.jar and mdm-publishing.jar
    Not sure what's the prefered option, if use these libraries as external jars or add to my project as dependency
    Thanks a lot in advance
    Pablo

  • EJB project IDE build dos not include properties files

    We have property files also which we want included as part of the build process
    for EJB projects but if we use the IDE build it does not include them. We have
    to therefore export the IDE build and customize it to include *.properties like
    this
    <zip basedir="${dest.path}" zipfile="${ejb.outputJar}" encoding="UTF8"> <!-- JARs
    filenames are encoded UTF8 --> <zipfileset dir="${project.local.directory}" includes="*.properties"
    /> </zip>
    which causes a problem for us because the exported build file is specific to a
    user's local PC and cannot be used in a team environment.
    How can we have the IDE build include all the files within an EJB project i.e.
    include properties files also.

    Hey Jamie,
    Currently there is no support to include other .properties files into
    the internal build. There's a build.properties that you get as part of
    an EJB project which you could place your values into and use that as
    your template for your team based development and check that into your
    source control.
    If you'd really like to get gross and hack Workshop a little bit you
    could modify the default EJB project template to use your .properties
    file for every EJB project you create. This would then splat a copy of
    your .properties file into the root of the EJB project.
    To do that you'd go to {your BEAHOME}\workshop\templates and crack open
    the ejb-project.zip template zip file and merge your settings into the
    existing build.properties file. This has the same
    effect as replacing the .properties file after you've created your
    project only it keeps you from having to perform that step each time.
    The downside of this is that each person on your team would then have to
    update that template zip file in their workshop installation. (I'd make
    sure to backup the original template file before performing this
    activity so you can always go back to the original template).
    Hope this helps,
    -Michael
    Jamie wrote:
    We have property files also which we want included as part of the build process
    for EJB projects but if we use the IDE build it does not include them. We have
    to therefore export the IDE build and customize it to include *.properties like
    this
    <zip basedir="${dest.path}" zipfile="${ejb.outputJar}" encoding="UTF8"> <!-- JARs
    filenames are encoded UTF8 --> <zipfileset dir="${project.local.directory}" includes="*.properties"
    /> </zip>
    which causes a problem for us because the exported build file is specific to a
    user's local PC and cannot be used in a team environment.
    How can we have the IDE build include all the files within an EJB project i.e.
    include properties files also.

  • Project librarys not included in WAR file with deployment (WEB-INF/lib)

    Using JDeveloper 9.0.5.2
    Project Libraries are not included in WEB-INF/lib when deploying. Although the files are selected in the deployment file at 'Contributors'. Within the 'filter' the .jar files are missing.
    To solve it i have to register again (i have already made the librarys project library's) the files within Tools->ManageLibrarys as user library's.
    The other workaround is to make the library's System Library's within the project.
    In my opinion it is a bug that you must include the project librarys as user librarys within the 'LibraryManager'

    Unfortunately no, the issue with output folder being ignored occurs only with example apps bundled with Workshop product.
    You can try the following workaround:
    - In Workshop, Project > Properties - Java Build Path, switch to Source tab - "Remove the source folder listing" - Click OK and dismiss Properties window.
    - Project > Properties - Java Build Path > Source Tab, add the same source folder entry - Click OK
    - Export as WAR
    With this you should see the class files bundled under output directory structure (Ex: WEB-INF/classes).

  • Tomahawk jar not available in JSF

    {color:#0000ff}Hi all,
    I use myface1.1 tomcat5.5 and EBA workshop3.3 to develope JSF website. In some reason, i use tomahawk1.1.3 selectOneRadio. At the beginning, everything seen quite smooth, but when i test my website servial time, the error message occar:
    {color}
    [12:29:32:187][org.apache.myfaces.config.FacesConfigurator-feedStandardConfig] Reading standard config org/apache/myfaces/resource/standard-faces-config.xml
    [12:29:32:703][org.apache.myfaces.config.FacesConfigurator-feedClassloaderConfigurations] Reading config jar:file:/C:/AdminReport/WorkSpace/.metadata/.plugins/org.eclipse.wst.server.core/tmp1/webapps/JSFAdminReport3/WEB-INF/lib/webreporting-jsf.jar!/META-INF/faces-config.xml
    [12:29:32:734][org.apache.myfaces.config.FacesConfigurator-feedContextSpecifiedConfig] Reading config /WEB-INF/config/faces-config.xml
    [12:29:33:156][org.apache.myfaces.webapp.StartupServletContextListener-initFaces] ServletContext 'C:\AdminReport\WorkSpace\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\webapps\JSFAdminReport3\' initialized.
    [12:29:33:234][org.apache.myfaces.webapp.MyFacesServlet-init] MyFacesServlet for context 'C:\AdminReport\WorkSpace\.metadata\.plugins\org.eclipse.wst.server.core\tmp1\webapps\JSFAdminReport3\' initialized.
    {color:#ff0000}[12:29:49:546][org.apache.myfaces.shared_impl.config.MyfacesConfig-getCurrentInstance] Tomahawk jar not available. Autoscrolling, DetectJavascript, AddResourceClass and CheckExtensionsFilter are disabled now.
    {color}[12:29:49:750][org.apache.catalina.core.ApplicationDispatcher-invoke] Servlet.service() for servlet jsp threw exception
    java.lang.NoClassDefFoundError: org/apache/myfaces/taglib/html/ext/HtmlSelectOneRadioTag
    at org.apache.jsp.report.admin.web.lic.LIC3320_jsp._jspx_meth_x_selectOneRadio_0(LIC3320_jsp.java:296)
    at org.apache.jsp.report.admin.web.lic.LIC3320_jsp._jspService(LIC3320_jsp.java:88)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)
    at org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_f_subview_1(adminLicense_jsp.java:437)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_h_form_0(adminLicense_jsp.java:253)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_f_view_0(adminLicense_jsp.java:169)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspService(adminLicense_jsp.java:126)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:416)
    at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
    at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
    at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:688)
    at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:658)
    at org.apache.jsp.index_jsp._jspService(index_jsp.java:44)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:595)
    [12:29:49:765][org.apache.catalina.core.ApplicationDispatcher-invoke] Servlet.service() for servlet jsp threw exception
    java.lang.NoClassDefFoundError: org/apache/myfaces/taglib/html/ext/HtmlSelectOneRadioTag
    at org.apache.jsp.report.admin.web.lic.LIC3320_jsp._jspx_meth_x_selectOneRadio_0(LIC3320_jsp.java:296)
    at org.apache.jsp.report.admin.web.lic.LIC3320_jsp._jspService(LIC3320_jsp.java:88)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)
    at org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_f_subview_1(adminLicense_jsp.java:437)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_h_form_0(adminLicense_jsp.java:253)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_f_view_0(adminLicense_jsp.java:169)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspService(adminLicense_jsp.java:126)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:416)
    at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
    at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
    at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:688)
    at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:658)
    at org.apache.jsp.index_jsp._jspService(index_jsp.java:44)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:595)
    [12:29:49:781][org.apache.catalina.core.ApplicationDispatcher-invoke] Servlet.service() for servlet faces threw exception
    javax.faces.FacesException: org/apache/myfaces/taglib/html/ext/HtmlSelectOneRadioTag
    at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:435)
    at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
    at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
    at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:688)
    at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:658)
    at org.apache.jsp.index_jsp._jspService(index_jsp.java:44)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: org.apache.jasper.JasperException: org/apache/myfaces/taglib/html/ext/HtmlSelectOneRadioTag
    at org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)
    at org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_f_subview_1(adminLicense_jsp.java:437)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_h_form_0(adminLicense_jsp.java:253)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_f_view_0(adminLicense_jsp.java:169)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspService(adminLicense_jsp.java:126)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:416)
    ... 33 more
    [12:29:49:796][org.apache.catalina.core.StandardWrapperValve-invoke] Servlet.service() for servlet jsp threw exception
    javax.faces.FacesException: org/apache/myfaces/taglib/html/ext/HtmlSelectOneRadioTag
    at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:435)
    at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
    at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
    at org.apache.myfaces.webapp.MyFacesServlet.service(MyFacesServlet.java:74)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    at org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:688)
    at org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:658)
    at org.apache.jsp.index_jsp._jspService(index_jsp.java:44)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: org.apache.jasper.JasperException: org/apache/myfaces/taglib/html/ext/HtmlSelectOneRadioTag
    at org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:574)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:499)
    at org.apache.jasper.runtime.JspRuntimeLibrary.include(JspRuntimeLibrary.java:966)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_f_subview_1(adminLicense_jsp.java:437)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_h_form_0(adminLicense_jsp.java:253)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspx_meth_f_view_0(adminLicense_jsp.java:169)
    at org.apache.jsp.report.admin.web.adminLicense_jsp._jspService(adminLicense_jsp.java:126)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:416)
    ... 33 more
    {color:#0000ff}The most i dont understand is why it suddenly cant load the tomahawk.jar. I have put it under web-inf/lib/ folder in my website. could anyone give me any hints.
    {color}
    {color:#0000ff}Thanks you so much
    emmy.ma{color}

    The error you get is probably because you are using <h:selectOneRadio .../> for each radio button. The usage however defines to encapsulate radio options within <h:selectOneRadio> </h:selectOneRadio>
    Something like
    <h:selectOneRadio value=${form.radio}>
    <f:selectItem itemValue="HighSchool1" itemLabel="itemLabel1" />
    <f:selectItem itemValue="HighSchool2" itemLabel="itemLabel2" />
    <f:selectItem itemValue="HighSchool3" itemLabel="itemLabel3" />
    </h:selectOneRadio>
    Hope it helps...
    cheers

  • Creating jar file including 2 another jar files

    hi
    My project has java files, properties files,batch files as well as two jar files,mail.jar & activation.jar(for importing packages).
    I have to include these jar files while setting environment variables.
    Now i want to make "MyPrj.jar" file for myproject ,can anyone pls help me how to include these all files into a single jar file. and how to make setup file
    I have tried to extract out .class files of mail.jar & activation.jar & i ve created MyPrj.jar by including all class files(including class files of mail.jar & activation.jar) but manifest file(headers) are not added to MyPrj.jar.
    i have also tried to give mail.jar & activation.jar in Class-Path of menifest file, but it is also not working.
    Pls Help
    Thanks a lot

    [http://sourceforge.net/projects/one-jar]
    "One-JAR(TM) is a simple solution to a vexing problem in Java: how to distribute an application as a single jar-file, when it depends on multiple other jar-files. One-JAR uses a custom classloader to discover library jar files inside the main jar. "

  • Where is the jar file includes ejb3.0 interface

    I just start using ejb 3.0, when i create a stateless session bean, i can not find the Stateless interface when import javax.ejb.Stateless. Appreciated if someone can let me which jar file includes those interface (like javax.ejb.Remove, javax.ejb.Stateful, etc.) and where to download?

    Hi,
    check jdeveloper_home\jdeveloper_10133_<version>\jlib\identitystore.jar
    Frank

  • New Item Indicator Does Not Include Items from Folder with ILS

    We created a folder with Item Level Security and publishd items
    on that folder. If I drill into that folder, I can see that the
    Newly-added Items Icon is displayed. Once I click into that
    Newly-added Items icon, it will bring me to a view of all newly-
    added items within the content area. However, newly-added items
    published on the folder with ILS are not included on the list.

    Did you choose to preserve the hierachy?
    Ben
    Message Edited by Ben on 07-17-2007 11:56 AM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    preserveHierarchy.PNG ‏25 KB

  • Properties files in a Java package not included in DC build

    We are developing a Portal Standalone DC and i have a JspDynPage component within it. and i need to do internationalization in  it. so as part of that i want to keep multiple resource bundles(properties) so that i could manage my properties files easily, For example
    MSS.properties
    MSS_es.properties
    ESS.properties
    LSO.properties
    since portal by default has no way to do this bcos it allows only one resourcebundle to specify in portalapp.xml file, i have kept the resource bundles in java package like
    com.companyname.portal.resources.
    when i export from NWDS with selection of "i want to add non java resources into jar " option from windows->preferences->enterprise portal ->application development studio, it exports all the properties files as part of the par and everything works. but when i do the DC build it ignores all my properties files and it is not working. any suggestions on how to resolve this??? does SAP provide any other way of handling multiple properties files inside a PAR?????

    We are using NWDS 2004 SP19.  and yes i have defined three default SCs as dependencies. I tested with 2004s NWDS and it seems work fine. I am able to resovle this issue by moving my properties files into another java DC and create public part in java DC and use those public parts in Portal application DC.
    So The problem of not including the properties files into Jar seems to be issue only in Portal Application DC not in Java DC. thanks everyone for the quick responses..

Maybe you are looking for

  • CME UF6 remote control and Logic studio 8

    Hi, I've tried to configure and use the remote controls of the UF6 keyboard with logic, but they didn't want to work ... I've tried too with the midi learn, but nothing. In the transport tool, i've seen the midi in when i've pushed the remote keys. I

  • What is variant in ABAP Program Process Block in Process Chain?

    I wrote an ABAP program: REPORT ZTEST, PARAMETERS:  PROC(80) TYPE C. I can test this PORGRAM from SE38, it shows me a pop-up screen for PROC and I can enter a value and execute. Now I want to call this  program ZTEST from a process chain. In Process

  • Sequence Settings for "Apple Lossless" codec !?!?

    Help, I am editing a project and the material was delivered to me in the "Apple Lossless, stereo, 44100 khz DV, 720x480 (640x480), millions Is there a Sequence settings I can use to edit this without having to render it in the timeline ?!? Many thank

  • "On Hold" on sm50

    Gurus: I see some jobs have a status "On Hold" at sm50. The platform is AIX/DB2-8. -- what does it mean, i.e. hold for what? -- any action needed and if so, what to do? Thanks a lot!

  • After upgrade,stderr3 file is growing more than capacity of the file system

    The file is located in /usr/sap/C11/DVEBMGS00/ work/ folder was increasing rapidly. How to reduce the file size? How to truncate?