JVM bug with Turkish locale settings (windows)

Hello,
There is a serious bug in all versions of java virtual machine. When you set your locale settings to Turkish language, you can not install & use database driven java applications (that needs to create a database). For example; you can't install oracle 9i or 10g, ORA-12560 arises in database creation phase; and you can't install Readerware (a book cataloger), it locks-up in database creation phase, too. Ofcourse when you change your language to English or another language the problem goes away.
I found that the source of the problem is JVM's wrong character mapping. It fails to convert Turkish and English "i" and "I" characters correctly (they're different in Turkish).
Is there anybody to fix this issue in the next release ?
Thanks,...

I logged a bug about Java's Turkish Collator implementation: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4688797.
I'm not sure if your issue would fall into the same category. It looks like a separate bug to me, although closely related.
Try logging that bug, or adding this to the bug above.
HTH,
<rsa/>

Similar Messages

  • Bug with TURKISH local

    hi ,
    I have dowloaded odp.net and I was looking at samples , but there are some problems guys.These are :
    my connection string in sample is
    string constr = "User id=scott;Password=TIGER;Data Source=honest";
    "User Id=" doesn't work gives error , but "User id=" works
    and also
    "password=tiger" doesn't work , but "password=TIGER" works.
    I think there is some problems with "I" character because in turkish language i and I are different letters.

    What is the error message and the call stack of the exception?

  • MacOS Lion 10.7.1 Still issues with Flash Player Settings windows

    Hi Everyone, and Adobe,
    I have tried almost anything now, but it still doesn't work... I have a few workarounds but non really working
    I'm only having this issues with my iMac not my MacBook Pro... how is that?
    Using, MacOS Lion 10.7.2 with Flash Player version 11.0.1.152.
    I'm still not able to invoke / click on the Flash Player Settings windows in the Browser (Safari) -- I can as described, workaround the Allow and Denied issue by using the System Preferences Flash settings… but I can not change cam setting, from Web CAM to my external Cam. !!
    Is this ONLY me having these issues or ?? or wasn't the issue suppose to have been fixed in the latest version af Flash? or … is this issues only related to the Video Card within my iMac (ATI Radeon HD 2600 Pro 256 MB) ? 
    Some that someone, hopefully Adobe can help me here
    hope for some greate feedback ...

    This is a known issue with particular iMac machines having ATI Radeon HD cards. Currently, we found iMac 7/8 with ATI Radeon HD 2600 Pro are the most common victim of this issue. We are working with both Apple and ATI to fix this problem. For now, we summarized some work arounds in below forum thread, hope it will be helpful to you!
    http://forums.adobe.com/message/3820255
    Thanks!
    Yan

  • 3.1EA2 Old bug with German language settings still exists

    In the past I wrote several times about a bug in SQL Developer when running in German language mode. This bug is still not fixed in 3.1 EA2:
    In new folders for user definded reports only the options "Kopieren" and "Speichern unter ..." ('Copy' and 'Cave as') are available, when SQL-Deverloper runs in German language mode. Other options like "Bearbeiten, Neuer Ordner, Neuer Bericht, Ausschneiden, Einfügen, Löschen" (Edit, New Folder, New Report, Cut, Paste, Delete) are missing. A workaround is to force language to English with the line
    AddVMOption -Duser.language=en
    in sqldeveloper.conf
    I mentioned it first in Re: Folders with limited functionality about version 2.1.1.64 and then in 30EA2: Limited folder functionality with German language 3.0 EA2 and German language bug with user defined reports still not fixed Beta Release 3.0 EA3
    Edited by: user1775992 on 22.11.2011 03:30

    I have raised a bug on this issue and I am actively looking into it.

  • How to save status bar background color in local settings(Windows Phone 8.1)

    I have given the user the freedom to change background colour and save it in local settings. But I am confused on how to save the status bar colour settings because I want to give the user the freedom to choose from 4-5 colours where background of status bar
    can be changed.
    public static void SaveStatusBarColor()
    // get status bar color
    var statusBar = StatusBar.GetForCurrentView();
    var color = statusBar.BackgroundColor;
    // convert color to hex string
    var hexCode = color.HasValue ? color.Value.ToString() : "";
    // store color in local settings
    ApplicationData.Current.LocalSettings.Values["StatusBarColor"] = hexCode;
    public static void LoadStatusBarColor()
    // get color hex string from local settings
    var hexCode = ApplicationData.Current.LocalSettings.Values["StatusBarColor"] as string;
    if (string.IsNullOrEmpty(hexCode))
    return;
    // convert hexcode to color
    var color = new Color();
    color.A = byte.Parse(hexCode.Substring(1, 2), NumberStyles.AllowHexSpecifier);
    color.R = byte.Parse(hexCode.Substring(3, 2), NumberStyles.AllowHexSpecifier);
    color.G = byte.Parse(hexCode.Substring(5, 2), NumberStyles.AllowHexSpecifier);
    color.B = byte.Parse(hexCode.Substring(7, 2), NumberStyles.AllowHexSpecifier);
    // set the status bar color
    var statusBar = StatusBar.GetForCurrentView(); // Exception Line
    statusBar.BackgroundColor = color;
    }This is what was suggested to me. Initially the app runs and saves the settings.But when the app is closed and restarted again it crashes.

    Hi shriyansh,
    Where did you call the method SaveStatusBarColor() and LoadStatusBarColor()?
    I have called your SaveStatusBarColor() in the OnNavigatedFrom method and called the LoadStatusBarColor() in the OnNavigatedTo method, it worked very well in my side.
    So I can not reproduce your issue.
    Here are my code and result, please try to check it:
    public class test
    public Color colors { get; set; }
    public sealed partial class MainPage : Page
    List<test> testdemo = new List<test>();
    public MainPage()
    this.InitializeComponent();
    testdemo.Add(new test() { colors = Colors.Red });
    testdemo.Add(new test() { colors = Colors.Green});
    testdemo.Add(new test() { colors = Colors.Gray});
    testdemo.Add(new test() { colors = Colors.Blue });
    this.NavigationCacheMode = NavigationCacheMode.Required;
    public static void SaveStatusBarColor()
    // get status bar color
    var statusBar = StatusBar.GetForCurrentView();
    var color = statusBar.BackgroundColor;
    // convert color to hex string
    var hexCode = color.HasValue ? color.Value.ToString() : "";
    // store color in local settings
    ApplicationData.Current.LocalSettings.Values["StatusBarColor"] = hexCode;
    public static void LoadStatusBarColor()
    //get color hex string from local settings
    var hexCode = ApplicationData.Current.LocalSettings.Values["StatusBarColor"] as string;
    if (string.IsNullOrEmpty(hexCode))
    return;
    // convert hexcode to color
    var color = new Color();
    color.A = byte.Parse(hexCode.Substring(1, 2), NumberStyles.AllowHexSpecifier);
    color.R = byte.Parse(hexCode.Substring(3, 2), NumberStyles.AllowHexSpecifier);
    color.G = byte.Parse(hexCode.Substring(5, 2), NumberStyles.AllowHexSpecifier);
    color.B = byte.Parse(hexCode.Substring(7, 2), NumberStyles.AllowHexSpecifier);
    var statusBar = StatusBar.GetForCurrentView();
    statusBar.BackgroundColor = color;
    statusBar.BackgroundOpacity = 1;
    protected override void OnNavigatedTo(NavigationEventArgs e)
    LoadStatusBarColor();
    protected override void OnNavigatedFrom(NavigationEventArgs e)
    SaveStatusBarColor();
    private void ChangeColorButton_Click(object sender, RoutedEventArgs e)
    var statusBar = StatusBar.GetForCurrentView();
    statusBar.BackgroundColor = testdemo[Convert.ToInt32(Mytextbox.Text)].colors;
    statusBar.BackgroundOpacity = 1;
    The result:
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Playlist Problem With Turkish Character Set (Windows-1254 or ISO 8859-9)

    I'm using my x-fi 2 just for 2 week and sicked and tired it's problem. Now i have a problem with playlist. If my mp3 or m4a files or folder names have turkish character playlist's seems empty but i can find the files under albums and artist name sectors.
    My question is the any way to solve this problem. Folder names is not problem but file names i can not change all of them. Please help.

    meraba ankara yasiyorum.Sizinle mail araciliyla görüsmemiz mumkun mu?
    e_mail: [email protected]
    Bilgisayırıma 10g express edition yükledim .Bi de ODT for 10gXE (ADD-in) yükledim.Ama
    connect e basınca veritabanına .net den baglanamıyorum username yada password yanlis diyor.string name express edition icin nedir..net 2003 bilgisayarima yüklü.
    .net ve oracle kullanarak bir proje yapmak istiyorum.Yardimci olabilirmisiniz
    saygilar..

  • Reporting services Installation with Globalization Locale Settings

    Hi Guys,
             We have a problem in report Subscription using File share date format rendering.The File share works properly.But the
    data showing in Subscription "pdf"  like Date format not displaying properly based on different countries.
    It always shows in  "US format-MM/dd/yyyy".I tried hard in searching ,I tried by changing ssrs expression with "User-Language" or "GLobalization" nothing works. some solutions say that some configuration based on sql server
    or  sql reporting services. Is there any solution for this.
    any solution for this is appreciated.
    tnkx guys,
    r.b

    Hi R.b,
    From your description, you want to change the datetime format dynamically, right? The datetime format is depend on the Formate setting on the Report Server (Start>Control Pane>Clock,Language, and Region>Region and Language). I am afraid we cannot
    change it dynamically base a report item's value on the report.
    If I have anything misunderstood, please point it out.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Australia DST JVm bug with 1.3.1_18

    Hi,
    After installing the latest jvm to handle the Daylight savings for Eastern Australia, the time zone is now getting set to the GMT and all of the process are showing 10 hours behind. 1.4.2_11 works fine.
    The 1.3.1_18 seems to be buggy. Please fix immediately This impacts a lot of 1.3.1 jvm users

    Hi,
    After installing the latest jvm to handle the
    Daylight savings for Eastern Australia, the time zone
    is now getting set to the GMT and all of the process
    are showing 10 hours behind. 1.4.2_11 works fine.
    The 1.3.1_18 seems to be buggy. Please fix
    immediately This impacts a lot of 1.3.1 jvm usersThen they are out of luck. 1.3 has been end of lifed for quite some time now. So unless you are willing to pay Sun to fix it it isn't going to happen.
    Actually I would expect that 1.4 will probably be end of lifed in the next year.
    http://java.sun.com/products/archive/eol.policy.html

  • Eclipse & Totem Doesn't Work Because of Turkish Locale

    Hey There,
    Eclipse doesn't work with Turkish locale. I run it from the console with tr_TR.UTF-8 locale but it closes without printing any errors. If I change my locale to C, then it starts working.
    Totem also doesn't work with these errors when using the above locale:
    Gtk-ERROR **: Invalid type: GtkImage
    aborting...
    2b858994-b6a9-e4e3-17e731bd-7eaa1ab5 is dumped
    Gtk-ERROR **: Invalid type: GtkImage
    aborting...
    2b858994-b6a9-e4e3-17e731bd-7eaa1ab5 is dumped
    Gtk-ERROR **: Invalid type: GtkImage
    aborting...
    2b858994-b6a9-e4e3-17e731bd-7eaa1ab5 is dumped
    Gtk-ERROR **: Invalid type: GtkImage
    aborting...
    5f81d5b9-5751-eb66-4e618d3e-1a2e6fc6 is dumped
    Maximum number of clients reachedcannot open display:
    Mevcut olan komut satırı seçeneklerinin tam listesini görmek istiyor sanız 'bug-buddy' --help'i çalıştırın.
    If I change my locale to C, it works without any problems. These kinds of problems are really annoying and prevents the usability on Linux

    Hey Jontheruler,
    Try the tips in this article: http://docs.info.apple.com/article.html?artnum=304424 , they should get rid of that error message.
    Jason

  • How do I enable local settings so they can be changed?

    I am using Chrome 9.0.597.19 installed on windows 7 64-bit.  I have this enabled:
    Version: 10.1.103.22Shockwave Flash 10.1 r103
    Name:
    Shockwave Flash
    Description:
    Shockwave Flash 10.1 r103
    Version:
    10,1,103,22
    Priority:
    2
    Location:
    C:\Users\Theron\AppData\Local\Google\Chrome\Application\9.0.597.19\gcswf32.dll
    Disable
    MIME types:
    MIME type
    Description
    File extensions
    application/x-shockwave-flash
    Adobe Flash movie
    .swf
    application/futuresplash
    FutureSplash movie
    .spl
    I have uninstalled and reinstalled Chrome.  I have disabled the above and installed a separate version of Flash player.  I have deleted a "corrupt" Flash folder. I have searched the forums and not found anything that fixes my problem.  I have even subjected myself to the sarcasm of a couple of google help workrs who basically told me I was too stupid to follow directions.
    Here is my problem:  no matter what I do, when I use my flashplayer in Chrome I cannot make any changes in the local settings.  Once I have opened them I cannot even close them without logging of off the page.  I am very frustrated.  What more do I need to provide you to solve this?

    Thanks for responding.  Here is what I mean:
    In several other threads when people said they were having problems (some similar to mine, some not) with the local settings the advice was that the "Flash" folder in the Windows\system32\Macromed file was corrupt and that if it was deleted it would solve the problem.  After one deletes the file and reboots it rebuilds itself.  But, it didn't solve anything for me.

  • 30EA3: German language bug with user defined reports still not fixed

    In 30EA2: Limited folder functionality with German language
    I wrote about a bug in 30EA2. Was this message noticed by the developers?
    The bug still exists in 30EA3.
    In new folders for user definded reports only the options "Kopieren" and "Exportieren" (copy and export) are available, when SQL-Deverloper runs in German language mode.
    A workaround is to force language to English with the line
    AddVMOption -Duser.language=en
    in sqldeveloper.conf

    I made a new thread for the same bug in 3.1EA2:
    3.1EA2 Old bug with German language settings still exists
    I have some hope, that my problem finally got noticed by the developers.

  • Discounts - Local Settings for Prepayment of Invoice

    I have a client who wants to show on their invoices the discount amount if paid prior to the payment terms.
    For db's set up with the Local Settings being UK this can be shown. Refer to 'Multisports Limited' demo company, using invoice layout 'Invoice Master Template'.
    I am based in Australia, and if i copy the format including system variables from the UK db, the invoice doesn't work. What fields do i need to put on the invoice? You can't link the fields to a db field as the fields are a calculation and are not stored anywhere. When i refer to the System Variables in the UK db, i can't find where they are referenced to so i can't determine what the system variables are for the Aus db.
    Any help would be greatly appreciated.

    Mevyn,
    The forum that you have posted your question in is for questions related to the SAP Business One Integration for SAP NetWeaver.  Your question seems to be related to the SAP Business One application.  You may get a quicker response by posting your question in the SAP Business One Discussion Forum located here ...
    http://cpsn-channel.sap.com/businessoneforum
    HTH,
    Eddy

  • Okay, i have 2 bugs with maverick.  First, when I delete a file within a window, the files deletes but the preview doesn't delete until I close the window and reopen it.  Second, I work on a network of computers and the search feature is now buggy...

    Okay, i have 2 bugs with maverick.  First, when I delete a file within a window, the files deletes but the preview doesn't delete until I close the window and reopen it.  Second, I work on a network of computers and the search feature is now buggy...  When I search for a file, A) it asks me if it's a name, or it wont produce anything, and B), its slower than in prior OS versions and in some instances I have to toggle to a different directory and go back to my original directory in the search: menu bar or the search wont produce anything...  Very buggy. 

    It appears to me that network file access is buggy in Maverick.
    In my case I have a USB Drive attached to airport extreme (new model) and when I open folders on that drive they all appear empty. If I right click and I select get info after a few minutes! I get a list of the content.
    It makes impossible navigate a directory tree.
    File access has been trashed in Maverick.
    They have improved (read broken) Finder. I need to manage a way to downgrade to Lion again.

  • App-V 5.0 // Visio - Project with Integration + local Office 2010 Deployment Kit and COM settings

    Hi, I did read all the Microsoft and non-microsoft documentation first. However, I didn't find an answer to these 3 questions: 
    Situation:
    * Locally installed Office 2010.
    * Visio and Projects 2010 sequenced with App-V 5.0 SP3 sequencer with integration scenario (http://support.microsoft.com/kb/2830069)
    * User-target of Visio and Project (I now according to documentation this should be published globally. Since not every user has a license this is no option. So far my tests do not show any problems with user-targeted visio/project)
    * Visio has "allow COM objects to interact with the local system" and "OutOfProcessEnabled" enabled
    1) When targeting both visio and project to the user with integration the licensing component only works for the first started application. Therefore I also install the licensing kit locally which make both the visio and project licensing work just fine.
    Anyone sees a problem with having the license kit installed locally and stream the applications with integration on top? With my tests all seems to work well. The advantage of this is that I do not have to have separate packages for integration and non-integration
    scenario's.
    2) To make drag-and-drop from visio drawings in word work I enabled the COM interaction and I need also to set OutOfProcessEnabled="true". Does anyone now how to set OutOfProcessEnabled to true inside the .appv (it is possible with application
    virtualization explorer) and not only manually afterwards in the xml's?
    3) Should these COM settings be enabled for project as well? It seems that pasting in word from project has not the same interaction, it just pastes a table.

    1.  We did similar, installed that MSI for the licensing component locally, and streamed Project and Visio 2010, and so far so good.
    2. There is no way to set those COM options inside the .appv.  You can set integrated vs isolated, but no IP or OoP COM, you have to use the deployment XML.
    3.  This gets tougher to answer, but it goes to how much isolation do you want.  Some of the articles are great just go over my head slightly, but have to deal with how the filter driver processes certain kinds of COM, IP or OoP.  With Isolated
    (as opposed to integrated) the COM systems (local and package) are totally isolated except for global exceptions.
    With integrated, you can further 'integrate' the COM subsystems by enabling those options.  Correct me if I'm mistaken though.
    So do you need to?  If everything works for you I'd say no, but you might find something else doesn't work without those settings.
    Also very important, you cannot join a CG without those subsystems being equal.  So if Project and Visio ever need to be in a CG together and the COM settings aren't identical, you will get an error at the client.
    I really like this article but not going to lie it goes over my head a bit (a bit or a lot depending on my coffee intake)
    http://blogs.technet.com/b/gladiatormsft/archive/2015/01/14/app-v-5-further-into-com-and-dynamic-virtualization.aspx

  • RH10 and Windows 8 Bug with DHTML

    I reported the following bug today:
    Concise problem statement:
    All DHTML effects in WebHelp—with the sole exception of drop-down and expanding hotspots—fail to execute on CLEAN Windows 8 systems (upgraded Windows 8 systems from Windows 7 do not seem to be affected), regardless of default browser.
    Steps to reproduce bug:
    Set up any DHTML effect other than drop-down or expanding.
    Save topic and click “View Selected Item”.
    The following script error is thrown: “Unable to get property ‘alpha’ of undefined or null reference” — the error points to the ehlpdhtm.js file (in my case, line 4233, char 2).
    Results: No DHTML in the WebHelp output execute, with the exception of drop-down and expanding text.
    Expected results: DHTML displays as developed (and yes, "Update DHTML effects in topics" was run). It is important to note that all these effects display as expected when run from a Windows 7 machine.
    I noticed this after being forced to format and reinstall my system drive, on which I'd previously done an in-place upgrade to Windows 8. There was no issue unitl I'd done a clean install of the OS, implying that something carried over from the Windows 7 setup to prevent the error.
    I've tested this against IE10, Firefox, and Chrome with the same results: DHTML effects (such as Fly-in) don't work and, worse, whatever the effect is attached to does not display.
    If anyone else is having this issue, it would be good to report it. If anyone has a possible fix or workaround, I'll be glad to be a test monkey.
    Thanks!

    I'm having the exact same problem with Robohelp 9 on Windows 7. My error message says: The value of the property "TextPopupInit is null or undefined, not a Function object"
    I click Yes to the question "Do you want to continue running scripts on this page" and the page previews fine. I open the page in a web browser, and it also works fine.
    Any help greatly appreciated.
    Lea

Maybe you are looking for

  • SQL functions extract and XMLSequence for a one-to-many (1:N) relationship

    I have have the following XML document loaded into a XMLType table. I'd like to retrieve the lineitem id together with the purchaseorder id and report id. How would the query look like? I've tried a lot but this one-to-many relationship is killing me

  • More App Store Stuff

    Thought id jot down some small things again i think would improve the app store general use, not sure if other would agree, would be nice if they did. Owned apps: Any chance they can be sorted at the top of the list grouped together instead of having

  • Apps only partially downloaded, blank faces, cannot open, cannot delete

    Apps only partially downloaded, blank face, cannot open, cannot delete

  • AVI and DIVX Plyaback in Quicktime

    Is it possible? I'd like to export some of my movies that I have in avi/Divx format to MPEG4 format to fit on the video Ipod. I've read that Quicktime plays AVI files, but when I open them it's just a white screen and no sound or bad sound. Do I need

  • SQL*Net 2.3 accessing Oracle9i?

    Can SQL*Net 2.3 be used to access Oracle9i database? If so, will installing SQL*Net 2.3 damage to my current Oracle9i configuration? Many thanks tubagus