NLS problem

I have :
*Oracle 9i DB using AR8MSWIN1256 Arabic character set , AL16UTF16 for NLS
*Tomcat 4.1.27 as application server
*JDBC for connectivity - Thin Driver
*JDK - SUN 1.4.2 ( Latest )
*Macromedia Dreamweaver MX for JSP development
*UTF-8 for HTML tags ( to see Arabic )
*UTF-8 for JSP encoding
Problem is:
when I insert any Arabic charactes to the database , it is saved like Junk
despite that Arabic charaters are Showing good on the web page and inside fields when entered
I have concerns regarding my JDBC conversion layers despite that I use
UTF-8 for all
Any help
Thank You

the problem is in Tomcat.
It uses J2EE core libraries wich are damaged.
Try to
1) set a correct Regional settings in OS level and relaunch Tomcat
or
2) edit it's sourses
or
3) use Jetty or OC4J.

Similar Messages

  • JHeadstart NLS problems on Linux

    I'm having problems generating nls resource files on our Red Hat Linux machine.
    I set the resource bundle type to propertiesFile, but the ApplicationResources.properties file doesn't contain the correct information.
    Examples from the ApplicationResources.properties file (HR Schema):
    ADVANCED_SEARCH=ADVANCED_SEARCH
    ALL_CONDITIONS_MET=ALL_CONDITIONS_MET
    ANY_CONDITION_MET=ANY_CONDITION_MET
    BREADCRUMB_COUNTRIES=EDIT_TITLE
    BREADCRUMB_COUNTRIES2TABLE=TABLE_TITLE
    BREADCRUMB_COUNTRIESTABLE=TABLE_TITLE
    BREADCRUMB_DEPARTMENTS=EDIT_TITLE
    BREADCRUMB_DEPARTMENTS2TABLE=TABLE_TITLE
    BREADCRUMB_DEPARTMENTS3TABLE=TABLE_TITLE
    BREADCRUMB_DEPARTMENTSTABLE=TABLE_TITLE
    BREADCRUMB_EMPLOYEES=EDIT_TITLE
    BREADCRUMB_EMPLOYEES2TABLE=TABLE_TITLE
    BREADCRUMB_EMPLOYEES3TABLE=TABLE_TITLE
    BREADCRUMB_EMPLOYEES4TABLE=TABLE_TITLE
    BREADCRUMB_EMPLOYEESTABLE=TABLE_TITLE
    BREADCRUMB_JOBHISTORY=EDIT_TITLE
    BREADCRUMB_JOBHISTORY2TABLE=TABLE_TITLE
    BREADCRUMB_JOBHISTORY3TABLE=TABLE_TITLE
    BREADCRUMB_JOBHISTORY4TABLE=TABLE_TITLE
    BREADCRUMB_JOBHISTORYTABLE=TABLE_TITLE
    BREADCRUMB_JOBS=EDIT_TITLE
    BREADCRUMB_JOBSTABLE=TABLE_TITLE
    BREADCRUMB_LOCATIONS=EDIT_TITLE
    BREADCRUMB_LOCATIONS2TABLE=TABLE_TITLE
    BREADCRUMB_LOCATIONSTABLE=TABLE_TITLE
    BREADCRUMB_REGIONS=EDIT_TITLE
    BREADCRUMB_REGIONSTABLE=TABLE_TITLE
    CASE_SENSITIVE=CASE_SENSITIVE
    Is this a known problem? From my perspective It looks as though it can't find the nls templates (I specified the service setting "Templates Base Directory" to "/templates/"),
    The pages themselves are generated correctly (except for the nls problems).

    Hi Steven,
    I downloaded JHS 10.1.3.2 build 51 and under Linux I created a new application using the HR schema. This time, all prompts and tabs did have the correct labels like they have under Windows. Thanks so much for the fix!
    By the way, in the console from which I started JDeveloper 10.1.3.3 I do see a couple of these messages when I generate with JHeadstart.
    java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.charAt(String.java:558)
    at oracle.jsp.provider.JspFilesystemResource.setRoots(JspFilesystemResource.java:126)
    at oracle.jsp.provider.JspFilesystemResource.init(JspFilesystemResource.java:118)
    at oracle.jdevimpl.webapp.jsp.IdeStorageResource.<init>(IdeStorageResource.java:39)
    at oracle.jdevimpl.webapp.jsp.JspQuickCompiler.translateFile(JspQuickCompiler.java:340)
    at oracle.jdevimpl.webapp.jsp.JspQuickCompiler.translate(JspQuickCompiler.java:255)
    at oracle.jdevimpl.webapp.jsp.JspErrorProviderAddin$ErrorProviderTracker$BackgroundErrorCheckingTimerTask.run(JspErrorProviderAddin.java:494)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    At first I thought these messages could be linked to the warnings I get when I first generate an application. But they also appear on successive generations. Some further investigation revealed that these messages only are thrown after or at the end of the first generation after JDeveloper has been started. When I then regenerate, the messages no longer appear until I restart JDeveloper. As far as I can see nothing is missing from the files generated by JHeadstart but I need to investigate further to be sure.
    Thanks, Wouter

  • OAS 4.0.8.2 and NLS problem

    Hi,
    I migrated from OAS 4.0.8.1 to ...2.
    When I setup the net80 configuration using Easynet config I get the following error from the testing of the connection:
    ORA-12705: Invalid or unknown NLS parameter value specified.
    It just worked fine with the earlier version of OAS.
    Anyone...pls...

    Problem solved.
    I deleted OAS 4.0.8.2.0 and installed Web-to-go. Then I installed OAS 4.0.8.2.0.

  • NLS problems

    Hi,
    I have installed oracle 9i on windows machine, then apache and php installed on seperate windows machine. Problem is that instead of national characters I get ? marks.
    Oracle DB is in WE81SO8859P1 characterset.
    (SELECT * FROM V$NLS_PARAMETERS )
    NLS_CHARACTERSET = WE81SO8859P1
    Apache machine is win1257 encoding. If I enter some data from apache macine into DB everythig is OK and I can get national characters. If I use other data from DB instead mational chars are ?
    If I put environment variable NLS_LANG = WE81SO8859P1 on apache amchine, I can't connect to oracle at all.
    Does anybody help me?
    gigic

    Problem is that instead of national characters I get ? marks.'?' is one replacement char Oracle uses when proper conversion is not available for your selected combination of character repertoires. (for example retrieving stored multi-byte unicode characters when your client application setup supports only ascii characters)
    Or, if you'd like, from 9.2 Documentation; Globalization Support Guide, Glossary:
    "replacement character
    A character used during character conversion when the source character is not available in the target character set. For example, ? is often used as Oracle's default replacement character."
    One guess (since you get a '?') is that your app client side uses ascii codes, told to Oracle via nls settings.
    Apache machine is win1257 encoding. If that is for Baltic languages, you may have a "Uh oh!" on your hands...
    Besides encoding is different for some characters, several of them does not even exist in 8859-1. Look for letters with caron, ogonek, cedilla, stroke, ...
    http://www.microsoft.com/globaldev/reference/sbcs/1257.mspx
    Oracle's char set with Baltic support is called BLT8MSWIN1257 (or BLT8ISO8859P13 or ...) - again, see the Globalization Support Guide in documentation set. http://tahiti.oracle.com/
    You should set up a test database and verify that the data you need to store can be converted and stored properly.
    If I enter some data from apache macine into DB everythig is OK and
    I can get national characters.Really sure? Really, really? National support is a tricky business and without care it can turn in to a ugly character soup.
    If I use other data from DB instead mational chars are ?How, what, where?
    If I put environment variable NLS_LANG = WE81SO8859P1
    on apache amchine, I can't connect to oracle at all.What is the error returned? WE8ISO8859P1 is a valid value, WE81SO8859P1 is not. Remember that WE8ISO8859P1 may not be the correct choice...
    Does anybody help me?maybe =)
    There is perhaps a more apropriate forum here:
    Globalization Support

  • Starting DB NLS problem

    Hi
    I had installed Oracle 9iR2.0.4.0 on SuSE 9.0.
    When I try to strat up the database from the 'sqlplus'
    "$sqlplus /nolg
    SQL>conn / as sysdba"
    I always get an error saying that I have wrong NLS value with error code "ORA-12705"
    Same also from the dbastudio
    my NLS_LANG is ARABIC_EGYPT.AR8MSWIN1256
    and I had tried these values too
    ARABIC_EGYPT.AR8ISO8856P5
    AMERICAN_AMERICA.WE8MISO8856P1
    it is exported and inserted in the '.bashrc'
    We didn't face such problem on 9iR2.0.1 either with RH9 or SuSE 9.0
    How we can start the database?

    Hi,
    Problem starting DB and not able to use sqlplus is two different thing.
    Assuming you have right now problem using sqlplus.
    Please check if your Environment variable like %PATH, %ORACLE_HOME is properly set. I suppose you have more than 1 oracle installed on that box.
    Regards
    Anurag Tibrewal.

  • NLS problem with sqlplus

    Hi there,
    I have a 9i database running on a windows machine, and I am trying to connect from another windows machine using sqlplus. When I try to login I get the error message:
    ORA-12705: invalid or unknown NLS parameter value specified
    I don't really know what it means or what I have to do? is it a problem on the server or on the client?
    Can someone help me on this one?
    Regards
    Johnny

    ORA-12705 invalid or unknown NLS parameter value specified
    Cause: There are two possible causes: Either an attempt was made to issue an ALTER SESSION statement with an invalid NLS parameter or value; or the NLS_LANG environment variable contains an invalid language, territory, or character set.
    Action: Check the syntax of the ALTER SESSION statement and the NLS parameter, correct the syntax and retry the statement, or specify correct values in the NLS_LANG environment variable. For more information about the syntax of the ALTER SESSION statement, see the Oracle9i SQL Reference
    you have to correct that value in NLS_LANG enviroment variable of your OS.
    Query NLS_LANG value in your server and put it equal in
    your client.
    Joel P�rez

  • NLS Problem when connect SQLDeveloper to Connect to Oracle XE

    Status: failure ORA 00604: error occured at recursive SQL Level 1 ORA-12705:
    cannnot access NLS data file or invalid enviroment specified
    SQL Developer 1.0.0.15.57
    OS Windows2003
    sun.jnu.encoding=cp1251
    user.country=RU
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    NLS_CHARACTERSET AL32UTF8
    NLS_DATE_LANGUAGE RUSSIAN
    NLS_LANGUAGE RUSSIAN
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NUMERIC_CHARACTERS ,
    NLS_SORT RUSSIAN
    NLS_TERRITORY RUSSIA

    Yes, its happen on startup up of a new connection.
    On other forum threads we have some help:
    New next lines in
    C:\oracle\sqldeveloper-1557\sqldeveloper\jdev\bin\sqldeveloper.conf
    AddVMOption -Duser.language=en
    AddVMOption -Duser.region=US
    And change in regedit:
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_XE\NLS_LANG -
    from RUSSIAN_RUSSIA.CL8MSWIN1251
    on RUSSIAN_RUSSIA.AL32UTF8
    Some help:
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14225/ch11charsetmig.htm#i1005993
    This problem was fixed. Thanks All.

  • 11.5.10.2 Fresh install - NLS problem

    Hi all,
    I'm doing a multinode fresh install of 11.5.10.2 on HP-UX. Came across the following from rapidwiz (it only happens with Simplified Chinese):
    RW-50004: Error code received when running external process. Check log file for details. Running APPL_TOP Configuration
    Driver for APSA instance.
    The log files shows:
    Checking Disk contents in - /dba/app/tempstaging/Stage11i/startCD/Disk1/rapidwiz
    Checking Disk contents in - /dba/app/tempstaging/Stage11i/oraNLS/ESA/Disk1
    Checking Disk contents in - /dba/app/tempstaging/Stage11i/oraNLS/ESA/Disk1
    UnzipCount:416
    Processing Disk1....
    Enter the location of the CD labeled Oracle Applications NLS Supplement - Simplified Chinese Disk 1 :
    Checking Disk contents in - /dba/app/tempstaging/Stage11i/startCD/Disk1/rapidwiz
    Checking Disk contents in - /dba/app/tempstaging/Stage11i/oraNLS/ZHS/Disk1
    Checking Disk contents in - /dba/app/tempstaging/Stage11i/oraNLS/ZHS/Disk1
    UnzipCount:416
    Processing Disk1....
    ^M
    runProcess_2
    Statusstring Executing Command: InstantiateFile adatccnv.sh
    ERROR: Unable to complete instantiation of adatccnv.sh
    RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running APPL_TOP Configuration Driver for APSA instance
    Any suggestions?
    Thanks.

    are you sure that it only happens with Simplified Chinese, if yes you can install the application with out Simplified Chinese and after the installation complete successfuly you can add the Simplified Chinese languge as post installation step.
    i check for the error you faced but with no luck my gess the your nls cd is corrupted can you downlaod another one from edilivery and try
    fadi hasweh
    http://oracle-magic.blogspot.com/
    Oracle is not Magic, it just takes years of experience

  • NLS Problem in 9iAS Forms Service

    Hi Friends
    I'm using :
    - Forms Server 6i
    - 9iAS Rel 1
    - Database 8.1.6 (AR8MSWIN1256)
    for a 3 tire application in Farsi. My client is IE 5.5 and
    my JVM is Jinitiator 1.1.8.10
    The problem is for 4 letters sound g,ch,p and zh in Farsi
    I miss contextual analysis for these letters in the java
    applet downloaded to client.
    I mean the behaviour of these letters in the client is
    like English characters not arabic ones.
    Please help me
    Thanx in advance

    I guess you need to enable the Urdu language support in the browser as well.
    In IE, Tools-> Internet Options-> General>Languages

  • NLS problem in PDK v2

    I've installed oc4j_extended, PDK v2 examples in Portal 3.0.9.8.2 with
    Russian Language Supplement.
    My DB LNS_CHARSET is CL8MSWIN1251.
    NLS_LANG environment variable for starting Apache russian_cis.CL8MSWIN1251.
    So Question: Why when i change portal language to Russian all localized messages
    (like "Customize") in PDK v2 potrlet examples became ??????? in Netscape 4.7.
    Other portal portlets is Ok.
    So more strange for me, IE and NS6 shows all characters correct.
    Any suggestion?
    Regards, Vladimir.

    Thanks for the assistance James.
    I've look at the URL-based portlet "urlnls". Only one thing I understudy from example is using tag <charSet>iana_charset</charSet>.
    As described in XML.TAG.REFERENCE.V2.XML.HTML this tag may be used with oracle.portal.provider.v2.render.RenderManager
    and oracle.portal.provider.v2.render.http.FileRenderer. So I'll try change my portlet to RendererManager.
    But ... what I can't understand, why I do need do this... I insert simple cod in existing portlet
    out.println("Current character set is \"" + pr.getURLCharSet() + "\"");
    Result right in all browsers.
    Regards,
    Vladimir

  • Problem with importing decimal numbers in Apex

    Hi,
    I have a ascii data file which I load into db tables calling a procedure in a db package.
    Executing the procedure by SQL Plus everything works fine.
    Calling the procedure by Apex button I get a "ORA-01722: invalid number; Error inserting subject" because of the decimal numbers in the data file. Taking the decimal numbers out of the file it works.
    - I tried with different formats in the data file like: 4.40 4,40 4.4 4,4: Makes no difference.
    - In Apex I tried column formatting in the report attribute: 999G999G999G999G990D00: Makes no difference, it's obviously only formatting the display.
    - Debug mode just shows there is an error..
    - The db column is of format NUMBER(10,2)
    As I mentioned, with SQL Plus it works no matter of the number format in the data file.
    Anybody has an idea where the problem might be?
    Help is greatly appreciated,
    Roger

    Hi Joel,
    Thanks for your reply. You were right, the NLS setting for the decimal separator in SQL*Plus is a , (komma) and in Application Express a . (point).
    I suspected a NLS problem that's why I tested with different formats in the data file (4.40 4,40). Shouldn't that make a difference?
    Now, to fix it: I didn't see in Apex any NLS settings, I checked in utilities and shared components. So, the way to do that is to directly write into SQL Workshop / Apex?
    ALTER SESSION SET NLS_NUMERIC_CHARACTERS=",' "
    Cheers,
    Roger

  • Problem showing DATE data and slow history in version 3.0.02

    Hello:
    I have 2 problems with this new version:
    When I press "F8" the history works veryyyyyyyy slowwwwwww... ¿?
    Second problem:
    I have defined these preferences...
    NLS
    Date format: DD/MM/YYYY HH24:MI:SSXFF
    Hour Register format: DD/MM/YYYY HH24:MI:SSXFF
    Time Zone format: DD/MM/YYYY HH24:MI:SSXFF TZR
    When I set these preferences, the first SELECTs show the date field properly...
    But suddenly it doesn't work!!! ¿?
    I execute a SELECT like this...
    SELECT fecha from tabla where rownum<2;
    and I see
    '20/11/10'
    Where is the DD/MM/YYYY HH24:MI:SSXFF format????
    Thanks

    As said on multiple occasions, there are many History problems reported already, yet the developers stubbornly still don't want to revert to the old handling.
    I am still puzzled why they even touched the old system, which over the versions was extensively used and approved.
    As for the NLS problem, how does it reproduce? After how many executions? Can you post a script?
    Un saludo,
    K.

  • DAD-Problem

    Hi All,
    at time I use two OHS to connect to a working htmldb-Database. The "old" Apache works fine. The new one makes trouble: The browser says "The requested URL /pls/htmldb2/f was not found on this server." - whats nonsense, this DAD exsits.
    In the error-log I found a lot of: "ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 10" - so I thought a NLS-Problem. I tested different Languages and Charsets (of course the DB-one) but it doesn't work.
    Any further ideas?
    Thank's for your hints, tips!
    Ceers,
    Frank

    Did you create the DAD using the EM web site? or by manually editing the mod_plsql configuration file "$ORACLE_HOME/Apache/modplsql/conf/dads.conf"?
    After creating a DAD you will also need to restart the Oracle HTTP Server for the changes to take effect. Has this been done?

  • List of Bugs Fixed in JDev 3.2.3

    Several users requested a list of bugs addressed in JDeveloper 3.2.3. Here is a list:
    Bugs Fixed for DAC
    Infoswing Frame Could Not Be Closed. (1729167)
    Validation Methods Are Invoked During Removing Of A New Row From Gridcontrol (1727214)
    Regrn:Lov Control: All Fields In Dept Are Listed Instead Of The Selected One. (1724885)
    Regrn: List Control Unbound Once Rollback. List Control Is Empty (1723467)
    Regrn: Value For The Last Field Doesn'T Get Saved In The Database. (1723367)
    Remove The Commit/Rollback Limitation From Findpanel (1720412)
    Abm: Rowsetaccessimpl.Absolute() Does Not Check For -1 On Call To Getrangestart (1719841)
    Canceling Closing Of Infointernalframe Doesn'T Work (1718994)
    Viewlinkinfo Objects Are Not Nested Application Module Aware (1717528)
    Viewlinkinfo Objects Generate Illegal View Link Names (1717507)
    Dac Lov Controls Are Not Binding To Dataitems (1717492)
    Entity Validation Handling Problem In Dac Gridcontrol (1717482)
    Trw - Rollback Reexcutes All Queries (1715674)
    Getestimatedrowcount Is Called Unnecessarily (1709897)
    Rowsetinfo - Error Message Needs More Details (1692843)
    Nls: Translated Button Labels Are Shown As Squares In Styleeditor (1688651)
    Abm: Blank Rows Created In Grid In Mapping Wizard'S Summary Page (1680610)
    Validaterow Is Not Called If You Leave The Row From Non-Modified Column (1671182)
    Textareacontrol Color Will Be Gray Always If Run In Jdev With Jdk 1.3 (1666518)
    Qabk: Infoswing Control Dialog Box Throws Exception At The Run Time (1665341)
    Sessioninfo.Close() Does Not Close The Database Session (1664400)
    Nls Business Component Data Form Runtime Missing Translations (1652484)
    Qablk Tree Control Picks Up And Displays Only First Selected Rowset (1647498)
    Abm: Nullpointerexception Is Thrown When Detail Button Is Used In Visual Trace (1647449)
    Rowsetinfo.Publishrowset Does Not Restorec Revoked Rowset. (1640653)
    After Setting Validation To Row Level Messages Appear More Than Once. (1640604)
    Detail Row Inserted Via Entity Object Is Not Displayed Automatically. (1633778)
    Dac-106 Trying To Set Nullable Date Column To Null If A Date Format Is Used (1633564)
    Memory Leak When Closing And Reinstantiating Internal Frames (1631899)
    Issuing Rollback/Reexecute Query Resets Query Find Criteria (1631795)
    Rows Inserted In Vo Not Displayed On Gridcontrol When Rowset Is Published (1625827)
    Data In Grid Control Is Lost After Applying Filter And Performing Updates (1624068)
    Data Does Not Display In Comboboxcontrol (1623945)
    Abm: Find Button In Filter Control Should Be Default For Enter Key - Posco Issue (1584634)
    Abm: Sorting On Filtered Grid Control Clears Filter - Posco Issue (1584627)
    Last Record Is Not Displayed When Scrolling Thru A Grid Control With Jdk 1.3.0 (1583918)
    Abm: Findcontrol Gets Built Everytime The Navigation Bar Is Bound To A Dataitem. (1527169)
    Rowset.Setqueryonopen(False) Does Not Prevent The Grid From Populating Itself. (1527158)
    Find Panel Custom Editor Option Does Not Work (1511669)
    Addmasterlinkinfo -- No Such Method, Should Be Addmasterlink (1503508)
    Abm: Sql Error When Findcontrol Is Used The Second Time - Posco Issue (1477081)
    Bugs Fixed for BC4J
    Insert A Row Using "Immediate Loading" Causes Nullpointerexception (1766124)
    Apps: Jdbc Statement Not Being Closed In Viewobjectimpl.Closefreedstatements() (1765387)
    Appsjperf: Bind Indexes Changes For Different Users For Inserting/Updating Eo'S (1761569)
    Data Page: Query Form Generates Incorrect Query If Attribute Name != Column Name (1756150)
    Classcast Exception: Createviewobject() Not Returning Remote Vo Subclass In Visi (1742764)
    Samples: Tester Project Does Not Compile, Prevents Use Of Tester To Debug (1720551)
    Samples: Inserting A New Item Into The Auctions Database Fails To Insert Dbrecor (1718004)
    Samples: Bc4jauctions.Html Adding An Item To Auctions Db Instructions Has Error (1717988)
    Samples: Bc4j Auctions Sample Sign Me Up Link Throws Exception (1717967)
    Qablk: Required Libraries Are Not Included In The Bc4j Project (1714268)
    Datapage Wizard Cannot Generate Anything (1713272)
    Datapage Wizard Should Use "Iso8859_1" As Default Encoding (1705620)
    Nls: Japanese Characters Are Garbled In "Show Data As Xml" Dialog In Jbo Tester (1700430)
    Can Not Include Xml File Using Xsql:Include-Xsql (1700125)
    Nls: Error Message In Bc4j Jsp Application Is Garbaged (1695391)
    Nls:Web Bean Wizard Does Not Register Web Beans To Web Object Manager Correctly (1693941)
    Nls: Js Tab Container Web Beans Cannot Display Japanese (1690456)
    Inputdate Doesn'T Allow Field Editing By User (1689571)
    Nls:Descriptions For Some Hilo Charts Are Not Shown In Jsp Element Wizard (1684559)
    Nls: Truncated Help Button In Add Servlet Dialog Of Web Object Manager (1677201)
    Nls: Truncated Button Label For 'Reset' In Query Dialog Of Data Form Runtime (1675129)
    Wrong Tip For Js Tree Control Web Bean In Jsp Element Wizard (1673107)
    Application Pool Generates Cookies Containing Commas (1667201)
    Noclassdeffounderror When Try To Run The Tester In Three-Tier Mode. (1665040)
    Using Am In Am Pool 2nd Time (Even Times) Causes Jbo-25302 (1664901)
    Apps: Vo.Setattributeinternal Causes All The Rows To Be Brought In From Db. (1663724)
    Ora-29534/Ora-29545 When Deploying Bc4j Runtime Classes (1661861)
    Nls: Too Small List Box And Truncated List Items In Jsp Element Wizard (1660075)
    Nls: Jbo-27022 Cannot Navigate Through Japanese Data With Bc4j (1660065)
    Web Object Manager Truncated Label In Edit Webbean Dialog (1658304)
    The Datapage Wizard Does Not Generate Code To Display Each Attributes In Vo. (1656532)
    Nls: Jsp Application Runtime Missing Translations (1647710)
    Labels In An Entity View Are Not Displayed Correctly (1640869)
    Nls: Horizontal Alignment And Translation Problem In The Jsp Element Wizard(Edit (1636848)
    Nls: Instruction Of Webnew.Java File Missing Translations (1636779)
    Query Collection Shouldn'T Be Blown Away If Maxfetchsize = 0 (1634721)
    Jbo-25014 Exception For Intermedia Domains (1634452)
    Cannot Create A Viewlink Between A View In A Local Am And One In An Imported Am. (1631834)
    Apps:Rowset Interface Should Also Provide Removerowsetiterator Method (1604934)
    Extra Spaces Before ';' And Minor Typo For Visibroker In Jbo Resource Files (1585159)
    Typo In A Webobject Resource File: "Xqsl" For Xsql (1585124)
    Apps: Enhanced Stateless With Affinity Support For Viewobjects (1576128)
    An Exception Occurs When Run The Database Setup File For Bc4j (1563286)
    Apps:View Object Wizard Gives Incorrect Error Message With Invalid Extend (1562030)
    Apps: Cannot Override 'Extends' Class In The View Object Wizard (1561990)
    Ias 10210 Nt M1: Jsp Error While Going To The Online Orders Window (1554391)
    Apps: Returns No Row For A Detail Rowset Even Though Such Row Exists In Db (1554209)
    Mats: Bc4j Samples Not Working Correctly (1542381)
    Nosuchmethodexception Using Bc4j Design Time With Xml Parser 2.1.0 Beta (1527368)
    Cap Gmac: Insert Problem After Upgrading From 3.1 (1524873)
    Nls: New Xsl File Needs Output Encoding Tag (1473212)
    Createuser.Sql Needs To Be Provided To Customers (1449624)
    Ias 9i: Bc4j Installer Needs To React To 3.2 Tutorial Changes (1411505)
    Nls: Ias1.0.2 M3: Jsp Bc4j Application Cannot Insert Record (1404390)
    Bugs Fixed for JDev IDE
    Webtogo Displaying Stale Pages. (1761657)
    Nls: Datapage Application Updates Multibyte Data Incorrectly On Webtogo Server (1746080)
    Integration Or Cache Problem With Web-To-Go (1741134)
    Nls: Translated Booknotfound.Html And Nojavadoc.Html Are Not Installed (1738859)
    Nls: Html Help Cannot Be Installed With Japanese Build (1738854)
    Nls: Japanese Html Help Has Wrong Folder Structure In The Contents Tab (1737050)
    Nls: Cannot Register Servlet Using Web Object Manager (1736178)
    Nls: Import Library Utility Is Not Translated And Doesn'T Support Japanese Char (1724029)
    Repository Source Control Workarea Picker Does Not Work In Jdk 1.3 (1717231)
    Nls:Error And Warning Are Garbled In Setting Encoding Of Compiler To "Cp1252" (1716640)
    Nls: Popup Menus "Open" And "Edit With Oracle Jdeveloper" Are Not Translated (1684565)
    Qablk:Jdeveloper Crash When Opening Frame In The Ui Design Mode In Windows 2000 (1683235)
    Nls: Overtranslated Parameter Names In Created Dialog (1677246)
    Nls: Comment 'Constructor' In Application, Class, Sqlj, Beaninfo Not Translated (1677241)
    Nls:Error Message Is Different Between Locale = Us And Ja (1671222)
    Nls: Cannot Select More Than One Jar/Zip File When Adding Paths (1660130)
    Nls: Cannot Run Jsp Application Using Bc4j Created With Japanese Tables (1660019)
    Nls:Unable To Insert/Update For Bc4j Jsp Application On Ias 1.0.2.0 (1656603)
    Nls: Httpservlet Code Is Incorrect (1650724)
    Nls: All Web Object Wizards Behaviour For Character Encoding Should Be Unified (1650722)
    Nls Enterprise Javabean Wizard Truncated Translations (1645621)
    Nls: A Message 'Loading Jsp' Missing Translation In The Jsp Runtime (1636889)
    Unable To Invoke Dependency Manager (1630723)
    Incorrect Otn Link Specified In Creating_Html_Clients\Srv_Pxsqlservlet.Html (1618656)
    Must Use Thin Jdbc In Order To Solve Nls Problems With Repository Tools (1534551)
    Nls:Webtogo Doesn'T Find Jsp Pages With Japanese Names. (1477338)
    Nls:Japanese Character Corrupted When Sql*Plus Invoked From Jdeveloper (1461164)

    Hi Steve
    Many thanks for that. Could I ask that
    this kind of thing goes in the release
    readme also.
    Marc

  • Upgrade Oracle iAS 9.0.4.1 JDBC Driver to 9.2.0.8

    Hi,
    I'm using Oracle Application Server 10g R1 (9.0.4.1) for a JDBC application that connects to an Oracle 9.2.0.7 Database.
    Due to some NLS problems with JDBC connections which are out of the scope of this posting, I need to upgrade the JDBC Driver of iAS 9.0.4.1 to the latest JDBC Driver, closest to my database full version. Since there is no 9.2.0.7 JDBC Driver set, I downloaded the 9.2.0.8 JDBC Driver files for Java JRE 1.4 which is the jdk/jre of the iAS 9.0.4.1.
    This set though, contains files ojdbc14.jar, ojdbc14_g.jar and ocrs12.jar and NOT the JDBC Driver files that are found in the ORACLE_HOME\jdbc\lib path of the iAS 9.0.4.1., and of course, replacing the existing with the new ones, does not work (does not update the JDBC Driver on the server).
    How can this upgrade be archived?
    Is anyone aware of the documented JDBC upgrade procedure for Oracle iAS 9.0.4.1, to driver version 9.2.0.8?
    Why there is no classes12.zip or classes12.jar distribution in the JDBC driver 9.2.0.8 set?
    Thank you

    JspServlet: unable to dispatch to requested page: Exception:java.lang.UnsupportedClassVersionError: wfrecruit/WFRequisition (Unsupported major.minor version 49.0)
    Application is compiled with a JDK version and run with another version of JDK.
    Compile and run application with same version of JDK.

Maybe you are looking for

  • How do you make a bootable install partition from a disk image of an install disk.

    I have an iMac g4 running Leopard and would like to install OS X 10.3 on a different partition Leopard is on. However the super drive in the iMac will not read the disk I have, so I used my MacBook Pro to make a disk image of the install disk to use

  • Yahoo mail keeps going offline

    I updated my yahoo password the other day. Ever since then my yahoo mail (through imac mail app)  has been going offline. I can not send messages using my imac.  I should note that I do not have any issues signing into yahoo.com and sending/ receivin

  • Cut off some data from a set of data

    I have a set of data our of from power spectral density measurement. I want to curve fitting with the data. But I want to cut off below a certain frequency.  For instance, the PSD data contains {(1,10),(2,3),(3,4),(4,3),...} and I want to fit from 3

  • Problem to extract data using DS 2LIS_11_VAHDR & 2LIS_11_VAITM

    Hello Experts, my requirement is to extract the SD sales Item & sales header data int BI.  while executing the Reports in BI  I find some incosistencies in data Ex:  for for some Sales organizations         0CRM_NUMDOC = 17 and the corresponding   0N

  • Close accordion spry when clicked

    Hello all.. I have visited: http://labs.adobe.com/technologies/spry/samples/accordion/AccordionSample.html#Programatic OpenAndClose for help on how to close an accordion spry when it is clicked. However, I don't want to have to have a link that says