JSF DataTable value not accessable

Hi,
I am new to JSF, i am using the h:datatable, i have to use custom jsp tag lib's in one of the table column, but #{row.rating} is not accessable in side jsp custom tag. please help me. here is the sample. I am getting Unable to compile JSP error. This is urgent for me. Thanks for you help.
<h:dataTable id="MonitorDataTable" value="#{mList}" var="mReview" rendered="#{mList.rowCount>0}" >
<h:column>
<f:facet name="header">
<h:outputText value="Submit Date"/>
</f:facet>
<h:outputText value="#{mReview.dateInFormat}"/>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Rating"/>
</f:facet>
<f:verbatim>
<rr:ratingImage averagerating="#{mReview.rating}" />
</f:verbatim>
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Opt-Out Flag"/>
</f:facet>
<h:outputText value="#{mReview.optOutFlag}"/>
</h:column>
</h:dataTable>

Here is my reference in my jsp
<t:dataTable id="switchTable" value="#{switchDataBean.getAllSwitches}"
Here is my bean method
public class SwitchData
public Vector getAllSwitches()
     return switchTable;
Here is my faces-config managed-bean stuff
     <managed-bean>
          <description>Switch Data</description>
          <managed-bean-name>switchDataBean</managed-bean-name>
          <managed-bean-class>
               com.iciadp.mbse.sms.data.SwitchData
          </managed-bean-class>
          <managed-bean-scope>session</managed-bean-scope>
     </managed-bean>

