Checkbox  selected not  reflected at server side

i have one entity called Doc in DB.
i have to print all records in h:dataTable with Checkbox.
im getting Doc as implemeted i can't change it.
to associate checkbox with each record i added another class UIDoc with private boolean selected property and UIDoc extends Doc. and now im working with UIDoc.
but when clicking on selected checkbox it is not reflected at server side

Uhm. Did you get that "solution" from roseindia.net or so? I saw it being mentioned over there several times. That site is cluttered of bad examples and bad practices.
Well, I wish you good luck when you're about to bring this app in production, where the server usually runs at a different machine than the client.

Similar Messages

  • Changes in server side java file not reflecting in Client side java code?

    Hi friends,
    iam using eclipse IDE, JBoss server, SWING GUI and Oracle DB
    ( looks like : SWINGGUI (Client) <--> EJB's (serverside) <---oracle )
    my problem is , when i make change in server side bean file, that changes are not reflecting in GUI programs.
    (for ex: iam adding settr and getter for a field and using that in GUI program. but its not identifying that setter or getter).
    please tell me what should i do for every change done to server side program, that should reflect / available to GUI?

    my problem is , when i make change in server side bean file, that changes are not reflecting in GUI programs.
    (for ex: iam adding settr and getter for a field and using that in GUI program. but its not identifying that setter or getter).what do you mean it's not "identifying" the methods?
    you have to call those methods you know
    are you getting NoSuchMethodError?
    please tell me what should i do for every change done to server side program, that should reflect / available to GUI?you haven't posted any code or error messages that might help us debug

  • Exchange servers not reflecting in Server State tab in monitoring in SCOM 2007 R2

    Hi,
    We have added few exchange servers in SCOM 2007 r2 for monitoring, but few of them are not reflecting in the Monitoring> Exchange 2010> Server State tab, whereas they are healthy in admin tab.
    Can anyone help on this?
    TIA

    Check from following:
    open firewall.
    Enable Exchange Rule for monitoring
    Enable proxy Agents
    Check Configure monitoring Exchange 2010 as exist below link
    http://www.msexchange.org/articles-tutorials/exchange-server-2010/management-administration/monitoring-exchange-2010-opsmgr-2007-r2-part1.html
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blog: Technical | Twitter:
    Mai Ali

  • SID's of MD object not reflected in Attribute SID table

    Hello Experts,
    I happened to delete the SID table of a display attribute of a MD characteristic and then re-loaded the master data. The SID's for the MD object is being created, but no SID's exist for the display attribute. I have a query having the display attribute as selection criteria and no values are being populated.
    I ran an RSRV test (Elementary) for the display attribute Infoobject and it gave me the error 'Missing initial entry in table /BIC/SZ*. 'Correct Error' in RSRV didn't help.
    Could you please advise on fixing the issue and having the SID table for the display attribute populated?
    Thanks.

    Hi
    Go to Se14 and rebuild SID table or adjuct the entries .
    Then try to reload data to taht MD object.
    2. Run RSRV for that MD object with test type master data attributes
    Hope this helps.
    Regards,
    Reddy

  • Apaxe axis Call.invoke parameter not getting in server side

    Hi
    I am developing a module in wsdl and axis. I have deployed the wsdl and I am writing the client to dynamically invoke a method which contains some arguments/parameters. But I am not getting the parameters correctly passed or seems like it is getting missed some where.
    QName inputQName // QName of input parameter
    QName returnQName // QName of return type
    Inputparamaeterbeanclass obj;
    All the necessary set methods are called
    org.apache.axis.client.Service service = new org.apache.axis.client.Service();
    org.apache.axis.client.Call call = (org.apache.axis.client.Call) service.createCall();
    call.registerTypeMapping(beanclass of input parameter, inputQName,
    new org.apache.axis.encoding.ser.BeanSerializerFactory(beanclass of input parameter, inputQName),
    new org.apache.axis.encoding.ser.BeanDeserializerFactory(beanclass of input parameter, inputQName));
    call.registerTypeMapping(AuthenticateResult.class, returnQName,
    new org.apache.axis.encoding.ser.BeanSerializerFactory(beanclass of return type, returnQName),
    new org.apache.axis.encoding.ser.BeanDeserializerFactory(beanclass of return type, returnQName));
    call.setTargetEndpointAddress( new java.net.URL(�service url�) );
    call.setOperationName(�operation name�);
    call.addParameter( "arg1", inputQName, ParameterMode.IN );
    call.setReturnType( returnQName );
    Object resultObj = call.invoke( new Object[] obj } );
    After invoke control is going to the correct method BindingImpl class. But in that method, the get method of the argument is returning null.
    Regards,
    Priya Ruby Jose

    Hi Brad,
    Thx for your response.
    1. That standard program is updating cost center group related data in application server.
    2. How to count the buffers to update the app. server
    3. Bapi commit is for commit the work (instead of bapi I gave wait until sy-subrc = 0 up to 1 second) I thought, because of lack    of time it is not updating the app server. So I gave wait.
    4. While executing, let as say... first time the 1, 3,5 & 7th record is updated in app. server. Second time 2, 3,5 & 7th record is updated in app. server. So what ever, it is updating some records & not updating some records .
    By,
    Jeya

  • RichInputText  setValue not working from server side

    getting a reference to the backing bean that contains an inputTextbox
    .. you are able to get the RichInputText box but calling setValue
    has no affect on the UI... it sets it in memory but it doesn't update
    on the GUI...
    String deviceAssignTabStr = "#{backing_DeviceAssign}";
    Object deviceAssignTabObj = ELUtil.get(deviceAssignTabStr);
    DeviceAssign deviceAssignTab = (DeviceAssign) deviceAssignTabObj;
    if (deviceAssignTab != null)
    deviceAssignTab.getInputText6().setValue(rowOutput.toString());;

    Hello,
    You need to reset the local value, so use something like:
    myInputComponent.resetValue();
    myInputComponent.setValue(newValue);n
    However, in your specific case, it seems very messy. You're just not using the good EL. It seems that you create a look of backing beans for bindings and none for values while it should be the opposite 99% of the times. "binding" attribute is unsafe and has many limitations, I don't know why people keep using it carelessly without any formal reason. As for defining many managed beans, you can add an ELResolver of your own instead and create them without defining them in any configuration file if that's what you dislike. About filling the session, I must disagree, it highly depends on the use case. The first scope to evaluate should ALWAYS be request as it's the most back/refresh button resistant scope. If the request scope doesn't fit, then most of the time the page flow one does, note that it fill the session memory footprint even more than the session scope, but it's also back resistant to some extends. Only when you need something really session scoped should you use it.
    Finally, your way to access a managed bean seems either quite inefficient or inelegant. JSF provides two better means for that:
    1. Injection, inject the backing bean in your action bean declaratively. That strategy doesn't always work though.
    2. ELResolver. To access bean "backing_DeviceAssign", you can use the following which is, even if less sexy than a #{} delimited EL, much more efficient as it save some EL parsing time:
    FacesContext context = FacesContext.getCurrentInstance();
    ELContext elContext = context.getELContext();
    boolean wasResolved = elContext.isPropertyResolved();
    elContext.setPropertyResolved(false);
    try
      Object bean = context.getApplication().getELResolver().getValue(elContext, null, "backing_DeviceAssign");
      if (elContext.isPropertyResolved())
        return bean;
      else
        throw new FacesException("Could not find bean backing_DeviceAssign");
    catch (Exception e)
      throw new FacesException("Could not find bean backing_DeviceAssign", e);
    finally
      elContext.setPropertyResolved(wasResolved);
    }Yes, it's ugly... Thanks to the really not so good ELResolver chain architecture that also prevent easy decorator...
    Regards,
    ~ Simon

  • Server side function not get called after dispatching cairngorm event second time on same page

    Hi All,
    I am facing a urgent issue regarding cairngorm event. Actually my page contain 3 button add,delete,save
    and  clicking of any button I do the respected functionality. For ex:
    I click the add button & on clicking of add button I fire a cairngorm evnt & after getting response from server side that the record is added
    I displayed a message that the record is added & update the data source.
    After addition of the record , with out going to other page if I perform the same functionaly(Like adding another record) on same page the cairngorm
    event not call the server side function  -  after debugging I find out that cairngorm event  reach to the corresponding excutecommand function & called that function  but it is not calling my server side function & I also din't get any error message .
    I dont know why  the server side function not get called?. similarly if I try for delete or update case the same things happend. Only for the first time it works properly but not for the second  time.
    Could any of  you please tell me why the cairngorm event not calling the server side function.
    Thank you for your kind assistance.
    Regards,
    Ujjwal

    Okay, well I think I've worked out the problem.
    In ASP.NET we would typically bind repeating controls such as DataLists and Repeaters manually using <i>Control</i>.DataBind(), because we're usually using a separate class library containing collections for our objects. Seems the SAP Table control doesn't like this approach.
    I changed the code so that the databinding is specified on the control, and call the Page's DataBind() method and it all worked fine.
    One tip: because the collection I used to bind to is in a separate class library, I receieved a <i>BC306523: Reference required to assembly MyAssemblyName...</i> message, even though I had a reference to the assembly in my project and the DLL is being properly deployed. To fix this, you must include the following directive at the top of the component's ASCX file:
    <%@ Assembly Name="AssemblyName" %>

  • Problem when using object array as parameter of server-side event

    Hi Friends,
        I had defined an event in component interface of Component A, with object array as its parameter. but when I define event-handler for this event in Component B, the type of parameter in generated event-handler method is just the class itself instead of an array.
       It's a bug or array parameter is not support by server-side event in WD4J?
       Thanks in advanced.

    I think you are trying to do the editing of parameter from the java editor.
    Do it via the controller editer. Go the methods tab. Select the actionhandler.
    In the parameter section edit the paramter. Change the dimensions here.
    Regards,
    Ashwani Kr Sharma

  • Changes in Logonlables.properties are not reflecting in Logon screen in EP

    Hi frndz..
    Am chnaging the logon screen branding image and text and also the WELCOME text n the copy rights text also.
    For this am following a like  in that itz saying to take the PAR file "com.sap.portal.runtime.logon.apr"  
    from the following localtion.
    <J2EE_Engine_Instance>\j2ee\cluster\server<X>\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd.
    but i didn't find any par like above the above specified location, but i found tha same par in the path of
    <J2EE_Engine_Instance>\j2ee\cluster\server<X>\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\temp.
    so i taken tha PAR from ther n made the chnages in same PAR only i did't renamed PAR in same par only i made the chnages but itz not reflecting after server restart also
    Thanks in Advance
    Regards
    Rajesh

    Hi,
    Why don't you try from portal end? downloading and uploading the par file from portal.
    Check this blog https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60caa539-8e51-2a10-0e83-e0a68ab3f5aa
    PradeeP

  • Server Side Includes Don't Show Up?

    I support a web site and I've been maintaining it with DW (previous to CS3 and now I'm using CS3) and except for the home page, whenever I test a page locally on my PC, the content of the includes don't show up in the browser.  Once I upload them to the web site, they work fine.  I should point out that the home page is the only page in the root directory.  All the other pages are in a next level folder.  At the time I designed the web site, I thought this would help me organize things, but I regret doing it.  This has happened with the previous version and with CS3.
    Anyway, it's what I'm stuck with.  I've set up my local site without server access.  Given my situation, is there anyway to get the includes to work on my PC when I test the pages within DW?

    To summarize: I press F12 to start a browsing session and that page is displayed properly with server side includes.  While in that browsing session, I click on a link to another page, and that second page in the browsing session does not disply the server side includes.  When these pages are uploaded to the server, they work properly
    If you open one of the inner pages, and hit F12 can you see the includes on that page,,  or on any of the other inner pages when you browse to them individually?   I bet you can  :-)
    It's only when you try and go from the temp file to a properly name file that it doesn't work. There was a technote explaining this much better than Ican, but I just can't find it now.
    If you want to see the pages work as if they were on the server, that is going from page to page by clicking on individual links, you really need to set up a testing server on your machine.
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7b6 ba.html
    http://kb2.adobe.com/cps/191/tn_19165.html

  • Manifest.webapp can't run on server side

    I have made one demo of firefox os webapp. manifest.webapp is working fine in localhost but it's not working on server side.
    if i add below link, it's working
    http://dev.artoonsolutions.com/dharmesh_ajani/oldcity/app/www/index.html
    but with below way it's not working
    http://dev.artoonsolutions.com/dharmesh_ajani/oldcity/app/www/manifest.webapp
    Please check it and let me know if anything i missing.
    Thanks

    Hi,
    Sorry for the late reply, I don't know the answer to your question (or if you still have the problem), but app developer questions and links to documentation are here:
    http://stackoverflow.com/questions/tagged/firefox-os
    Maybe a dev there can help you out? Thanks for writing apps for Firefox OS!
    Regards,
    Michelle Luna

  • Email without Server Side scripting

    My client's webside does not have any server side scripting support. Is it possible to send email without server side scripting and email programs? Can HTML's emailto send emails from flash?

    You can use a mailto: link in Flash just as you would in html.  It will open the whatever defauklt email program the user has with the email address in the address bar.

  • Changes are not reflecting in Quality server

    Dear All,
    We have recently installed the Portal 7.4 servers.
    Currently we are having two servers Development and Quality.We have Configured NWDI using CMS and created tracks(Defined run-time systems as Development and Consolidation)  we are able to checkin the activities at NWDS , when we are selecting the component in the consolidation and on  click of  import we are getting the message as import finished, but the changes are not reflecting at the Quality server. i.e in earlier 7.01 version when we imported , the ear was deployed automatically in quality but it is not getting deployed in the new version 7.4
    Regards,
    Ramana.

    Dear Ervin/Jun Wu,
    Thanks for the Responce.
    As per the given link the track is configured  with out any issues (When we are clicking on Deployment in the Transport studio it is opening new tab like below and we are not having any errors when we click on Start deployment nothing is happening)
    http://hostname:50000/webdynpro/dispatcher/sap.com/tc~SL~CMS~WebUI/Deployer?BS=EPD_PRTADEV_C
    Please check the below log regarding deployment when we do the import
    SDM-deployment-notification  Log file.
    20141028125231 Info :Starting Step SDM-deployment-notification at 2014-10-28 12:52:31.0994 +5:00
    20141028125231 Info :Deployment is performed asynchronously.
    20141028125231 Info :Following DCs are marked for deployment (buildspace = EPD_PRTADEV_C):
    20141028125231 Info :
    20141028125231 Info :RequestId: 152
    20141028125231 Info :==> no resulting DCs for deployment
    20141028125231 Info :Follow-up requests:
    20141028125231 Info :
    20141028125231 Info :
    20141028125231 Info :Step SDM-deployment-notification ended with result 'success' at 2014-10-28 12:52:31.0995 +5:00
    Regards,
    Ramana.

  • SQL Server Service is not reflecting to the new name.

    Hi,
    I just rename the computer and use the command below to rename the SQL Server but the SQL Server Service is not reflecting to the new name.
    Is there a way to change the SQL Server Service and agent to reflect the new name or do I have to re-install sql server.
    I am using SQL 2008 R2.
    Thank you in advance.

    If running "SELECT
    @@servername" yields the old server name, it means the instance has not been renamed.
    you must run statement to drop the old name of the instance and recreate it with the new name as the default (local) one..
    EXEC master.dbo.sp_dropserver 'MACHINENAME\OLDINSTANCENAME'
    go
    EXEC master.dbo.sp_addserver 'MACHINENAME\newINSTANCENAME', 'local'
    go
    I took the code here: 
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/c07ab906-dabf-4303-9737-d430d82c4f42/how-to-rename-instance-of-sql-server-2008-r2?forum=sqltools
    Once you did this, look at your maintenance plans.  I sometime end up having one or two still following the old name.  Especially if you create this new server from a copy of another virtualized one.

  • Server side script not running on stand-alone XE

    Hello,
    In my application I created a Server side script (AJAX) which presents a select-list based on other fields on the page. The very same application runs on a 10g+APEX3.0.1 database AND on a standard XE+APEX2.1 database, which are both accessed via a HTTP-server. The application with the script runs fine on this platform (XP).
    I have two other XP-machines on which I also installed XE+APEX2.1. Both are stand-alone versions NOT accessed via a HTTP-server. I installed exactly the same application which runs on the platform with HTTP server on both of the machines. While testing the correct functioning, I noticed that everything works ok, EXCEPT the server side script which gives me a better select list. Instead of this I get the old-fashioned version of the select-list which is not able to use the value elsewhere on the page.
    I found a similar problem on the XE forum (Re: Server side scripts features ) but it doesn't answer my question how to get the script working on a standalone version of XE (= without access via a HTTP-server).
    Can anybody please help me?
    Thanks & regards,
    Jan.
    Message was edited by: Jan
    J. Hulsing

    Carl,
    Thanks for your suggestion to install FireFox and the Firebug tool (which I wasn't aware of).
    After having looked at the problem for hours, I found what I think is the problem: the htmldb_html_elements.js script.
    As already mentioned, the properly functioning XE on my local PC is accessed via a HTTP-server, as well as the 10gR2+APEX3.0.1 version also running on that PC.
    On the laptop, not running HTTP-server, I get the message: <br>
    <FONT COLOR="RED">$x is not defined <BR>
    <FONT COLOR="BLUE"> f_21_select_kpn<FONT COLOR="RED">(<FONT COLOR="BLUE">input<FONT COLOR="BLACK">#P21_GBREKNR 405<FONT COLOR="RED">, "P21_KOSTENPOST") <BR>
    <FONT COLOR="BLUE">onblur<FONT COLOR="RED">(<FONT COLOR="BLACK">blur <FONT COLOR="RED">)
    </FONT><BR>
    That is in the 'Console' of Firebug.
    When changing to Script I do see a remarkable difference.
    On the PC there the following text is found in the first lines of htmldb_html_elements.js:
    /*htmld_elements will contain the lower level html access js*/<br>
    var gDebug = true;<br>
    var gkeyPressTime;<br>
    var gLastTab=false;<br>
    var gRegex=false;<br>
    var ie=(document.all)?true:false;<br>
    if(ie){document.expando=true;}<br>
    var gDebugWindow = false;<br>
    /*<br>
    $x functions have to do with either single elements or array of elements<br>
    $v functions have to have to do with manipulating values or interaction based off a value<br>
    $xml function have to do with manipulating xml values<br>
    $a functions are based on ajax<br>
    $d functions are specific dhtml constructs<br>
    */<br>
    /* begin $x functions */<br>
    function $x(pNd){<br>
    try{<br>
    var node;<br>
    ...<br><br>
    On the laptop however the first few lines are:<br><br>
    /*htmld_elements will contain the lower level html access js*/<br>
    <br>
    var gDebug = true;<br>
    var gkeyPressTime;<br>
    var gLastTab=false;<br>
    var gRegex=false;<br>
    if(document.all){document.expando = true;}<br>
    // Elements //<br>
    <br>
    function html_GetElement(pNd){<br>
    try{<br>
    var node;<br>
    switch(typeof (pNd)){<br>
    ...<br><br>
    I think that the difference is in these two scripts.
    But why are the scripts different: it is the same XE that is installed on the laptop and the PC.<br>The answer I found in the images/javascript directory of APEX3.0.1 which is located in the APACHE directory-tree (you have to copy the images to APACHE when you use the HTTP-server). And indeed: the htmldb_html_elements.js has exactly the same text as what I see in Firebug on the PC. So XE on the PC is using the javascripts in the image-directory of APACHE on the PC and not the XE-version of the scripts, embedded in XE.
    <br><br>
    So the answer seems to be: copy the APEX3.0.1 versions of the script over to the PC and try to get them into the database. Or...???
    <br>
    Can it be loaded into the database? Will XE accept it?
    <BR><br>
    Would be nice to have answers if the conclusion I found is the right one and if it can be fixed by loading the js into XE.
    <br>
    Best regards and thanks for your help so far.
    <br>
    Jan.

Maybe you are looking for

  • Data acquisition driven by encoder

    Hi everyone,    I need to sample a capacitive sensor that measures the radial run-out (radial small displacement) of a rotating spindle. LabView v. 7.1 is employed to acquire the data by means of PCI-6036E card commercialized by National Instruments

  • One .mac account two iphones multiple email address through .mac....help

    HI. I have the .mac account in my name. I added a second email address for my fiancee. have used the .mac address for me for years and recently got an iphone which the address works fine on. My fiancee just got an iphone and want to use the email add

  • Firefox is already in use error (even after other support)

    first, I want to start off by telling you I've tried all the other steps before even posting this. 1. The parent.lock file only opens when firefox is open, and I can't delete the file while firefox is open 2. I click off the read only on the profile

  • Recovered files open in Bridge but not in PS4 or Camera Raw

    My Canon T1i failed with dozens of images on the SD card.  I used DiskInternals Partition Recovery to recover the files from the SD card.  Many of the CR2 images show up fine in Bridge CS4, both the Content thumbnail and the Preview screen. (Screen s

  • How can I copy a web image and paste into iMessages?

    I have recently purchased a new iPhone that uses the iOS7.  Previously, I was able to copy images from the web and paste into iMessages.  When I try this now, all that is pasted is the link.  Is there a way around this?