JHeadstast 10.1.3 - JhsPageLifecycle issue : jhs prepareRender not called

Hello,
I'm evaluating Jheadstart 10.1.3.
I have created 2 projects but both don't behave the same way.
In one project everything works as expected but not in the second.
It seems that the prepareRender phase implemented in JhsPageLifecycle is not called appropriately.
Here are the relevant stack traces :
[WORKING PROJECT]
7 nov. 2006 11:27:03 oracle.adf.controller.v2.lifecycle.Lifecycle executePhase
FIN: [ADFc] Execute:initContext
7 nov. 2006 11:27:03 oracle.adf.controller.v2.lifecycle.Lifecycle executePhase
FIN: [ADFc] Execute:prepareModel
11:27:03 DEBUG (JhsPageLifecycle) -Executing prepareModel, page=/create.jspx, pagedef=createPageDef
11:27:03 DEBUG (JhsNavigationHandlerImpl) -Executing checkRoles
7 nov. 2006 11:27:03 oracle.adf.controller.v2.lifecycle.Lifecycle executePhase
FIN: [ADFc] Execute:prepareRender
11:27:03 DEBUG (JhsPageLifecycle) -Executing prepareRender, page=/create.jspx, pagedef=createPageDef
[NOT WORKING PROJECT]
7 nov. 2006 11:28:35 oracle.adf.controller.v2.lifecycle.Lifecycle executePhase
FIN: [ADFc] Execute:initContext
7 nov. 2006 11:28:35 oracle.adf.controller.v2.lifecycle.Lifecycle executePhase
FIN: [ADFc] Execute:prepareModel
11:28:35 DEBUG (JhsPageLifecycle) -Executing prepareModel, page=/app/temp.jspx, pagedef=app_tempPageDef
11:28:35 DEBUG (JhsNavigationHandlerImpl) -Executing checkRoles
7 nov. 2006 11:28:36 oracle.adf.controller.v2.lifecycle.Lifecycle executePhase
FIN: [ADFc] Execute:initContext
7 nov. 2006 11:28:36 oracle.adf.controller.v2.lifecycle.Lifecycle executePhase
FIN: [ADFc] Execute:prepareModel
7 nov. 2006 11:28:36 oracle.adf.controller.v2.lifecycle.Lifecycle executePhase
FIN: [ADFc] Execute:prepareRender
7 nov. 2006 11:28:36 oracle.adf.controller.v2.lifecycle.Lifecycle executePhase
FIN: [ADFc] Execute:prepareRender
What should I look at in order to make both projects work ?
Thanks,
Seb.

I've checked my faces-config.xml. It had the folowing inside :
  <application>
    <default-render-kit-id>oracle.adf.core</default-render-kit-id>
  </application>
  <lifecycle>
    <phase-listener>oracle.adf.controller.faces.lifecycle.ADFPhaseListener</phase-listener>
  </lifecycle>Since JhsCommon-beans.xml redefines the phase listener, I had un instable state.
May be this will serve someone else.
Seb.