Similar Messages

  • Problem using javascript to submit jsf form, values not submitted

    Greetings!
    I have a t:selectOneMenu where I want the page to be submitted when they change the selected value. At this point, I am able to get the form to submit and reload the page, which is all fine. The problem is that none of the values from the page are not set in the backing bean. I have break points on the setter methods that are not being hit.
    I have tried a number of things from searching multiple forums, but here are snippets from my latest version...
    <h:form>
    <t:commandLink id="hiddenLink" forceId="true" value="test link"
    action="#{pc_PageX.doBtnHiddenLinkAction}"></t:commandLink>
    <t:selectOneMenu id="pageList_top" forceId="true" value="#{pc_PageX.ValueX}"
         onchange="jspellSync(); submitPageX();">
         <f:selectItems value="#{pc_PageX.ListX}" />
    </t:selectOneMenu>
    </h:form>
    function submitPageX(){
         var hiddenLink = document.getElementById("hiddenLink");
         hiddenLink.click();
    }Note that the <t:commandLink> is not hidden, though it will be in the final version if I can get this to work.
    If I click the commandLink myself, the page is submitted with all the page values as expected. If I change the list value, thus using javascript to fire the commandLink's click event, the page is submitted with NO values.
    Can anyone come up with an explanation for this behavior? Or better yet, a solution?
    A couple other things I've tried...
    - Not using a commandLink and using jsf's submit function -> onchange="jspellSync(); submit();"
    - Clicking the link using other ways -> hiddenLink.fireEvent('onclick');
    If all else fails, I'll just add a button that they have to click to submit the form.

    snotmare wrote:
    BalusC wrote:
    I recall this problem in one of the ancient JSF versions. Which JSF version do you use? Do you have any room to upgrade to latest? We're using an IBM implementation of JSF, which is at version 7.0. The IBM implementation appears to be built on the JSF base 1.1.That's not an IBM JSF implementation, they do not have any one, they just have some component libraries which runs on top of some JSF implementation. RAD/WSAD ships by default with Sun JSF RI. Try upgrading to at least 1.1_02 which you can download from the aforementioned link. There's a gap of 2 years (and inherently a lot of bugfixes) compared to 1.1. If the application server used supports Servlet 2.5, you could even upgrade to the latest 1.2.
    We've had other issues with the IBM implementation, which could be the cause in this case too. We've been talking about switching to MyFaces, but there is one feature of the IBM version that we like. It's basically a script collector (hx:scriptCollector) that allows us to do pre-processing on the page.As said before, IBM does not have a JSF implementation. So replacing RI by MyFaces wouldn't make any difference.

  • CommandLinks and CommandButtons in Datatable do not work

    I have read the threads about this issue and am aware of the fact that there is a problem, if the backing bean is in request scope. However, my backing bean is in session scope and it still does not work - my action methods are never called. What's more, I have another backing bean in session scope, where it works perfectly and I cannot see any difference between them.
    Here's the code, my backing bean is dms:
    <h:form rendered="#{dms.documents.rowCount > 0}">
    <h:dataTable rowClasses="..." headerClass="..." value="#{dms.documents}"
    columnClasses="..." var="item" border="1" cellpadding="2" cellspacing="0">
    <h:column>
    <f:facet name="header">
    <h:outputText>DocName</h:outputText>
    </f:facet>
    <h:commandLink action="#{dms.test}" value="#{item.docName}"/>
    </h:column>
    <h:column>
    <f:facet name="header"/>
    <h:commandButton id="foo" value="View" action="#{dms.test}"/>
    </h:column>
    </h:dataTable>
    <h:commandLink action="#{dms.test}" value="Clickme"/>
    </h:form>
    Here is the code in the backing bean:
    public String test() {
    System.out.println("Hooray");
    return "mainPage";
    And this in faces-config.xml:
    <managed-bean>
    <managed-bean-name>dms</managed-bean-name>
    <managed-bean-class>com.mypackage.DmsController</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    Only the last link, the one outside the datatable and titled "Clickme", works. I can see "Hooray" in the logfile and am redirected to the main page. If I click any of the links or buttons in the datatable, nothing is written to the log and the same page is loaded again, but only the static content is displayed, i.e. no JSF tags are evaluated, they are just dropped. There are, however, a few hidden input fields called javax.faces.ViewState, which I don't know where they are coming from.
    As I said, I have another backing bean in session scope, which is modelled exactly like that and it works there. Maybe JSF apps are supposed to have only one controller?
    Many thanks in advance for any pointers,
    Ulrich
    Edit: It doesn't change anything if I put the backing bean in application scope. I did have the same problem before with my other backing bean, but could solve it there by putting it from request scope to session scope.

    <h:dataTable value="#{dms.documents}">How do you load this list? This list should not be null during the INVOKE_APPLICATION phase.
    Try stubbing the List right in the getDocuments() method and see if it works.

  • JSF dataTables - Problem during retrieving data from bean

    Hi, Below is the Stack Trace got on displaying data using JSF datatables.
         This error occurs somtimes and is not very frequent.We are using jboss seam, jboss-4.0.5.GA server and Hibernate.
         Anyone knows about this problem and how it can be resolved?
         Thanks in advance
         javax.faces.el.EvaluationException: Cannot get value for expression '#{loc.companyName}'
              at org.apache.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:402)
              at javax.faces.component.UIComponentBase.isRendered(UIComponentBase.java:1075)
              at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:508)
              at org.apache.myfaces.shared_impl.renderkit.RendererUtils.renderChild(RendererUtils.java:433)
              at org.apache.myfaces.shared_impl.renderkit.html.HtmlGridRendererBase.renderChildren(HtmlGridRendererBase.java:216)
              at org.apache.myfaces.shared_impl.renderkit.html.HtmlGridRendererBase.encodeEnd(HtmlGridRendererBase.java:98)
              at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:536)
              at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:495)
              at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:363)
              at org.apache.myfaces.shared_impl.taglib.UIComponentBodyTagBase.doEndTag(UIComponentBodyTagBase.java:54)
              at org.apache.jsp.menu_jsp._jspx_meth_h_panelGrid_0(menu_jsp.java:225)
              at org.apache.jsp.menu_jsp._jspx_meth_f_subview_0(menu_jsp.java:118)
              at org.apache.jsp.menu_jsp._jspService(menu_jsp.java:87)
              at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
              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:810)
              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.finish_005fregistration_jsp._jspx_meth_h_form_0(finish_005fregistration_jsp.java:263)
              at org.apache.jsp.finish_005fregistration_jsp._jspx_meth_f_view_0(finish_005fregistration_jsp.java:139)
              at org.apache.jsp.finish_005fregistration_jsp._jspService(finish_005fregistration_jsp.java:93)
              at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
              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:810)
              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.jboss.seam.jsf.SeamViewHandler.renderView(SeamViewHandler.java:59)
              at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:384)
              at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138)
              at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
              at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
              at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:147)
              at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
              at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
              at com.kmedia.filter.RequestFilter.doFilter(RequestFilter.java:184)
              at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
              at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
              at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
              at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
              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.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
              at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
              at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
              at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
              at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
              at org.jboss.web.tomcat.tc5.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:156)
              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.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
              at java.lang.Thread.run(Thread.java:595)
         Caused by: java.lang.NullPointerException
              at org.jboss.mx.loading.RepositoryClassLoader.findClass(RepositoryClassLoader.java:620)
              at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
              at org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:464)
              at org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:405)
              at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
              at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
              at org.jboss.seam.jsf.SeamApplication11.getPropertyResolver(SeamApplication11.java:197)
              at org.apache.myfaces.el.ELParserHelper$MyPropertySuffix.evaluate(ELParserHelper.java:532)
              at org.apache.commons.el.ComplexValue.evaluate(ComplexValue.java:145)
              at org.apache.commons.el.BinaryOperatorExpression.evaluate(BinaryOperatorExpression.java:154)
              at org.apache.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:383)
              ... 70 more
         10:23:55 Servlet.service() for servlet jsp threw exception
         Also check the JSF page, Backing bean, and VO
         JSF page
         <h:dataTable value="#{finishedRegistrationBean.list}" var = "loc" >
                        <h:column>
         <f:facet name="header">
                        <h:outputText value="#{displaymessages.registrationDate}" />
                        </f:facet>
                        <span class="bodylighttext"> <h:outputText value="#{loc.registrDate}" /> </span>
                                                                                                   </h:column>
                        <h:column>
                        <f:facet name="header">
                        <h:outputText value="#{displaymessages.companyName}" />
                        </f:facet>
                        <span class="bodylighttext"> <h:outputText
                        value="#{loc.companyName}" /> </span>
                        </h:column>
                        <h:column>
                        <f:facet name="header">
                             <h:outputText value="#{displaymessages.Address}" />
                             </f:facet>
                        <span class="bodylighttext"> <h:outputText
                        value="#{loc.address}" /> </span>
                        </h:column>
                        <h:column>
                        <f:facet name="header">
                        <h:outputText value="#{displaymessages.Action}" />
                        </f:facet>
                        <h:commandLink target="_blank"
                        action="#{finishedRegistrationBean.viewFinishedRegistrationPage(loc)}">
                        <h:graphicImage value="images/view_icon.gif"
                        alt="#{displaymessages.info_tooltip_view}"
                        width="17" height="17" style="border:0" />
                        </h:commandLink>
                        </h:column>
    </h:dataTable>
    Backing bean
                        @Name("finishedRegistrationBean")
                        public class FinishedRegistrationBean {
                             @In
                             private User user;
                             @In
                             private FacesMessages facesMessages;
                             private List<FinishedRegistrationVO> list;
                             public FinishedRegistrationBean() throws KMException {
                                  filterFinishedRegistration();
                             public void filterFinishedRegistration() throws KMException
                             list = new ArrayList<FinishedRegistrationVO>();
                             finished_list = userDAO.searchFinishedRegistrationDetails(country_code,uniqueID, companyName, user.getUserName());
                             public void setList(List<FinishedRegistrationVO> list) {
                                  this.list = list;
                             public List<FinishedRegistrationVO> getList() {
                             return list;
    FinishedRegistrationVO
         public class FinishedRegistrationVO {
              private String uniqId;
              private String companyName;
              private Date registrDate;
              private String address;
              public String getCompanyName() {
                   return companyName;
              public void setCompanyName(String companyName) {
                   this.companyName = companyName;
              public String getAddress() {
                   return address;
              public void setAddress(String address) {
                   this.address = address;
              public String getUniqId() {
                   return uniqId;
              public void setUniqId(String uniqId) {
                   this.uniqId = uniqId;
              public Date getRegistrDate() {
                   return registrDate;
              public void setRegistrDate(Date registrDate) {
                   this.registrDate = registrDate;
         }

    Could you please post your
    -HBM
    -faces-config.xml

  • Database Studio 7.9.08.09 -  Could not access to user management; Deleting old settings and reinstallation did not bring a change -- database studio deinstallation cannot be performed anymore

    Hi Community,
    for a few months I have been struggling with a  SAP Max DB database Studio issue and finally, I had to give up the idea of being able to fix this on my own. I am desperately seeking for help and I hope that you may be able to give me a hint, advice or even a solution.
    This is what happened:
    I used to run Windows 7 on 32bit. I also had Database Studio installed - which was running fine then.
    After a harware upgrade, I am running now Windows 7 on a 64 bit System. All my files from my local disk (C:\) have been restored and copied onto my new system.
    I reinstalled Database Studio Version 7.9.08.09 onto my new System.  But on the first try to start the program I received the error that said "Could not Access to user Management.See Window -> Show View-> Event Log Viewer for more Details."
    However the Event Log Viewer was empty.
    After searching the web for a solution, I followed the advice given in this community and deinstalled Database Studio and deleted the C.\Users\MyAccount\sdb folder manually.
    I reinstalled Database Studio and started it as Administrator.
    However, the error is still appearing.
    And, what makes it even worse is : now I am not able to uninstall Database Studio anymore.
    When I run SAP MaxDB Installation Manager and select the instance of database Studio to be uninstallled I am receiving the error:
    "ERR: Unhandled Exception: Can't call method: "GenPackageList" on an undefined value at SDB/Install/Gui/Dialogs/SelectInstance.pm line 328"
    Any advice is highly appreciated.
    Thanks,
    Agnieszka

    Hello Yashwanth,
    thank you for your quick Response.
    Yes, I downloaded and installed the 64 bit Version of dbstudio.
    I downloaded and ran the following .exe file: maxdb-studio-win-64bit-x86_64-7_9_08_09.exe
    I am running the following Java-Version:
    Java Plug-in 1.6.0_45
    Using JRE version 1.6.0_45-b06 Java HotSpot(TM) Client VM
    I myself am not a SAP customer. However, the Company I am working for is a SAP customer.
    Can you explain in Detail, how to create a ticket with SAP?
    Thanks,
    Agnieszka

  • Check Box values not reflecting in the pageflow instace variable

    Hello BEA Experts,
    I am binding a checkBox group to an instance variable of a Pageflow , it seems that the array inside the pageflow is null no matter what can you please let me know why.
    Is it possible to bind the checkbox group tag to an array in Pageflow or is there anything wrong with the way I am using the checkbox group with in a data- repeater table.
    Here are the code snippets..
    JSP:
    <netui-data:repeaterItem>
    <tr class="tablebody">
    <td>
    <netui:checkBoxGroup dataSource="{pageFlow.nodeIds}">
    <netui:checkBoxOption value="{container.item.nodeId}">&nbsp
    </netui:checkBoxOption>
    </netui:checkBoxGroup>
    Contoller:
    Has a private instance varible named nodeIds with getter and setter methods..
    Please let me know why the checked values are not reflecting in the pageFlow attribute.

    Hi Bob
    I didn't understand fully what you are trying here. Could you please clarify?
    I assume that you have a Array of NodeId objects.
    Lets say:
    Public NodeId[] nodeids = new NodeIds[10];
    and you want a checkBoxGroup mapped to NodeId[]
    and have as many checkBoxOption as number of elements in array with value as NodeId(i).nodeId
    Is this assumption correct?
    If the above is correct then the code snippet you have pasted is wrong in the sense that checkBoxGroup datasource is the array but the Option value is the main repeater item's nodeId which is wrong.
    The container.item would not access anything within the pageflow variable.
    I will post a sample in the next one
    Vimala-

  • Shared Variable Initial value not licenced error with cRIO

    Hello Everyone,
    I've a project that will be deploed on cRIO. This project was created on a different machine and didn't have any error regarding the shared variables. when I transfered the project to the computer connected to the cRIO, I have this error with all shared variable. The error message says that:
    1. Initial Values: Not Licenced or can't be edited outside of LabVIEW.
    2. Logging: Not Licenced or can't be edited outside of LabVIEW.
    attached are two images for the error i have.
    Can I have help with this issue?
    Thanks in advance
    Attachments:
    1.png ‏134 KB
    2.png ‏142 KB

    Good day,
    Sounds like you are using the DSC module features on your code and you forgot to activate the runtime system on that machine. If you have access to the NI License Manager, please check the status of the license.
    We need an active license for the second message but, for the first one you can try to program your own initial values for all of your network-published shared variables by initializing whenever the PC is started. During the initialization portion of your code, you can just write a constant value to the shared variables so the values are the same initial values every time it is run.
    Regards,
    Alejandro | Academic Program Engineer | National Instruments

  • Server hangs and session variable value not maintained.

    dear all,
    this is exteremetly urgent. i upgraded my tomcat to 4.1.24.but i have problems running the same code which was working earlier, i get null in the value of session variable. and also get the following error
    ////////////////error got /////////////
    Compile failed; see the compiler error output for details.
    at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:842)
    at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:682)
    at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:317)
    at org.apache.jasper.compiler.Compiler.compile(Compiler.java:370)
    at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext
    .java:473)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:190)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2
    95)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:256)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:
    2415)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatche
    rValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:172)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:22
    3)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :594)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ssConnection(Http11Protocol.java:392)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java
    :565)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadP
    ool.java:619)
    at java.lang.Thread.run(Thread.java:536)
    ///////////////end of error messsge ////////////
    the code where i am getting this message is as follows
    <%@ page session="true"%>
    <HTML>
    <HEAD><TITLE> LOGGED IN ok</TITLE> </HEAD>
    <%@ page import="java.sql.*" %>
    <%! // declaring variables
    String s = "";
    java.sql.ResultSet rs=null;
    java.sql.Connection con;
    java.sql.Statement stmt=null,stmt1=null;
    String username = "";
    String password = "";
    String Ousername = "";
    String Opassword = "";
    String changepass="";
    String usertype ="",useremail="",EmpName="";
    %>
    <body>
         <%      
         try
         //set session for max of 100 milliseconds
         // session.setMaxInactiveInterval(10000);
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         con = java.sql.DriverManager.getConnection("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};" +"DBQ=c:/vishal/HelpDesk.mdb;DriverID=22;READONLY=false","","");
              stmt = con.createStatement();
              s = "select * from LoginUser";     
         username = request.getParameter("LogonId"); //get this through prev. form
         password = request.getParameter("txtPassword");
         out.println(username + " " + password);
         // make explicitly to lower case
         username = username.toLowerCase();
         rs = stmt.executeQuery(s);               
                        while(rs.next())
                        //getting data from database
                        Ousername = rs.getString("EmpName");
                        Opassword = rs.getString("Password");
                        useremail = rs.getString("EmailId");
                        usertype = rs.getString("UserType");     
                        if(Opassword.equals(password) && Ousername.equals(username)) //found match correct entry
                             changepass = request.getParameter("PasswordNew");
                             if(changepass != null)
                             stmt1 = con.createStatement(java.sql.ResultSet.TYPE_SCROLL_INSENSITIVE,java.sql.ResultSet.CONCUR_UPDATABLE);     
                             s = "update LoginUser set Password = '" + changepass + "' where EmpName = '" + username +"'";
                             out.println(s);
                             stmt1.executeUpdate(s);
                             stmt1.close();
                             if(usertype.equals("User") == false)//ie admin
                             session.setAttribute("username",username);     
    ************************this value not maintained *********************
                             session.setAttribute("useremail",useremail);
                             session.setAttribute("usertype",usertype);
    ************************this value not maintained *********************
                             //closing connections
                             %>                                                       
                                  <jsp:forward page= "ComplaintType.jsp" />                         
                             <%
                             else //user
                             EmpName = username;
                             session.setAttribute("EmpName",EmpName);                         
                             session.setAttribute("useremail",useremail);
                             //closing connections
                             %>
                             <jsp:forward page="ComplaintCategory.jsp" />
                             <%     
                             }//end if
                        }//while loop                                   
                        //first closing connections then forwarding                    
         %>
                        <jsp:forward page="InvalidLOGIN.jsp" />
                        <%     
                        ///rs.close();
                        ////closing
                        //stmt.close();
         // con.close();
         }//try
              catch(Exception ep)
              out.println(ep);
              System.exit(1);
         %>
    </BODY>
    </HTML>

    hi all,
    thanx a lot for your help,specially hari52
    hari52 strangely enough the code started working,but
    now i have another problem
    after a while my server hangs or gets shutdown ,a
    message is shown as
    "java.exe has generated error and will be shutdown"
    i know that more connections can be a prob. but i
    make sure that connections r closed on each page,also
    i am a newbie and do not have the time at present to
    learn abt. connection pool ,can this problem be
    solved easily?
    it would be a great help again on your part,
    thanx again,You remove the System.exit(1) line from the code inside the catch block
    and try again. That's the reason tomcat getting down. System.exit(1) should not be used inside jsp. it will make the underlaying Servlet Engine to shutdown.

  • EL Expression in a JSF Datatable

    I have a JSF Datatable that returns a list of results. These results contain a short version of what I actually want to display. For example, "DOC" which stands for "Document". Is there a way that I can create an EL expression inside the Datatable to print out the full name instead of the shortened name?

    jmsjr wrote:
    gimbal2 wrote:
    IMO this requirement, if it is possible to implement, is only going to lead to a hard to maintain application. But I guess that's something you have to experience before you believe it.
    You can't use EL directly in a resource bundle out of the box, but it is possible to parametrize them anyway, did you know that? Perhaps that is already good enough for you.
    http://murygin.wordpress.com/2010/04/23/parameter-substitution-in-resource-bundles/
    http://stackoverflow.com/questions/5697189/pass-parameters-to-messages-from-resource-bundle-to-components-other-than-hou
    Yes, I am aware of parameterising the resource bundles. However, these require you to use f:param .. and the last time I tried, these parameters were not available / visible at the requiredMessage attribute. I'll try it again anyway.As I have re-discovered, you cannot parameterise the requiredMessage attribute.
    http://stackoverflow.com/questions/9280915/how-to-parameterize-requiredmessage-attribute-in-composite-component
    The other alternative I am looking at, for the cases where the requiredMessage needs to be parameterised, or needs to have dynamic content, is to call a backing method for the requiredMessage attribute, from which I can then do whatever I need, even use EL expressions. I was thinking of this as a last resort.
    On the other hand, when one uses the validator attribute, usually one ends up adding one or multiple FacesMessage in code within the method being called, where the string of the message already comes from a resource bundle. I was trying to have a delineation whereby:
    1) requiredMessage should only use resource bundles, no backing bean method called.
    2) FacesMessages added via the method called by the validator attribute is OK

  • JSF Datatable row data - Expand/Collapse

    Hi,
    I just started learning the JSF concepts. I read articles by BalusC which are very clear and easily understandable. Thanks to BalusC.
    I have a requirement to implement expand and collapse data using JSF datatable. The data comes from the backing bean is in the form of java.util.List which contains StudentInfo. I will have to display following data from the list.
    *{color:#0000ff}name {color}(this is to be displayed a link), firstname, lastname, dob*
    I am able to display the data in a nice formatted table using h:datatable. My main hurdle is to display an expanded info when the name link is clicked. The expanded info should be displayed below the row spanning all columns. The additional info being the comments, instructions whic are the part of the row data. Here is the code describing the StudentInfo.
    Appreciate if someone help me with suggestions. Very helpful if any sample code is avaialble.
    Regards,
    Smitha
    public class StudentInfo {
    //Following fields to be shown in row data
    private String name;
    private String firstname;
    private String lastname;
    private String dob;
    //Following fields to be shown in expanded form
    private String comments;
    private String instructions;
    public String getName() {
    return name;
    public void setName(String name) {
    this.name = name;
    public String getFirstname() {
    return firstname;
    public void setFirstname(String firstname) {
    this.firstname = firstname;
    public String getLastname() {
    return lastname;
    public void setLastname(String lastname) {
    this.lastname = lastname;
    public String getDob() {
    return dob;
    public void setDob(String dob) {
    this.dob = dob;
    public String getComments() {
    return comments;
    public void setComments(String comments) {
    this.comments = comments;
    public String getInstructions() {
    return instructions;
    public void setInstructions(String instructions) {
    this.instructions = instructions;
    }

    That's not possible with plain h:dataTable.
    Consider Tomahawk t:dataList where in you can specify rows and colspans yourself using plain HTML. Show/hide rows should be easy with JavaScript.

  • Jsf datatable component + java.sql.SQLException

    I get the following error when implementing a JSF DataTable component using
    JDeveloper 10.1.3.1.
    javax.faces.FacesException: java.sql.SQLException: Io exception: Socket closed
    I am able to follow the article in this link:
    http://www.oracle.com/technology/oramag/oracle/06-jan/o16jsf.html
    I can get the table generated, but it occurred to me that the example in this article does not include logic to close the statement, resultset, and connection. Sure enough, I jumped out to the database and there were numerous inactive connections hanging around from my application.
    I added the following code before the return null statement from the article:
    finally {
    try {
    rs.close();
    stmt.close();
    c.close();
    catch (Exception e) {
    System.out.println("after close");
    So I need to know the proper procedure to closing the resultset, statement, and connection using a jsf datatable component.

    You need to make sure you're using the Oracle9i JDBC driver, or using the Oracle 8.1.7.2 JDBC driver as I mentioned above.
    If you are using JDeveloper9i release 9.0.2 or 9.0.3, the driver you need is in <jdevhome>\jdbc\lib
    Otherwise, you can also download the drivers from OTN.

  • Expand and collapse link in jsf datatable

    Hello all,
    Initially i am displaying 5 rows per page. when user clicks expand link the table should display all the records in the page.when collapse is clicked vice versa
    Thanks
    K Ramu

    Hi Balu,
    Sorry for that, here is my code snippet. the problem i am getting is if i click the expand link it is expanding bids for all the projects, i want the expand feature for a selected project only. please help me where did i mistake.
              <t:dataTable id="openForBidsTable" rowIndexVar="row"
                   value="#{OpenForBidsBean.openForBids}" var="projects" border="1"
                   cellpadding="1" cellspacing="1" first="0" rows="5">
                        <t:outputText value="#{projects.nameOfTheProject}" />
                   </t:column>
                   <t:column>
                        <t:outputText value="#{projects.description}" />
                   </t:column>
                   <t:column>
                        <tr>
                             <td colspan="12"><h:panelGrid
                                  binding="#{OpenForBidsBean.gridPanel1}" rendered="true">
                                  <t:dataTable id="BidTable" value="#{projects.bids}" var="bids"
                                       border="2" cellpadding="2" cellspacing="2" first="0" rows="5">
                                       <t:column>
                                            <t:outputText value="#{bids.vendors.userName}" />
                                       </t:column>
                                       <t:column>
                                            <t:outputText value="Title" />
                                       </t:column>
                                       <t:column>
                                            <t:outputText value="Notes" />
                                       </t:column>
                                  </t:dataTable>
                                  <h:commandLink action="#{OpenForBidsBean.expandProjects}"
                                       value="Expand Link" />
                             </h:panelGrid> <h:panelGrid binding="#{OpenForBidsBean.gridPanel2}"
                                  rendered="false">
                                  <t:dataTable id="BidTable1" value="#{projects.bids}" var="bids"
                                       border="1" cellpadding="1" cellspacing="1" first="0">
                                       <t:column>
                                            <t:outputText value="#{bids.vendors.userName}" />
                                       </t:column>
                                  </t:dataTable>
                                  <h:commandLink action="#{OpenForBidsBean.collapseProjects}"
                                       value="Collapse Link" >                                   
                                  </h:commandLink>
                             </h:panelGrid></td>
                        </tr>
                   </t:column>
              </t:dataTable>
    managed bean code:
    public HtmlPanelGrid getGridPanel1() {
              return gridPanel1;
         public void setGridPanel1(HtmlPanelGrid gridPanel1) {
              this.gridPanel1 = gridPanel1;
         public HtmlPanelGrid getGridPanel2() {
              return gridPanel2;
         public void setGridPanel2(HtmlPanelGrid gridPanel2) {
              this.gridPanel2 = gridPanel2;
    public String expandProjects() {
              getGridPanel1().setRendered(false);
              getGridPanel2().setRendered(true);
              return "selected";
    public String collapseProjects() {
              getGridPanel1().setRendered(true);
              getGridPanel2().setRendered(false);
              return "selected";
    Thanks
    KRamu

  • JSF , DataTable, deletion question

    I have a collection of customer DTOs that are outputed using a datatabe. Each row has an Action column with a delete commandLink which points to my public deleteCustomer method. I have having problem with passing the customer id from the table to my method so that I can proceed with the deletion.
    Any help is greatly appreciated.
    Jammy

    Thank you guys. BalusC- great tutorial.
    However... I am trying to edit my DataTable using the following example at the bottom of page 174.
    [http://developers.sun.com/jscreator/learning/bookshelf/pearson/corejsf/datatables.pdf|http://developers.sun.com/jscreator/learning/bookshelf/pearson/corejsf/datatables.pdf]
    I am able to edit on my page once I check the checkBox, but once I uncheck it no data is saved. It simply resets.
    Here is my jsp code:
    <h:dataTable value="#{Controller.custList}" var="list" border="1">
                         <h:column>
                               <f:facet name="header">
                                <h:outputText value="Select"/>
                            </f:facet>
                            <h:selectBooleanCheckbox value="#{list.isEditable}" onclick="submit()"/>
                          </h:column>
                          <h:column>
                            <f:facet name="header">
                                <h:outputText value="Identification"/>
                            </f:facet>
                            <h:outputText value="#{list.id}"/>
                          </h:column>
                          <h:column>
                            <f:facet name="header">
                                 <h:outputText value="First Name" />
                            </f:facet>
                            <h:inputText value="#{list.firstName}" rendered="#{list.isEditable}" />
                            <h:outputText value="#{list.firstName}" rendered="#{not list.isEditable}"/>
                          </h:column>
                          <h:column>
                            <f:facet name="header">
                              <h:outputText value="Last Name" />
                            </f:facet>
                            <h:inputText value="#{list.lastName}" rendered="#{list.isEditable}" />
                            <h:outputText value="#{list.lastName}" rendered="#{not list.isEditable}"/>
                          </h:column>
                          <h:column>
                            <f:facet name="header">
                                <h:outputText value="Comments"/>
                             </f:facet>
                                  <h:inputText value="#{list.comments}" rendered="#{list.isEditable}" />
                                <h:outputText value="#{list.comments}" rendered="#{not list.isEditable}"/>
                          </h:column>
                        </h:dataTable> Thanks again.

  • Sorting a JSF dataTable

    Hi all,
    How can the contents of JSF dataTable component be sorted (any column). I need solution in JSF.
    can any one show an example or code snippet.
    I have this code of dataTable and I want to sort it by Date Created.
    How I can associate my code of sort with this column.
    <h:dataTable value="#{viewCampaignPageBean.allCampaigns}" var="campaign"
    border="1" width="60%" cellpadding = "4" styleClass= "sample" headerClass="th"
    >
    <h:column>
    <f:facet name="header">
    <f:verbatim>Title</f:verbatim>
    </f:facet>
    <h:outputText value="#{campaign.title}" styleClass="tLabel" />
    </h:column>
    <h:column>
    <f:facet name="header">
    <f:verbatim>Type</f:verbatim>
    </f:facet>
    <h:outputText value="#{campaign.campaignType}" styleClass="tLabel" />
    </h:column>
    <h:column>
    <f:facet name="header">
    <f:verbatim>Date Created</f:verbatim>
    </f:facet>
    <h:outputText value="#{campaign.createDate}" styleClass="tLabel" />
    </h:column>
    </h:dataTable>Thanks in advance

    Check <a href="http://balusc.xs4all.nl/srv/dev-jep-dat.html"></a> � <a href="http://balusc.xs4all.nl/srv/dev-jep-dat.html#SortingDatatable"></a>.

  • Error message 1606 could not access network location itunes.\

    i had itunes before and it was not working so i removed all programs relate to apple and itunes and quicktime.
    now i m trying to install itunes again and before it even install it shows up this message says " could not access network location iTunes.\" and just totally stops the installation...i've tried just about eveything from editing registry to upgrade my service pack..still no use. i even called the apple tech support and they can' even do anything...i just got an itouch and i can't use it because i don't have itunes...soo frustrating ..

    assuming you already have a library? Check out my itunes music library, but my issue still persists sadly.
    “iTunes” Music Library - Total: (475) Song’s, (1.3) Day’s of Total listening Time,
    (2.12) GB Size Amount
    Name Artist Album Time
    Use Me Up Aaron Neville [Aaron Neville] 300
    The Look Of Love ABC New Wave 80’s 210
    Be Near Me ABC Sounds Of The Eighties - 1984-1985 219
    POISON ARROW ABC Top 1000 Pop Hits of the 80’s 203
    Ragdoll Aerosmith Big Ones 264
    Dude Looks Like A Lady Aerosmith Big Ones 264
    Take Me to the Other Side Aerosmith #1 244
    Love In An Elevator Aerosmith 321
    Angel Aerosmith 306
    Living On The Edge Aerosmith 380
    Time (Alan Parsons Project) Alan Parsons Project 299
    Fantasy Aldo Nova Aldo Nova 305
    Cheb Mami - Rani Maak El Youm Algeria 271
    I Just Wanna Be Loved AM Radio Smallville Soundtrack 236
    You Can Do Magic America View From the Ground 232
    A Horse With No Name America 70’s Folk Rock Hits 250
    Lonely People America 148
    Enough Is Enough April Wine 243
    Just Between You And Me April Wine 237
    Sign Of The Gypsy Queen April Wine 258
    Turn Up The Radio Autograph 282
    Sorrow Bad Religion The Process Of Belief 201
    Freakshow On The Dance Floor Bar-Kays Funk Classics The 80’s 285
    Eleanor Rigby The Beatles Revolver [US] 127
    In The Beginning Beautiful World Beautiful World 238
    In Existence Beautiful World Beautiful World 271
    The Silk Road Beautiful World Beautiful World 367
    Magicien Du Bonheur Beautiful World Beautiful World 352
    I Know Beautiful World Beautiful World 307
    Love Song Beautiful World Beautiful World 370
    Journey Of The Ancestors Beautiful World Beautiful World 410
    Revolution Of The Heart Beautiful World Beautiful World 339
    Spoken Word Beautiful World Beautiful World 339
    Wonderful World Beautiful World Beautiful World 213
    The Final Emotion Beautiful World Beautiful World 314
    My Life Billy Joel Billy Joel’s Greatest Hits 227
    Allentown Billy Joel Greatest Hits Volume II (1978- 229
    New York State Of Mind Billy Joel Unknown 362
    Three Little Birds Bob Marley 180
    CouldYou_BeLoved Bob Marley - 234
    Blaze Of Glory Bon Jovi Best Of 2 335
    You Give Love A Bad Name Bon Jovi Crossroad 224
    Bad Medicine Bon Jovi New Jersey 316
    Social Disease Bon Jovi Slippery When Wet 258
    Wanted Dead Or Alive Bon Jovi 310
    Runaway Bon Jovi - Runaway 243
    Amanda Boston Greatest Hits 256
    More Than A Feeling Boston 285
    Miss Me Blind Boy George And Culture Club At Worst... The Best Of 270
    Church Of The Poison Mind Boy George and Culture Club At Worst...The Best Of 211
    It’s Only Love Bryan Adams So Far So Good 194
    Run To You Bryan Adams So Far So Good 232
    This Time Bryan Adams So Far So Good 199
    Cuts Like A Knife Bryan Adams So Far So Good 312
    99 and half Carol Lynn Townes v.a. 241
    Gonna Make You Sweat CC Music Factory 246
    Meli Meli (Arabic) Cheb Mami 211
    Parisien du nord(REMIX) Cheb Mami & K-mel 209
    Shake Me Cinderella Night Songs 224
    Nobody’s Fool Cinderella 288
    In the Midnight Hour The Commitments 142
    Reach Out Crystal Lewis Fearless 248
    Only Fools Crystal Lewis Fearless 265
    One Man Crystal Lewis Fearless 285
    satisfied Crystal Lewis Fearless 294
    Gypsy Woman (La da dee da da da) Crystal Waters 100% House Classics Volume 1 219
    Crystal Waters - 100% Pure Love (Ultimate Dance Party Mix) Crystal Waters 243
    Pictures of You The Cure Galore 285
    Love Song The Cure 210
    She Bop Cyndi Lauper She’s So Unusual 223
    Angel theme Darling Violetta Remixed By Sufferance 210
    calm before the storm Darude 393
    sandstorm Darude 446
    Sweet Lullaby Deep Forest Sweet Lullaby 237
    Rock Rock (‘Til You Drop) Def Leppard Pyromania 234
    Too Late For Love Def Leppard Pyromania 266
    Foolin’ Def Leppard Pyromania 273
    Rock of Ages Def Leppard Pyromania 247
    Photograph Def Leppard Vault Greatest Hits 1980-199 247
    Here With Me Dido No Angel 254
    Days Go By (Full Vocal Mix) Dirty Vegas Days Go By 490
    What People Do for Money Divine Sounds Street Jams: Hip-Hop from the Top, Vol. 1 242
    Dreaming (Album Cut) DJ Dado 243
    X-Files Theme DJ Dado 208
    Girls on Film Duran Duran Duran Duran 210
    Hungry Like A Wolf Duran Duran Much Music’s Made In The 80’s 220
    Rio Duran Duran Rio 333
    Duran Duran - Reach Up for the Sunrise Duran Duran 185
    The Wild Boys Duran Duran 257
    Romancing The Stone Eddie Grant The Best Of 289
    Shakin’ Eddie Money 190
    Take Me Home Tonight Eddie Money 210
    Two Tickets To Paradise Eddie Money 235
    Electric Avenue Eddy Grant 193
    Hyperlink Eiffel 65 Europop 299
    Too Much of Heaven Eiffel 65 Europop 319
    Move Your Body Eiffel 65 Europop 271
    My Console Eiffel 65 Europop 256
    The Edge Eiffel 65 Europop 262
    Silicon World Eiffel 65 Europop 273
    Europop Eiffel 65 Europop 328
    Callas Went Away Enigma MCMXC A.D. 268
    Mea culpa Enigma MCMXC A.D. 303
    The Voice Of Enigma Enigma MCMXC A.D. 141
    Back To The Rivers Of Belief [(A) Way To Eternity, (B) Hallelujah, (C) The Rivers Of Belief] Enigma MCMXC A.D. 632
    Principles Of **** Enigma Pure Moods 702
    Return to Innocence Enigma Pure Moods 250
    The Eyes of Truth (Matrix Cut) Enigma 249
    Knocking on forbidden doors Enigma - MCMXC 271
    Caribbean Blue Enya Enya 239
    May It Be Enya Lord of the Rings Soundtrack 212
    Ask the Mountains (Lord of the Rings) Enya 473
    A Little Respect ERASURE Retro Night 214
    Chains Of Love Erasure 212
    The Final Countdown Europe The Final Countdown 309
    Carrie Europe The Final Countdown 273
    Danger On The Track Europe The Final Countdown 225
    Ninja Europe The Final Countdown 226
    Cherokee Europe The Final Countdown 252
    Rock The Night Europe Veronica Top 1000 --- 2005 243
    Apron Strings Everything But The Girl She’s Having A Baby soundtrack 170
    Missing Everything But The Girl 248
    Hole Hearted Extreme 219
    More Than Words Extreme 333
    Epic Faith No More 293
    Dance, Dance Fall Out Boy From Under The Cork Tree 180
    Jail House Rap The Fat Boys All Meat No Filler: The Best of Fat Boys 286
    Can You Feel It The Fat Boys All Meat No Filler: The Best of Fat Boys 356
    The Fat Boys Are Back The Fat Boys Best Of The Fat Boys 366
    All you can eat The Fat Boys Krush Groove Soundtrack 207
    Street People Fire Fox Breakin’ 205
    Superman (It’s Not Easy) Five for Fighting America Town 221
    I Ran A Flock Of Seagulls A Flock Of Seagulls 307
    Space Age Love Song A Flock Of Seagulls The Wedding Singer Volume 2 226
    The Lady Is A Tramp Frank Sinatra A Collector’s Edition: 2 Video & 3 CD Collection [UK] 195
    I’ve Got the World on a String Frank Sinatra Frank Sinatra - Collectors Se 131
    Frank Sinatra - Night And Day frank Sinatra 239
    Frank Sinatra and Dean Martin - Mack the Knife frank Sinatra 264
    One For My Baby Frank Sinatra 280
    You Make Me Feel So Young Frank Sinatra 175
    02 No Reply at all Genesis Abacab 275
    Turn It On Again Genesis DUKE 231
    In Too Deep Genesis Invisible Touch 299
    Hold On My Heart Genesis We Can’t Dance 277
    Rico Suave Gerardo Mo Ritmo 290
    Bamboleo Gipsy Kings Gipsy Kings 204
    Tu Quieres Volver Gipsy Kings Gipsy Kings 193
    Moorea Gipsy Kings Gipsy Kings 242
    Bem, Bem, Maria Gipsy Kings Gipsy Kings 185
    Un Amor Gipsy Kings Gipsy Kings 218
    Inspiration Gipsy Kings Gipsy Kings 223
    A Mi Manera (My Way) Gipsy Kings Gipsy Kings 233
    DJobi DJoba Gipsy Kings Gipsy Kings 206
    Faena Gipsy Kings Gipsy Kings 207
    Quiero Saber Gipsy Kings Gipsy Kings 247
    Amor, Amor Gipsy Kings Gipsy Kings 189
    Duende Gipsy Kings Gipsy Kings 258
    In the Mood Glenn Miller Glenn Miller 241
    Dare Gorillaz Demon Days 244
    Feel Good Inc. Gorillaz Gorillaz Collection 223
    White Lines Grandmaster Flash 446
    Lady Red Light Great White Once Bitten 294
    Gonna Getcha Great White Once Bitten 253
    Never Change Heart Great White Once Bitten 267
    All Over Now Great White Once Bitten ... 263
    Mistreater Great White Once Bitten ... 345
    Save Your Love Great White Once Bitten ... 341
    Rock Me Great White Once Bitten... 437
    Fast Road Great White Once Bitten... 220
    On The Edge Great White Once Bitten... 361
    Love Plus One Haircut 100 Pelican West 217
    Axel F Harold Faltermeyer Instrumental Magic 181
    Things Can Only Get Better Howard Jones 235
    Bad Is Bad Huey Lewis Sports 227
    Perfect World Huey Lewis & The News Billboard Top 100 of 1988 246
    Do You Believe In Love Huey Lewis & The News Picture This 208
    Small World, Pt. 1 Huey Lewis & the News Small World 236
    You Crack Me Up Huey Lewis & The News Sports 223
    Workin’ for a Livin’ Huey Lewis and the News Workin’ for a Livin’ 156
    Heart and Soul Huey Lewis and the News 255
    I Want A New Drug Huey Lewis and the News 286
    It’s Hip To Be Square Huey Lewis And The News 239
    It was a good day Ice Cube 260
    Colors ice t 265
    J Geils Band Freeze Frame 236
    Love Stinks J Geils Band 230
    Don’t Wanna Fall In Love Jane Child Jane Child 243
    End Credits Jerry Goldsmith The Mummy 454
    Time In A Bottle Jim Croce Original Oldies 60’s & 70’s 143
    Workin’ at the Car Wash Blues Jim Croce Photographs & Memories 152
    New York’s Not My Home Jim Croce The Very Best of Jim Croce 187
    Operator (That’s Not The Way I Jim Croce 50th Anniversary Collection 229
    I’ll Have To Say I Love You In Jim Croce 153
    I Got A Name Jim Croce 192
    Look Sharp! Joe Jackson Greatest Hits 204
    Beat Crazy Joe Jackson Greatest Hits 259
    Memphis (Live) Joe Jackson greatest hits 321
    I’m The Man Joe Jackson I’m The Man 238
    Sunday Papers Joe Jackson Look Sharp! 262
    Steppin’ Out Joe Jackson Night & Day 257
    A Slow Song Joe Jackson Night and Day 420
    Jumpin’ Jive Joe Jackson Stepping Out 162
    Breaking Us In Two Joe Jackson 293
    Is She Really Going Out With Him Joe Jackson 215
    Paper In Fire John Cougar Mellencamp 232
    ROCK in the USA John Cougar Mellencamp 176
    Crumblin’ Down John Mellencamp The Best That I Could Do 1978 215
    Cherry Bomb John Mellencamp 288
    Chances Are (1950’s) Johnny Mathis 184
    Lights Journey Greatest Hits 190
    Only the Young Journey Greatest Hits 245
    Wheel in the Sky Journey Greatest Hits 252
    Separate Ways (Worlds Apart) Journey Greatest Hits 324
    Send Her My Love Journey Greatest Hits 235
    Who’s Crying Now Journey Journey’s Greatest Hits 302
    Open Arms Journey Journey: Greatest Hits 199
    Anyway You Want It Journey 203
    Don’t Stop Believing Journey 250
    I’ll Be Alright Without You Journey 290
    Stone In Love Journey 265
    Lovin’ Touchin’ Squeezin’ Journey 230
    Got the Life Korn Follow the Leader 225
    I Need You LeAnn Rimes Promo Only Mainstream Radio-May 227
    Take It Easy On Me Little River Band Greatest Hits 226
    The Night Owls Little River Band Greatest Hits 315
    Baby come back Little river band 217
    Lonesome Loser Little River Band 239
    Man On Your Mind Little River Band 247
    I Can’t Live Without My Radio LL Cool J All World: Greatest Hits 328
    Rock The Bells LL Cool J Radio 242
    Around The Way Girl LL Cool J 241
    Mambo No. 5 (A Little Bit Of ...) Lou Bega Absolute Hits of the 90’s - CD 1 222
    How Soon Is Now (Charmed Theme) Love Spit Love 267
    Working for the Weekend Loverboy Get Lucky 222
    Turn Me Loose Loverboy 341
    Close To You Maxi Priest Living In The Nineties 327
    It Don’t Mean a Thing Mel Torme Biography 138
    Don’t Get Around Much Anymore Mel Torme much anymore 152
    I get a kick out you Mel Torme 315
    Dr. Heckyll and Mr. Jive Men at Work Cargo 278
    Overkill Men at Work Cargo 227
    Be Good Johnny Men at Work Contraband-“Best Of Men@Work” 213
    Who Can It Be Now Men At Work Greatest Hits Volume II 201
    Sad but true Metallica The Black Album 327
    Holier than Thou Metallica Black Album 227
    The Unforgiven Metallica Metallica 387
    Wherever I May Roam Metallica Metallica 404
    Don’t Tread On Me Metallica Metallica (Black Album) 240
    Through The Never Metallica Metallica (Black Album) 244
    Enter Sandman Metallica 331
    John the Revelator Michael English Gospel 239
    Blessed Assurance Michael English 215
    Gospel Ship Michael English 257
    Barefoot on The Beach Michael Franks Barefoot on the Beach 304
    Heart Like An Open Book Michael Franks Barefoot on the Beach 288
    Why Spring Ain’t Here Michael Franks Barefoot On The Beach 263
    When You Smiled At Me Michael Franks Barefoot On The Beach 304
    Every Time She Whispers Michael Franks Barefoot On the Beach 444
    Mr. Smooth Michael Franks 280
    Mary, Did You Know Michael English 218
    Somebody’s Watching Me Michael Jackson & Rockwell 239
    Windows Welcome music Microsoft 324
    Wet My Whistle Midnight Star No Parking on the Dance Floor 311
    No Parking On The Dance Floor Midnight Star No Parking on the Dance Floor 290
    Freak-A-Zoid Midnight Star No Parking on the Dance Floor 479
    Electricity Midnight Star 363
    Only the lonely The Motels 197
    Kickstart My Heart Motley Crue Downloaded 283
    Shout at the Devil 97 Motley Crue Untitled 222
    Home Sweet Home Motley Crue 240
    Girls, Girls, Girls Motley Crue 266
    Looks That Kill Mötley Crüe Shout at the Devil 246
    Mona Lisa Nat King Cole The World of Nat King Cole 206
    Computer Age (Push the Button) Newcleus Jam on This!: The Best of Newcleus 390
    There’s No Stopping Us Ollie & Jerry Breakin’ Soundtrack 276
    Fool Like You Ozzy Osbourne The Ultimate Sin 319
    The Ultimate Sin Ozzy Osbourne The Ultimate Sin 224
    Secret Loser Ozzy Osbourne The Ultimate Sin 249
    Never Know Why Ozzy Osbourne The Ultimate Sin 268
    Thank God For The Bomb Ozzy Osbourne The Ultimate Sin 233
    Killer of Giants Ozzy Osbourne The Ultimate Sin 344
    Lightning Strikes Ozzy Osbourne Ultimate Sin, the 313
    No More Lonely Nights Paul McCartney & Wings Band on the Run - All the Best 268
    Theme From A Summer Place (60) Percy Faith 147
    West End Girls Pet Shop Boys Discography: The Complete Singles Collection 241
    Do You Remember Phil Collins But Seriously 276
    Another Day in Paradise Phil Collins But Seriously 322
    I Missed Again Phil Collins Face Value 224
    Long Long Way To Go Phil Collins No Jacket Required 263
    Don’t Lose My Number Phil Collins 288
    Land Of Confusion Phil Collins 284
    Something Happened On The Way To Heaven Phil Collins 291
    You Can’t Hurry Love Phil Collins 172
    I Wish It Would Rain Down Phil Collins & Eric Clapton 325
    Easy Lover Phil Collins & Phil Bailey 304
    fallen angel Poison Greatest Hits 235
    Unskinny Bop Poison Poison’s Greatest Hits 1986-1996 227
    Nothing But A Good Time Poison 222
    Flash’s theme Queen Flash Gordon 207
    Football Fight Queen Flash Gordon 88
    Flash To The Rescue Queen Flash Gordon 164
    Bohemian Rhapsody.mp3 Queen 353
    Who Wants to Live Forever Queen 316
    Love’s a ***** Quiet Riot Metal Health 253
    Battle Axe Quiet Riot Metal Health 91
    Thunderbird Quiet Riot Metal Health 284
    Don’t Wanna Let You Go Quiet Riot Super Hits 279
    Come On Feel the Noise Quiet Riot 290
    Stone cold Rainbow Straight between the eyes 319
    Dance Ratt Dancing Undercover 260
    Ratt - Body Talk Ratt Dancing Undercover 220
    You’re In Love Ratt Invasion Of Privacy 194
    Lay It Down Ratt Invasion Of Your Privacy 207
    Round And Round Ratt Out Of The Cellar 264
    Way Cool Jr. Ratt Reach for the Sky 265
    Cut it Re-Flex Breakin’ Soundtrack 189
    Never Gonna Give You Up Rick Astley The Greatest Hits Of The 80s - CD 1 216
    Together Forever Rick Astley Whenever You Need Somebody 209
    She Bangs (English Version) Ricky Martin 241
    C’est La Vie Robbie Neville 207
    Little by Little Robert Plant Shaken ‘N Stirred 285
    Big Log Robert Plant 302
    Tall Cool One Robert Plant 280
    Hey Pachuco Royal Crown Revue The Mask 214
    Rock the House Run-D.M.C. King of Rock 162
    Jam-Master Jammin’ Run-D.M.C. King of Rock 263
    Can you rock it like Run D.M.C. King Of Rock 270
    You Talk Too Much Run DMC King Of Rock 361
    You’re Blind RUN DMC King Of Rock 333
    Hard Times Run DMC Run-DMC 234
    King of Rock Run DMC 314
    It’s Like That Run DMC 249
    Faith Of The Heart (Enterprise Theme) Russell Watson Encore 248
    Nuclear Ryan Adams Demolition 205
    I Can’t Drive 55 Sammy Hager 255
    Corazon Espinado Santana Feat. Maná Supernatural 276
    The Warrior Scandal Warrior 230
    Seal - Prayer For The Dying SEAL 329
    01 - Space jams soundtrack - seal - fly like an eagle Seal 254
    Angel Simply Red Greatest Hits 239
    Thrill Me Simply Red Greatest Hits 303
    Fairground Simply Red Greatest Hits 263
    The Right Thing Simply Red Greatest Hits 262
    You’ve Got It Simply Red It’s Only Love [UK] 236
    It’s Only Love Simply Red A New Flame 295
    Something Got Me Started Simply Red 242
    18 And Life Skid Row Skid Row 231
    The Change Steven Curtis Chapman Speechless 226
    Stray Cat Strut Stray Cats 194
    American Heartbeat Survivor Survivor- Greatest Hits 252
    High on You Survivor 247
    Sugar System of a Down System of a Down 153
    Toxicity System of a Down Toxicity 218
    Aerials System Of A Down Toxicity 241
    The Ghetto Too Short West Coast Will Never Die 301
    Sober Tool Undertow 303
    Electric kingdom Twilight 22 408
    The Price Twisted Sister Stay Hungry 229
    I wanna rock Twisted sister 186
    We’re Not Gonna Take It Twisted Sister 217
    When Its Love Van Halen The Best of Both Worlds Disc 339
    Dance The Night Away Van Halen Best Of Volume One 186
    Dancing In The Streets Van Halen Diver Down 226
    Right Now Van Halen For Unlawful Carnal Knowledge 321
    There’s Only One Way To Rock Van Halen Live Without A Net 306
    Ain’t Talking’ ‘Bout Love Van Halen Van Halen 228
    Runnin’ With the Devil Van Halen Van Halen 214
    You Really Got Me Van Halen Van Halen 157
    Little Dreamer Van Halen Van Halen 202
    Eruption Van Halen Van Halen Vol I 102
    Hot For Teacher Van Halen 1984 284
    1984 Van Halen 1984 68
    Panama Van Halen 1984 211
    Why Cant This Be Love Van Halen 5150 224
    Best Of Both Worlds Van Halen 5150 289
    Jamie’s Crying Van Halen 204
    Poundcake Van Halen 321
    Turning Japanese The Vapors 223
    We Like The Party Vengaboys 223
    Inside Out VonRay Smallville (The Talon Mix) 218
    Island In The Sun Weezer The Green Album 210
    When the Children Cry White Lion Pride 258
    Wait White Lion 244
    Five Minutes of Funk Whodini Greatest Hits 301
    Friends Whodini Old School 281
    Freaks Come Out At Night Whodini The Wood OST 284
    Miami Will Smith Big Willie Style 197
    Men In Black Will Smith Big Willie Style 233
    Wild Wild West Will Smith Wild Wild West Soundtrack 200
    Gettin Jiggy With It Will Smith 230
    The Only Way Is Up Yazz Wanted 270
    Where Has All The Love Gone Yazz Wanted 275
    Fine Time Yazz Wanted 282
    Stand Up For Your Love Rights Yazz Wanted 304
    Wanted On The Floor Yazz Wanted 301
    Something Special Yazz Wanted 307
    Systematic People Yazz Wanted 210
    Turn It Up Yazz Wanted 262
    Me So ***** (nasty Version) 2 Live Crew Ghetto Grooves 279
    Ain’t Nobody 280
    Authority Song 229
    Bad, Bad Leroy Brown 180
    Beautiful Girls 235
    Bill Withers - Ain’t No Sunshine 125
    Body Work 255
    Breakin’ Soundtrack - Ice T feat. Chris (The Glove) Taylor - Reckless 1 407
    Bulls on Parade 231
    Can’t Turn Back The Years 277
    Change My Heart 281
    Crockett’s Theme 218
    Crowded House - Don’t Dream It’s Over 240
    Dean Martin - Volare 182
    Dr. Feelgood 290
    Dreams 290
    Duran Duran - View to a Kill 215
    Egyptian Lover - Egypt Egypt (Wicked Mix) 371
    Eye Of The Tiger 243
    Ferris Buellers Day Off Soundtrack - Yellow - Oh Yeah 182
    Frank Sinatra - Moon River 198
    Harden My Heart 232
    Holding Back The Years 270
    I Think I’m in Love 188
    Joe Jackson - It’s Different F 224
    Killing In The Name Of 314
    Kreo - Burn For You 241
    Land Down Under 225
    Lisa Stansfield - All Around The World 268
    Livin’ on a Prayer 250
    Living Colour - Cult of Personality 294
    LL Cool J - I’m Bad 281
    Lonely man_DIF 92
    Long Time 465
    Mel Torme - I’ve Got You Under My Skin 175
    Metal Health 318
    Michael Franks - Now Love Has No End (W- Valerie Simpson) 373
    Modjo - Lady (Hear me tonight) 304
    Money’s Too Tight to Mention 268
    Moonlighting 61
    Mr. Sandman, The Chordettes... (50’s) 142
    Mustang Sally 239
    My Friend 27
    Nothing Else Matters 388
    Paula Abdul - Opposites Attract (1990) 265
    Pet Shop Boys - Always On My Mind 235
    Phil Collins & Genesis - Invisible Touch 205
    RaveMusic1 15
    RaveMusic2 3
    RaveMusic3 7
    RaveMusic4 3
    RaveMusic5 3
    RaveMusic6 15
    RaveMusic7 15
    RaveMusic8 7
    RaveMusic9 7
    Reggae - Maxi Priest - Wild World 217
    Renegades of Funk 234
    Shot In The Dark 256
    Showdown 235
    Soundtrack - Beetle Juice - DAY-O (Banana Boat Song)-Harry Belafonte 184
    Stars 248
    Stray Cats - Rock This Town 206
    Sugar We’re Going Down 216
    The Sugarhill Gang - Rapper’s Delight [Long Version] - The Sugar Hill Records Story - 01 455
    Summer Of 69 214
    Sussudio 262
    Taylor Dayne - Tell It To My Heart 219
    The_Runner 279
    Time 223
    The Twist 242
    Voices Carry 260
    What a Fool 27
    Young MC - Bust A Move 266
    867-5309 (Jenny) 228
    Remy Zero - Save Me (Smallville Theme) 263
    Small World - Part 2 245
    Total: (475) Song’s, (1.3) Day’s of Total listening Time, (2.12) GB Size Amount

Maybe you are looking for

  • Error while deploying to remote server

    Hi, I'm trying to deploy an application from Java Studio Creator2 (running in my home office) to a Java System Applicatio Server PE 8.2 (running in our company). The server is behind a NAT router an has a private IP address on the company LAN (10.0.0

  • Error when displaying a field on Screen with Table Control

    Hi, It is going to 'Dump' when I am trying to display data on the screen with the help of Table Control. From the dump, What I have observed is , there is a field 'ZTSV_FSRDATA-ANZFEHLER'. If this field has negative value, then it is going to 'Dump'

  • Great, again

    Oh great, my Volume Control Panel has screwed up again: Missing functionality; Crystalizer , where did that option go , what about EAX Normally a reinstall solves this problem, but not this time... Seeing has i've suffered with this for a very, very

  • How can I convert a PDF file in my computer into a word document?

    How Can I convert a PDF file in my computer into a Word Document?

  • Can't burn since update to 7.0.2

    I've seen many posts about this with various "fixes" and many more still experiencing the problem. I've got this installed on two PCs - a Dell laptop and a Dell desktop. Both are broken since the update. This has got to be a problem with the iTunes s