Similar Messages

  • ADF VO Row Fetch Range Issue: Action is not called after 10th row

    Hi People!
    I am working with an Application here in which one page has a table based on a view object. This table has range navigation, and the VO configuration for Tuning is to fetch rows in batches of 1000, all in one fetch. Now, i have a single selection configured in this table, and also a button on the <tableActions> facet which calls a method on the backing bean.
    The problem is, for the first 10 rows of this table, the method is called (seen through the debugger), but when we move the selection to the 11th row or further, the page only refreshes but does not call the method.
    This is not a problem with the data, because we tried two other approaches:
    1) removed the range navigation and shown all the records in the same page: the error persists for the 11th row ahead
    2) changed the VO query to return only the 11th row from the previous test using its ID: the action is called, now that the row is the first on the rowset.
    Have you experienced similar behavior? Why the Action is not executed when the selected row comes after the tenth row?
    Any help is greatly appreciated!
    Regards
    Thiago Souza

    Hi Frank, thanks for the reply.
    I have assembled a step-by-step based on the HR schema. For this example, i have created an EmployeesVO based on the EMPLOYEES table, and an App Module to provide a data control. From then on:
    1) Create a JSF JSP to list the Employees VO
    1.1) Bind the JSF Page to a Backing bean
    1.2) Create an af:page element on the page
    2) Drag the EmployeesVO from the Data Control Palette to the af:page
    2.1) Read-Only Table, Selection Enabled
    2.2) Do not include table navigation.
    3) Double-Click the automatically created submit button on the TableSelectOne section
    3.1) Bind it to a method on the Backing Bean
    3.2) Add some code to it, in my case i tested:
         FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Teste"));
    4) Run the example and try two approaches:
    4.1) select one of the first ten rows and click on the button: The action is fired.
    4.2) select the eleventh row and click on the button: The action is not fired.
    4.3) select one of the first ten rows again and click on the button: The action is fired.
    This example didn't even include range navigation, but if you want to test you will see the result is the same.
    Please let me know if you want further info.
    Thanks a lot!
    Thiago Souza

  • JHS-00117 not found in bundle JhsUserMessages_nl at commit time

    Dear All,
    We have a legacy JDeveloper 10.1.3.3 / JHeadstart 10.1.3.2.52 application using flex items. In the JH application definition file we've defined a group that contain both 'normal' bound items as well as a flexible region that displays flex items.
    The group is based on a view object (instance). The VO is entity based and incorporates a number of attributes that are not mapped to SQL columns, rather the corresponding getter invokes a method on the entityimpl like so:
    public String getWeegschaalPercEx() { //
    //return (String) getAttributeInternal(WEEGSCHAALPERCEX);
    return (String)this.getEntity(0).getAttribute("WeegschaalPercEx");
    In the EntityImpl.java class, the queried attribute is actually derived from the value of a flex item:
    public String getWeegschaalPercEx() {
    //return (String)getAttributeInternal(WEEGSCHAALPERCEX);
    String val = null;
    val = (String)this.getFlexItemValue("AangeleverdeMutatieVoorWerkgever","DmrMutGeg","PERC_EX");
    private Object getFlexItemValue(String groupName, String flexRegionName, String flexItemName) {
    String mutatieId = this.getMutatieId().toString();
    RowSetIterator rsIterator = this.getFlexItems(groupName, flexRegionName,mutatieId, null, null);
    Object val = null;
    while ( rsIterator.hasNext() ) {
    FlexItemDefsOuterJoinedWithFlexItemsRowImpl item =
    (FlexItemDefsOuterJoinedWithFlexItemsRowImpl)rsIterator.next();
    if ( item.getName().equals(flexItemName) ) {
    val = item.getItemValue();
    break;
    rsIterator.closeRowSetIterator();
    return val;
    public RowSetIterator getFlexItems(String group,
    String flexRegion,
    String keyValue1,
    String keyValue2,
    String keyValue3)
    JhsApplicationModuleImpl jhsApModImpl = (JhsApplicationModuleImpl) this.getDBTransaction().getRootApplicationModule();
    JhsModelServiceImpl jms = (JhsModelServiceImpl)jhsApModImpl.getNestedJhsModelService();
    ViewObject vo = jms.getFlexItemDefsOuterJoinedWithFlexItems();
    String naam = "FlexItemsFor" + group + flexRegion + keyValue1 + keyValue2 + keyValue3;
    RowSet rs = vo.findRowSet(naam);
    if (rs == null)
    rs = vo.createRowSet(naam);
    rs.setNamedWhereClauseParam("GroupName", group);
    rs.setNamedWhereClauseParam("RegionName", flexRegion);
    rs.setNamedWhereClauseParam("KeyValue1", keyValue1);
    rs.setNamedWhereClauseParam("KeyValue2", keyValue2);
    rs.setNamedWhereClauseParam("KeyValue3", keyValue3);
    rs.executeQuery();
    rs.setRangeSize(-1);
    if (rs.getRowCountInRange() == 0) {
    return null;
    RowSetIterator rsIt = rs.createRowSetIterator(null);
    return rsIt;
    We noticed the following:
    When we first deeplink to a row (say with KeyValue1=A), modify a number of flex item values in that row and then commit, everything is fine. Please note that all mandatory flex items for this row have a valid value and have been saved
    to the database.
    Subsequently, we deeplink to a different row (say with KeyValue1=B), modify flex item values of that row, and try to commit, the system displays an error message JHS-00117 not found in bundle JhsUserMessages_nl.
    Now, JHS-00117 is thrown in the FlexItemImpl.java validateEntity method when a flexitem is mandatory and no value has been provided. Even though the error code is not present in the message bundle, that doesn't really concern us.
    We noticed while debugging this application that when trying to commit the row with keyvalue1=B, the system is also trying to validate FlexItemImpl entities with keyvalue1=A, even though we've already committed that row. Moreover,
    the value of these flex items is null i.e. they do not reflect the actual values stored in the jhs_flex_items table, causing the aforementioned error code. I've spent many mind-raking hours trying to figure out how these entities got into the picture in the first place.
    We'd appreciate any idea, tip or suggestion that could help us get to the bottom of this 'problem'.
    Regards,
    Ibrahim

    Ibrahim,
    Yes, JHS-00117 is missing. The error message code shoudl have been JHS-00120. You can fix this by adding JHS-00117 to your own resource bundle.
    Thanks for reporting, we have fixed this for next JHS 11 release.
    I tried reproducing the issue you have with the required flex item after a deeplink, without success though.
    Can you send a testcase based on the HR schema that reproduces the issue?
    You can use http://www.senduit.com to upload your project, please send the download link to [email protected]
    Steven Davelaar,
    JHeadstart Team.

  • I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    I am facing issue in Receiving incoming calls, Name not getting displayed though the same has been saved in my phone book!! I have done sync from Windows contacts.. please help if some1 knows how to rectify the issue...

    Has your carrier been having issues with Call Display? Do the telephone numbers come up when people call, or does it just show 'Unknown Number' or 'Blocked' ?

  • Issue with Calendar not syncing with iPhone 3g

    Issue with Calendar not syncing with iPhone 3g.
    Solution
    Create backup of your entire mailbox before starting (THIS IS IMPORTANT)
    Create offline folder (.pst file) Check windows help on how to do this for your version.
    Open folders view on Outlook
    Right click on Calendar in tree view and 'copy to' offline .pst folder
    Go back to main calendar view and delete all entries in your calendar.
    Create simple cal entry and sync test with iphone
    If this works then start dragging cal entries back from the offline folder into the main calendar then sync after each step....
    I moved events in this order
    -Yearly recurrences (ie Birthdays)
    - Monthly recurrences
    - weekly recurrences
    - Daily recurrences
    All appointments from the beginning of this year >> to the end of time!
    If all these sync then the issue is with an older cal item and you have to decide if you actually need these in you current calendar.
    I chose to leave these in the offline cal and if i need access them from there.
    If at any point the sync fails then you know you have a corrupt cal entry in the block you just transferred. Move the offending items back into the offline folder and try again in smaller chunks until you identify the offending items and delete them and manually recreate them in your real calendar.
    Also smart to run the inbox (.pst /.ost ) repair tools for your OS/Outlook version.
    Fixed so far
    XP Pro / Outlook 2008
    XP Pro /Outlook 2003

    I just updated the firmware to iPhone 2.0.1 and the syncing works great both ways.

  • Wifi issues with iphone not responding

    Phone: iPhone 4s.
    This issue started approximately two weeks ago. My phone initially started with the Wifi connection greyed out, I followed the appropriate steps to resolve this issue, and was successful. Now I can turn the wifi connection on without problems, but my iPhone will freeze (delay), then return me to my homescreen. Occasionally I do automatically connect to my known wifi, but then will disconnect and return to 3G. If I make an attempt to go to settings to manually reconnect, the phone again freezes. The phone seems to freeze after I click settings, then when pressing Wi-Fi, the bar turns dark bold, but freezes and doesn't open. I then have to click my home button, return to the main menu. Also if I open an app during the seldom opportunity my phone is connected to wifi, the phone will disconnect, return to 3G and freeze. I have rebooted my routers, forgot networks, reset network settings. I have thought about resetting the entire phone, but my phone will not stay connected to wifi long enough for me to back up my data to iCloud. I am thinking of stopping into my local verizon store, but I think they will redirect me to an apple store; which is 35 miles away. Of course the problem with me not connecting to Wi-Fi is my increased use of data. Now I am over 75% for my monthly usage with 2 weeks remaining, and do not see justification in possibly having to pay the overage fee. Many times when my phone freezes due to these wifi issues, or will not respond, I have to do the manual power/home reset. In conclusion, I need to figure out how to maintain my connection to Wi-fi, and stop my phone from not responding when I open my wifi settings. Thanks in advance!

    My Iphone 4S is doing the same thing..  All of a sudden the WIFI button is gray and not working.  I chatted online with a Rep.  He had me call *228 and hit option 1, then call again and hit option 2.  All of a sudden the WIFI button was black.  But it could not find any network.  I shut it off and restarted it and now button gray again.  I called that number again and still gray.  I read somewhere else that a lot of people have a problem with the WIFI button.  They say it basically just stops working.  This was a replacement phone because the volume stopped working on my original phone.  I assume they gave me a refurbished one because it didn't seem new.   I'm due an upgrade in 3 months.   I'm disabled and just hate driving to the store again.  I wish there was an easier way. 

  • Lightroom 4 crashes when trying to open the slideshow module. I spent over three hours with both Adobe and Apple tech support and we know it is a permission issue but have not been able to get it solved.  It started with the last upgrade to 10.8

    Lightroom 4 crashes when trying to open the slideshow module. I spent over three hours with both Adobe and Apple tech support and we know it is a permission issue but have not been able to get it solved.  It started with the last upgrade to 10.8

    Back up all data.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    The first step should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    resetpassword
    That's one word, all lower case, with no spaces. Then press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • TS4088 I have a MacBook pro that has power issues and will not start but the hardrive is fine.  I do not want to lose all of my files so I was wondering if it's possible to transfer my hardrive from a older Macbook pro to a new one if I were to purchase o

    I have a MacBook pro that has power issues and will not start but the hardrive is fine.  I do not want to lose all of my files so I was wondering if it's possible to transfer my hardrive from a older Macbook pro to a new one if I were to purchase a new one?  Also, the software is not updated as the computer hasn't worked for about 2 months. 
    Also, if it is possible to transfer the hardrive, would my iTunes music transfer as well?  It is not saved in the cloud.
    Thanks for your help, it is much appreciated.

    You computer is probably perfectly repairable, but if you want a new one anyway, it is perfectly possible to transfer the data from the faulty one.
    But it would be a mistake to simply put the old HD in the new computer.
    These are the steps:
    Remove Hard drive from faulty computer. (very easy on Unibody MBPs, do-able but not so easy on older MBPs)
    Put it in a cheap enclosure
    Connect it the new computer
    Boot up new computer.
    If the new computer has never been run before the Setup Assistant will ask if you want to import your apps, data, settings etc from either another mac, another HD connected to the Mac or a Time Machine back up.
    Obviously chose the second option (another HD connected to this Mac) and follow prompts.
    If the new computer has already been run (so Setup Assistant doesn't run when you boot it up), you will need to use Migration Assistant...or run the installer again so that Setup Assistant runs again.
    Message was edited by: Mike Boreham...added sec on line

  • HT3529 My phone bill is paid and I can't send or receive msgs and I tried to call Rogers but that doesn't even work and if it was a bill issue I could still call Rogers think it might be software but I would like to know what to do

    My phone bill is paid and I can't send or receive msgs and I tried to call Rogers but that doesn't even work and if it was a bill issue I could still call Rogers think it might be software but I would like to know what to do

    I'm sorry to learn that you are not able to make/receive calls chelseabee! (ticket number removed) results indicate that there is no issues with the network or account provisioning. Since you have already done a hard reset http://vz.to/1gBkSJc (as per your post), I recommend exploring replacement options. If your phone is within the one year manufacturers' warranty we can provide a Certified Like New replacement http://vz.to/uyYF0o as long as no physical/liquid damage exist. If your phone has sustained physical/water damage and you have insurance, you can submit a claim to the insurance company online at this link http://bit.ly/07CrqPK
    AntonioC_VZW Follow us on Twitter at www.twitter.com/VZWSupport
    >> Edited to comply with the Verizon Wireless Terms of Service <<
    Edited by:  Verizon Moderator

  • Droid X issues...Not a happy customer :(

    I am having a few issues and I just wanted some input on my problem. I originally purchased a Droid 2 Global and didn't love it as much as I thought so I returned to the store and did an exchange for the Droid X. I like the device for the screen size and the camera quality (which is stunning!). Keep in mind I have called technical support before going to the store for each new phone.
    My first Droid X would randomly take black blank images when using the camera and I use the camera a lot since I have a 14 month old niece living with us and we like to capture lots of memories This one also had dust under the screen. I had the phone less than a week and when I took it back to the store they immediately swapped it for another brand new X.
    The second one a few days later had the same intermittent camera issue and dead pixels on the screen. I took it back to the store again and they again replaced it with a new X.
    This third X appears to have no screen issues but the camera issue persists. I called technical support who apologized about all the issues and asked if I would talk to a Verizon Technician who logs issues with phones into a database so they can work on fixes and see if there is a trend in the issues I am having. I agreed to do so. I got to a nice woman who took all my information and logged the issues. She said they have had a few customers call in with the same exact complaint but it wasn't frequent because she believes because it works some of the time they don't bother calling. She then asked if it would be okay with me if she conferenced a Motorola Technician into our call to also log the issue with them. I agreed. Motorola got on the phone and got the MEID numbers for all threee phones and my email address and he said they have quite a few complaints about the same issue and that they appreciate the feedback. The woman from Verizon then asked if Motorola had any input on when and if there would be a fix. He said they didn't know what was causing the issues so there was nothing as of now and we relieved him from the call. She then asked me if the issue was bothersome and I said yes it was but I really like the Android system and all that. She said if it bothered me I should take it back to the store again and have them move me to a different Droid device, such as Fascinate or back to my Droid 2 Global. I was already aware that you get one swap from a device to another device in 14 days and I had already done that. She then told me that because of the issues this swap was considered different and that she would note the account so that when I went to the store they would go ahead and do it without issues. She was very nice and recommended a few phones for me and I left for the store....
    I got to the store and walked in and they asked me how they could help me. I said it was a long story but technical support troubleshooted the phone with me and the phone has had the same recurring issue as the others. She pulled the account up and saw the notes and said oh they want you to move to a different device. It so happens to store manager was sitting there playing a game on his Galaxy S Tablet and asked if I used the camera a lot and if so I would like the Incredible or the iPhone 4. I said I didn't want an iPhone. I wanted another Droid. He looked at the notes and the account after offering me whatever Droid I wanted since they were all 199.99 or less like I had paid and then said that I had already did an exchange and that he refused to do another swap. He then also said about the X having a mechanical shutter and sometimes they stick but to deal with it and to not bring the phone back until the camera "refused to take pictures alltogether".
    I am so upset. I looked like a complete idiot and he made me feel so stupid. He talked to me like a little kid. They also accessed the account without any verification other than asking me what my cell phone number was. They never had me verify the last four of my social like they should have as well.
    I then called customer service again and they immediately saw that the store should have honored what the representative noted with Motorola and that they should have did the exchange without an issue but they could only do refurbished devices. She tried to offer me a Droid Eris...It's retired and she wouldn't refund the 199.99 I paid for the phone regardless.
    Any ideas on what to do? I am so upset
    Justin

    What I have learned that this type of issue usually comes from the stores location, I know it shouldnt make a diffrence but some employees in curtian areas seem to approuch customer service a bit wrong, did you try tp go to another store, I know its a pain and you shouldnt have to do this but this is just a trick that works for me?  I hope under this situation that this was just a situation with bad management.
    Now as for the issue you are having with camera is kind of strange one because I use my camera pretty heavy without any issues so far... Knock on Wood..
    Good luck on getting everything straighten out...

  • When is the next ios update and will it fix/address the issue with photos not being shown in chronilogical order?

    when is the next ios update and will it fix/address the issue with photos not being shown in chronological order?

    All of us here are users just like you. We have no inside info of when Apple products or operating system updates/upgrades will be released. The next iOS may not even change the issue you have.
     Cheers, Tom

  • Netbeans Issue: Servlet do not display Chinese UTF-8 properly

    Netbeans Issue: Servlet do not display Chinese UTF-8 properly
    Java Version: JDK1.5.0_01, JRE1.5.0_01 (International version)
    Netbeans Version: Netbeans IDE 4.0
    OS: Windows XP Personal Edition
    Dear Sirs,
    First at all thanks for reading this post. I am having the following issue. I am creating an application using html pages and servlets. I am using Chinese and English languages on them (html encoding UTF-8).
    I created a project in Netbeans and added an idex.html screen reporting to a servlet. Both index.html and in the servlet generated html page contains the line:
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    Additional, I setup the character code settings in Netbeans:
    (tools-options-Java sources-Expert-default encoding=UTF-8
    When I run the project, index.html displays itself perfectly, with the Chinese characters displayed properly. The problem comes when the html created servlet is displayed, which instead of the Chinese characters some strange characters are displayed (�� instead of Chinese).
    I have tried different encodings from http://java.sun.com/j2se/1.4.2/docs/guide/intl/encoding.doc.html without any luck. I also setup the encoding of the file itself (using right click-properties in the project menu of Netbeans).
    Also, when I am editing the servlet, the characters are displayed properly. I type them directly without any issue, but then the display is wrong at runtime.
    Also, just in case this have something to do with the problem, my PC was bought in US, therefore the default character set is not Chinese. I had to install the Chinese typing stuff later on. But like I said earlier, the html page is displayed properly, so I really think is some problem with Netbeans.
    After a week trying to find a solution, I decided to post it here in the hopes that someone will show me the way of the light.
    Thanks in advance for any ideas or help provided
    Aral.

    Hi, thanks for your help. However I think the problem his more complex than it seems. Here is my doPost method (the important parts anyway):
    response.setCharacterEncoding("UTF-8"); //Not necessary because the next line should take care of it, but anyways...
    response.setContentType("text/html; charset=UTF-8; pageEncoding=UTF-8");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<meta http-equiv='Content-Language' content='en-us'>");
    out.println("<meta http-equiv='Content-Type' content='text/html; charset=utf-8; pageEncoding=utf-8'>"); //Again not necessary line, but anyways
    out.println("<title>Servlet</title>");
    out.println("</head>");
    out.println("<body>");
    out.println("this is a test &#20320;&#22909; this is a test");
    out.println("</body>");
    out.println("</html>");
    out.close();
    This servlet is called from a html file. Also, when I load this in the browser, I right click on the screen and I can see that UTF-8 is setup allright. Doing some detective job I found that:
    - If the editor displays the characters perfectly and...
    - Other html pages (no servlets) in the same application can display chinese characters well and...
    - I have configured the encoding as UTF-8 in the servlet properties and in general properties and...
    - The file "web.xml" contains the encoding UTF-8 in its first line then...
    ...my only guess is that something goes wrong during the building of the project itself (ant?). Unfortunately I have no idea about configuring ant to that level, but I began to think that the problem may be there, during the compilation...
    Any ideas?
    Once more, thanks for any help or advice provided.
    Aral.

  • Why iCal cancel of event edits issue is still not fixed after over 2 years?

    Why iCal "cancel of event edits" issue is still not fixed after over 2 years?
    I have been in the software engineering industry for over 14 years, but I have never seen a large corporation being so slow at addressing major issues like these.
    What would it take for Apple to start working on this issue?

    Yup. This is fully ridiculous that you can't cancel your updates once you start. I love the tool but this is on pretty significant issue.
    Sometimes I accidentally move a mtg or make some edit while viewing and you can't back you!!
    If you feel the same way, you should post a note here:
    http://www.apple.com/feedback/ical.html
    Message was edited by: SteveMc10123

  • Hello, I have bought an iphone two weeks ago. Now I have a big problem. Whenever I receive a phone call, the caller could not heare me only when I switch to the handsfree speakers phone. The same issue accurs, when I call somebody.

    I have an iphone and whenever I receive a phone call, the caller could not hear me only when I switch to the hansfree speakers phone. the same issue occurs whenever I call somebody. Could anybody help me?

    Hi
    You should ask your relative to physically take the iPhone to the store rather than shipping it because as diesel vdub has said:
    "No Apple store will accept an iPhone shipped to them"
    All you have to do is safely pack and ship your iPhone from the Philppines to your California-based relative.
    HTH?
    Tony

  • Issue: color print not true

    Lightroom 5.7 (Updated from 5.5 after the problem below--no help)
    Windows 7
    Epson 2400 Photo Stylus Printer
    Photoshop elements 10
    New problem after using Lightroom for several years
    Working with bright red flower photo.  Color management set to profile for premium luster paper
    Preview and print come out magenta.
    Same photo in Photoshop Elements 10 previews and prints fine.

    Do you mean I should print the original without intervention by lightroom? I printed it using Windows Picture Manager and the Epson printer and the colors are OK. The linked picture in your reply is a screenshot of the print preview of an attempt to print the crimson image using LR controlling color   with the specific Inkpress profile for the selected Luster paper. The paper print looks the same as the preview i.e. magenta
    To quote:
    “Curiouser and curiouser!” Cried Alice (she was so much surprised, that for the moment she quite forgot how to speak good English).”
    1. Print of the original photo to the Epson printer using Windows Picture Manager (which I presume has no intrinsic color control but leaves all to the printer). I am asked to select a paper type but have no other printer control such as profile selection (although again I presume selecting the Luster paper selects that profile intrinsic in the printer)===result is crimson flower like the original.
    2. From Lightroom with setting Printer Controls Color and paper selected as Luster in printer page setup and Printer NOT set to ICM but just to the radio button for Color Control (choices seen on one of the screen shots I posted yesterday) I get the ugly brown .  BUT if I choose ICM and then choose a specific profile such as RR Luster or Inkpress Luster I STILL GET THE SAME UGLY BROWN
    3 In Lightroom, If I choose to have LR control the color and choose a paper specific profile with the printer set to no color correction, I get magenta BUT if the choice in Lightroom is not a specific color profile but the apparently generic SPR2400 , then I get crimson.
    4. Just to add to the confusion, in Photoshop Elements, Setting to Printer Controls Color and using a paper profile in the printer page setup such as Inkpress Luster, I do not get the ugly brown seen with the same settings in LR, I get a good crimson of the original.
    In example 3 above, setting the paper TYPE to Luster and then choosing ICM with the same paper type profile might be a double correction ? In the same setting choosing SPR2400 as the profile may not apply a double correction and I get good color
    But what about he fact that the same settings in Elements and LR when Printer Controls color produce different results--ugly brown in LR and original crimson in Elements.
    I am a fan of BBC mysteries, Agatha Christie,  Poirot etc, so perhaps he should be summoned??
    This is one of those computer issues that is not intrinsically important--not my livelihood at stake, but just like a coding bug-Why Won't it Work (and it used to).
    The machine I use for photo editing and printing is not used for much of anything else and has only had upgrades to LR, the antivirus program, java and such
    I have considered doing a system restore to several months back but I have never had a system restore work on this machine and am reluctant to try again.
    Lots of words but precision in description is difficult to achieve..

Maybe you are looking for

  • Problem with BSOD and awvid5.dll

    Hi all, Need help urgently.... My computer keeps crashing when playing any type of file that is Quicktime related or uses Quicktime as a base for the player. This happens when I view mov files in Firefox, try to transfer movies into my iPod Touch usi

  • Checking free space in tables across all the tables in database

    Hello , I have the below script which Gives the Free Blocks , Unused Blocks for the Tables of the Current User ( In which schema the script is run). How can this be modified so that it loops through all the schema tables in the database. ( Got this s

  • Gmail stays open even after closing ff in private browsing

    Gmail sign in is home page, I log in each time ("Remember Password" NEVER set for anything) then close browser (do not log out). When I reopen browser gmail is still open, not at the sign in home page as it should be. Before the latest upgrade to FF,

  • Flash Builder 4.5 and SOAPHeader operation problem.

    I have been working on this for the last couple days and I have not been able to come up with a solution.  Anyone out there have any suggestions. I am trying to consume a Web service and it requires an Authentication Header.  I know the web services

  • Frequency for random no generation between 0.1 and 1.0

    how can i create a array which stores the frequency of each random no i have generated. keep having different type error messages