Apex in native Dutch

Hi,
Are there any plans to privide a fulll Dutch Apex version? Currently Apex is only translated to the following languages:
de
en
es
fr
it
ja
ko
pt-br
zh-cn
zh-tw
Cheers,
Joep

It's likely that your NLS_LANG environment variable was not set properly, prior to staring SQL*Plus and running load_fr.sql.  Please see section 3.3.11.1 at http://docs.oracle.com/cd/E37097_01/doc/install.42/e35123/otn_install.htm#BABBHFGD.
I hope this helps.
Joel

Similar Messages

  • Apex 4.02 dutch translation

    Hi,
    not sure where to post this but I think this should work.
    Just spend a day translating all the apex strings for forms and interactive reports to Dutch and made a small proc to install this to any application you like. Nothing fancy but it saves you from getting RSI. it's based on a translation table which you can easily edit and deploy to the wanted app.
    If anybody is in need of these translations just pm me, saves you a lot of time(waisting) since it does not seem to be available out of the box.
    Cheers
    Bas

    Hi there,
    We are using apex 4.0.2.00.07 as well and I'm looking for a translation as well. I will appriciate if you could send the translation to jdezwart(at)roczeeland(dot)nl
    Thanks in advance,
    Jacco
    PS. perhaps we could team up to keep the translation to Dutch allive.
    Edited by: J. de Zwart on Jun 16, 2011 8:57 AM
    Edited by: J. de Zwart on Jun 16, 2011 8:57 AM

  • Apex and mysql

    Hi,
    Since now mysql is part of Oracle, will apex support mysql database in the future?
    That will be interesting.
    Peter

    Hello,
    Since now mysql is part of Oracle, will apex support mysql database in the future?Couldn't you apply almost the same argument to every feature of the Oracle database? Such as RMAN, Transportable Tablespaces...even SQLPlus (e.g. can you connect to a MySQL DB using SQLPlus?).
    Utimately though...why have MySQL if you just turn it into the Oracle DB?
    Today you can already insert,update and delete data from your MySQL database using a database link from your Oracle database so I'm not sure what the benefit of the effort of making APEX work natively in MySQL would be (as opposed to using Oracle XE, which is free and simply connecting it to your MySQL DB using a database link?).
    FYI - you might find my blog post related to this interesting (but please bear in mind the date I wrote it :) -
    http://jes.blogs.shellprompt.net/2008/04/01/apex-ported-to-mysql-and-sqlserver/
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.sumneva.com (formerly http://www.apex-evangelists.com)
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • FindText doesn't work in Acrobat X

    I have installed the Adobe Acrobat software development kit and until the Acrobat 9 the FindText function works correctly.
    With Acrobat X (last update 10.1.3) the FindText doesn't work.
    When you solve this malfunction? Is it possible to have a valid alternative?
    Thanks in advance.
    PS. This issue is similar to the following:
    http://forums.adobe.com/thread/826756
    http://forums.adobe.com/message/3762837

    I have the same problem, looks like a bug to me...
    I did found a workaround, although it's much slower. (Especially if you don't have the start page number)
    The code exists of a class and a module. It will need to be adjusted for your own usage...
    Hope it can help you...
    Sorry for type faults (Native dutch speaking)
    Module:
    Option Compare Database
    Option Explicit
    Public clsFind As clsAcroFind
    'Call on form load
    Public Sub SetClass()
        Set clsFind = New clsAcroFind
        clsFind.AcroApp_Init
        clsFind.AcroPDDoc_Init
    End Sub
    'Call on form unload/close
    Public Sub UnloadClass()
        If Not clsFind Is Nothing Then
            clsFind.AcroPDTextSelect_Unload
            clsFind.AcroAVDoc_Close
            clsFind.AcroAVDoc_Unload
            clsFind.AcroPDDoc_Close
            clsFind.AcroPDDoc_Unload
            clsFind.AcroApp_Close
            clsFind.JSO_Unload
            Set clsFind = Nothing
        End If
    End Sub
    'Find and highlight text in PDF
    Public Function FindTextInPDF(ByRef frm As Form)   
        If clsFind Is Nothing Then
            Call SetClass
        ElseIf clsFind.AcroApp Is Nothing Then
            clsFind.AcroApp_Init
            clsFind.AcroPDDoc_Init
        End If
        clsFind.SearchText = 'Your search text
        clsFind.PageNr =  'Your start page number
        If clsFind.Initialised = True Then
            If clsFind.FileName <> FileName Then
                clsFind.AcroAVDoc_Close
                clsFind.AcroPDDoc_Close
                clsFind.FileName = 'Your PDF filename
                clsFind.Path =  'Your PDF full path (incl. filename)
                If clsFind.CheckPath = True Then
                    clsFind.AcroPDDoc_Open
                    clsFind.AcroAVDoc_Open
                Else
                    MsgBox "File not found:" & vbCrLf & clsFind.Path, vbExclamation
                    Exit Function
                End If
            End If
        Else
            clsFind.FileName = 'Your PDF filename
            clsFind.Path =  'Your PDF full path (incl. filename)
            If clsFind.CheckPath = True Then
                clsFind.AcroPDDoc_Init
                clsFind.AcroPDDoc_Open
                clsFind.AcroAVDoc_Open
            Else
                MsgBox "File not found:" & vbCrLf & clsFind.Path, vbExclamation
                Exit Function
            End If
        End If
        clsFind.JSO_Init
        clsFind.FollowInPDF
    End Function
    Class: (clsAcroFind)
    Option Compare Database
    Option Explicit
    Private cPath As String
    Private cFileName As String
    Private cSearchText As String
    Private cPageNr As Integer
    Private cInitialised As Boolean
    Private cAcroApp As Acrobat.cAcroApp
    Private cAcroPDDoc As AcroPDDoc
    Private cAcroAVDoc As AcroAVdoc
    Private cAcroRect As AcroRect
    Private cAcroPDTextSelect As AcroPDTextSelect
    Private cJSO As Object
    '********************************************** Properties **********************************************
    Public Property Get Path() As String
        Path = cPath
    End Property
    Public Property Let Path(val As String)
        cPath = val
    End Property
    Public Property Get FileName() As String
        FileName = cFileName
    End Property
    Public Property Let FileName(val As String)
        cFileName = val
    End Property
    Public Property Get SearchText() As String
        SearchText = cSearchText
    End Property
    Public Property Let SearchText(val As String)
        cSearchText = val
    End Property
    Public Property Get PageNr() As String
        PageNr = cPageNr
    End Property
    Public Property Let PageNr(val As String)
        cPageNr = val
    End Property
    Public Property Get Initialised() As Boolean
        Initialised = cInitialised
    End Property
    '********************************************** Properties **********************************************
    '********************************************** Object Set **********************************************
    Public Property Get AcroApp() As Acrobat.cAcroApp
        Set AcroApp = cAcroApp
    End Property
    Public Sub AcroApp_Init()
        Set cAcroApp = CreateObject("AcroExch.App")
    End Sub
    Public Sub AcroApp_Close()
        If Not cAcroApp Is Nothing Then
            cAcroApp.Exit
            Set cAcroApp = Nothing
        End If
    End Sub
    Public Sub AcroPDDoc_Init()
        Set cAcroPDDoc = CreateObject("AcroExch.PDDoc")
    End Sub
    Public Sub AcroPDDoc_Open()
        cAcroPDDoc.Open cPath
        cInitialised = True
    End Sub
    Public Sub AcroPDDoc_Close()
        If Not cAcroPDDoc Is Nothing Then
            cAcroPDDoc.Close
        End If
        cInitialised = False
    End Sub
    Public Sub AcroPDDoc_Unload()
        Set cAcroPDDoc = Nothing
    End Sub
    Public Sub AcroAVDoc_Open()
        Set cAcroAVDoc = cAcroPDDoc.OpenAVDoc(cFileName)
        While cAcroAVDoc Is Nothing
            Set cAcroAVDoc = cAcroApp.GetActiveDoc
        Wend
        cAcroAVDoc.BringToFront
        cAcroAVDoc.Maximize 1
    End Sub
    Public Sub AcroAVDoc_Close()
        If Not cAcroAVDoc Is Nothing Then
            cAcroAVDoc.Close True
        End If
    End Sub
    Public Sub AcroAVDoc_Unload()
        Set cAcroAVDoc = Nothing
    End Sub
    Public Sub AcroPDTextSelect_Unload()
        Set cAcroPDTextSelect = Nothing
    End Sub
    Public Sub JSO_Init()
        Set cJSO = cAcroPDDoc.GetJSObject
    End Sub
    Public Sub JSO_Unload()
        Set cJSO = Nothing
    End Sub
    '********************************************** Object Set **********************************************
    '********************************************** Functions ***********************************************
    Public Function CheckPath() As Boolean
        If Dir(cPath, vbNormal) = "" Then
            CheckPath = False
        Else
            CheckPath = True
        End If
    End Function
    Public Sub FollowInPDF()
        Dim oAcroRect As AcroRect
        Dim arr() As String
        Dim arrQ As Variant
        Dim bFound, Gevonden As Boolean
        Dim j, k, page, nwords As Integer
        On Error GoTo ErrorHandler
        arr = Split(cSearchText, " ")
        If cJSO Is Nothing Then
            Call AcroApp_Init
            Call AcroPDDoc_Init
            Call AcroPDDoc_Open
            Call AcroAVDoc_Open
            Call JSO_Init
        End If
        '**************************** In Case a page nr was given ****************************
        If cPageNr <> 0 Then
            page = cPageNr
            nwords = cJSO.getPageNumWords(page)
            For j = 1 To nwords - 1
                Gevonden = True
                For k = 0 To UBound(arr)
                    If cJSO.getPageNthWord(page, j + (k - 1)) <> Left(arr(k), Len(cJSO.getPageNthWord(page, j + (k - 1)))) Then
                        Gevonden = False
                    End If
                Next
                If Gevonden = True Then
                    arrQ = cJSO.getPageNthWordQuads(page, j)
                    Set oAcroRect = CreateObject("AcroExch.Rect")
                    oAcroRect.Left = 'Set left rectagle boundery
                    oAcroRect.Right =  'Set right rectagle boundery
                    oAcroRect.Top = arrQ(0)(1)
                    oAcroRect.Bottom = arrQ(0)(5)
                    Set cAcroPDTextSelect = cAcroPDDoc.CreateTextSelect(page, oAcroRect)
                    If Not cAcroPDTextSelect Is Nothing Then
                        cAcroAVDoc.SetTextSelection cAcroPDTextSelect
                        cAcroAVDoc.ShowTextSelect
                    Else
                        MsgBox "Not Found!", vbExclamation
                    End If
                    GoTo Finalize
                End If
            Next
        End If
        '**************************** In Case the pagenr was given ****************************
        '***** In Case the pagenr was absent or the searchtext wasn't found on given page *****
        For page = 1 To cAcroPDDoc.GetNumPages - 1
            nwords = cJSO.getPageNumWords(page)
            For j = 1 To nwords - 1
                Gevonden = True
                For k = 0 To UBound(arr)
                    If cJSO.getPageNthWord(page, j + (k - 1)) <> Left(arr(k), Len(cJSO.getPageNthWord(page, j + (k - 1)))) Then
                        Gevonden = False
                    End If
                Next
                If Gevonden = True Then
                    arrQ = cJSO.getPageNthWordQuads(page, j)
                    Set oAcroRect = CreateObject("AcroExch.Rect")
                    oAcroRect.Left = 'Set left rectagle boundery
                    oAcroRect.Right =  'Set right rectagle boundery
                    oAcroRect.Top = arrQ(0)(1)
                    oAcroRect.Bottom = arrQ(0)(5)
                    Set cAcroPDTextSelect = cAcroPDDoc.CreateTextSelect(page, oAcroRect)
                    If Not cAcroPDTextSelect Is Nothing Then
                        cAcroAVDoc.SetTextSelection cAcroPDTextSelect
                        cAcroAVDoc.ShowTextSelect
                    Else
                        MsgBox "Not Found!", vbExclamation
                    End If
                    GoTo Finalize
                End If
            Next
        Next
        '***** In Case the pagenr was absent or the searchtext wasn't found on given page *****
        MsgBox "Item not found!", vbExclamation
        GoTo Finalize
    ErrorHandler:
        MsgBox Err.Description
    Finalize:
        Set oAcroRect = Nothing
    End Sub
    '********************************************** Functions ***********************************************

  • Acrobat 8 Auto Translate to Japanese from English Web Page

    Every time I try to create a printed page and save as a PDF the PDF distiller creates a Webpage that is half english (the HTML portion) and the Form data is published ine Japanese. Does anyone know how to correct this issue. This is a particular issue since I try to all payment confirmations from any purchase webpage to my showing payments made and confirmed. Hell I do not even have Japanese fonts installed on my machine? I would love to show examples but the info has private information on it. Any clues?

    Hello,
    >> I want to change language of my applixcation from english to Chinees and Chinees to english.
    The APEX environment natively supports two Chinese languages/dialects: Simplified Chinese and Traditional Chinese. Did you install the one match your needs, as described in the following?
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21673/otn_install.htm#BEHJICEB
    >> ¿¿¿ ¿¿¿
    This sign typically appears when the database character set doesn’t support the language you are trying to store in it. Is your database character set supports Chinese?
    A bit more information on your APEX environment – versions of both APEX and database, Web server etc., can also help understand your situation.
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • Acrobat Pro: Öffnen der Vollversion nach Testversion nicht möglich??

    Hi,
    kann mir bitte jemand helfen, bevor ich die Nerven verliere?
    Ich hatte die Acrobat Pro Testversion, nach Ablauf nun die Vollversion (Teacher and Students) erworben. Download erfolgreich, aber das Öffnen des Programms nicht möglich. Es wird immer das Fenster der Testversion geöffnet, wo steht, ich solle mich anmelden. Das funktioniert aber nicht, weil keine Internetverbindung hergestellt werden kann, obwohl die Verbindung einwandfrei funktioniert??
    BITTE UM HILFE!!
    DANKE!!

    Hi Danke,
    Om het proces te converteren naar volledige versie die u nodig hebt om het gekochte serienummer in te voeren.
    Als u krijgt 'geen verbinding met internet' fout was, dan verwijzen wij u de KB: http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    Opmerking: Dit is een Engels forum. Voor autochtone nederlandse gebruikers vriendelijk post de query's in onze internationaal Deutshe Forums: http://forums.adobe.com/community/international_forums/deutsche
    < Translated via Google Translate >
    Hi Danke,
    To convert the trial to full version you need to enter the purchased serial number.
    If you are getting 'unable to connect to internet' error then please refer the KB : http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    Note : This is an English Forum. For native dutch users kindly post the queries in our internation Deutshe Forums :http://forums.adobe.com/community/international_forums/deutsche

  • How to switch language on new Speak Screen in ios 8

    The new Speak screen in iOS 8.0.2 is a very nice feature, but I am missing one element.
    Is it possible to switch the language while reading?
    I am native dutch speaking and my iOS system is in dutch. However when I have some text in english it happens that the system reads it in dutch.
    Several examples:
    - Reading in the iBooks App, suddenly the new page is read in dutch (see screenshot)
    - Sometimes there are texts fragments in another language. In this case switching to another language would be necessary.

    Chris: Thanks for the response. Is there any way you can set up to keep banners up until you dismiss them or will they always disappear? I love my alerts, I just don't like it that I can't go directly to the app anymore..

  • Native Compilation of Apex code

    Has anyone tried natively compiling all of the Apex packages, procedures and functions?
    For example, to natively compile WWV_FLOW (with DBA privileges):
    <ul>
    <li>ALTER SESSION SET PLSQL_CODE_TYPE='NATIVE' ;</li>
    <li>ALTER PACKAGE FLOWS_030100.WWW_FLOW COMPILE ;</li>
    </ul>
    We've recently done just this on a test installation (Apex 3.1, Oracle 10g) and have found that Apex runs significantly faster. Before we consider implementing in production, I was wondering if anyone has also tried this and whether they came across any problems?
    Kevan
    Edited by: KGelling2 on Oct 30, 2008 2:24 PM

    Hello,
    I've only ever come across one other person who has mentioned doing that, he mentioned that he got performance improvements too although didn't qualify them. What sort of improvements are you seeing?
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Using native APEX on 11gR2 RAC

    Hi all,
    I'm not sure if this is the right forum for this question, please forgive me if it isn't.
    When using native APEX on 11gR2 RAC, is it possible to balance connections between instances ? If yes, how ?
    I've successfully installed 11gR2 RAC, and configured APEX, and I'm able to use it, but it runs on one instance only.
    Thanks in advance
    Antoine

    Hi Antoine,
    How are you connecting to the database, via the Apache HTTP Server mod/plsql connector or are you using the embedded PL/SQL gateway (EPG)?? In the first case connecting to the SCAN listener should balance the connections between the instances if they are both registered for the service you connect to. I'm not sure how the EPG works under RAC. In general, I'd prefer the application to only connect to one of the RAC instances by default and only transfer across due to failover.
    Rob..

  • Apex Native PLSQL Compile?

    Hi
    I am considering changing my databases to native PLSQL compilation..
    Reading Joels Blog from 2009.. it was good... but had issues
    http://joelkallman.blogspot.co.nz/2009/02/make-all-of-your-apex-applications-run.html
    But that was 2009.. and we now have Oracle 11.2..
    Does anyone recommend moving to Native compilation at database level?
    Thanks
    Dean

    Refer following blog
    http://abakalidis.blogspot.in/2009/04/oracle-11g-switching-to-native.html
    regards,
    PARS

  • Native non English application

    Hi,
    We are developping an apex aplication which is for only a Dutch audience.
    Since Apex is not available in Dutch yet, a lot of the default strings and messages are in English.
    What do we need to do? Do we have to develop the whole application in English and translate afterwards the complete app to Dutch? That seems like a waste of time since there are nog English users.
    Or do we need to set de standard app language to Dutch and develop the app in Dutch? But how do we than translate the standard English messages to are built in?
    Thanks for any advice!
    Joep

    Hello Joep,
    >> We are developping an apex aplication which is for only a Dutch audience.
    When developing APEX applications you should distinguish between the development environment – the APEX Application Builder – and your application. Within your application, you should distinguish between text messages that are used internally by the APEX engine and all the other message text strings that are part of your UI.
    As the Application Builder does not natively support Dutch, the development can be made using English (or any of the other 9 languages natively supported by APEX).
    As for your application, as you are targeting Dutch audience only, you don’t have to use the full APEX translation mechanism (which allows you to use a single business logic with multi-lingual UIs) and you can use Dutch strings wherever you are allowed to feed a UI string – item labels, error/success messages, report headers, etc.
    However, where internal APEX engine string messages are concerned, you need to translate those into Dutch, using the mechanism explained in the following:
    http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/global.htm#BABHCAAH
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • Apex Application inserting into two tables from two regions in a page

    Hey Guys,
    Fairly new to apex like two days. So please bare with me. I am using apex 4.0.2.00.07.
    I have a page with two regions. The first region has only one row and I have no problems accessing it and inserting those values into the table this is what I used to access one column from that one row APEX_APPLICATION.G_F03(1)
    The second region is an interactive report, to which I have managed to add a checkbox and a textbox.
    1)So if a checkbox has been checked off the row should be inserted
    2) if the textbox has been entered it should replaceone of the values.
    My question is how to access the second region? I started a loop based on the rows in the collection but that is as far as I got.
    FOR idx IN 1..l_collectionTable_name
    loop
    end loop
    Any help would be greatly appreciated?
    Thank you
    Edited by: Aj05 on Aug 2, 2012 2:10 PM

    Hi Phil I used the following code
    <cfquery name="qArrivalDates" datasource="rayannesql">
    SET NOCOUNT ON
    INSERT INTO booking (book_made, book_checkin_date,
    book_checkout_date, book_adults, book_children)
    VALUES('#FORM.book_made#','#FORM.book_checkin_date#','#FORM.book_checkout_date#','#FORM.bo ok_adults#','#FORM.book_children#')
    SELECT SCOPE_IDENTITY() AS theNewId;
    SET NOCOUNT OFF
    </cfquery>
    <cfquery name="qArrivalDates" datasource="rayannesql">
    INSERT INTO Customer( firstname, lastname, address, address2,
    city, state, postalcode, country, phone, mobile, email, notes)
    Values (#qArrivalDates.theNewId# '#FORM.firstname#',
    '#FORM.lastname#', '#FORM.address#', '#FORM.address2#',
    '#FORM.city#', '#FORM.state#', '#FORM.postalcode#',
    '#FORM.country#', '#FORM.phone#', '#FORM.mobile#', '#FORM.email#',
    '#FORM.notes#' )
    </cfquery>
    When I tried to complete the form, I got the following error
    Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Microsoft][SQL Native Client][SQL Server]Incorrect syntax
    near 'Fred'.
    The error occurred in
    C:\Inetpub\wwwroot\rayanne\customerinsertsql.cfm: line 16
    14 : <cfquery name="qArrivalDates"
    datasource="rayannesql">
    15 : INSERT INTO Customer( firstname, lastname, address,
    address2, city, state, postalcode, country, phone, mobile, email,
    notes)
    16 : Values (#qArrivalDates.theNewId# '#FORM.firstname#',
    '#FORM.lastname#', '#FORM.address#', '#FORM.address2#',
    '#FORM.city#', '#FORM.state#', '#FORM.postalcode#',
    '#FORM.country#', '#FORM.phone#', '#FORM.mobile#', '#FORM.email#',
    '#FORM.notes#' )
    17 : </cfquery>

  • Apex Listener : Servlet error

    Hello,
    I have installed Apex Listener.1.0.2.238.15.24 on Oracle Containers for J2EE 10g standalone (10.1.3.1.1)
    I have got this error whn trying to cofgure listener and create connection to database
    12/12/31 14:39:27.625 apex: Servlet error
    ava.lang.IllegalAccessError: class oracle.jdbc.driver.$Proxy6 cannot access its superinterface oracle.jdbc.driver.ScrollRsetStatement
         at java.lang.reflect.Proxy.defineClass0(Native Method)
         at java.lang.reflect.Proxy.getProxyClass(Proxy.java:504)
         at java.lang.reflect.Proxy.newProxyInstance(Proxy.java:581)
         at oracle.ucp.jdbc.proxy.CallableStatementProxyFactory.createCallableStatementProxy(CallableStatementProxyFactory.java:64)
         at oracle.ucp.jdbc.proxy.ConnectionProxyFactory.proxyInvokeAfterTargetInvoke(ConnectionProxyFactory.java:154)
         at oracle.ucp.jdbc.proxy.JDBCConnectionProxyFactory.invoke(JDBCConnectionProxyFactory.java:266)
         at $Proxy0.prepareCall(Unknown Source)
         at oracle.dbtools.apex.OWA.getStatement(OWA.java:425)
         at oracle.dbtools.apex.OWA.resetSession(OWA.java:181)
         at oracle.dbtools.apex.ModApex.close(ModApex.java:143)
         at oracle.dbtools.apex.ModApex.doGet(ModApex.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:619)
    Any idea ???

    Hello,
    sorry for the late reply.
    I have installed Apex Listener.1.0.2.238.15.24 on Oracle Containers for J2EE 10g standalone (10.1.3.1.1) That's a pretty old version of OC4J, and a pretty old one of APEX Listener, too. Is there any reason for not choosing a more recent release?
    Despite that, your OC4J might also be using an unsupported (and outdated) Java version. APEX Listener needs at least a JDK 1.6 Update 20.
    Please check whether your OC4J is using an appropriate JDK.
    -Udo

  • Problem with apex listener install on Oracle Application Express 4.2.3

    I have installed Oracle Application Express 4.2.3
    Then i tried to install apex listener  Oracle APEX Listener 2.0.5
    but it dos not work.
    I ask
    It is possibile to install  WebLogic Server 12c or 11c
    and connect it to apex ??

    Hi;
    Please check Deploying Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite Release 12 [ID 393931.1] and compare it wiht your steps
    Regard
    Helios

  • Hello, I have a Dutch bought iMac but live in Sweden my ID will not allow me to shop in Itunes  and this confuses me, my iTunes is in Dutch, but my Swedish Itunes ID and Apple ID does not work in the Dutch store...only thing I wnat to do is to be able to

    Hello everybody,
    I bought my iMac in Holland in 2009 but I live in Sweden, I made an Apple id here and it works for the Apple Store, but it doesn't work with Itunes as I have my itunes in Dutch of course and am right away transferred to the Swedish iTunes and am told I can't buy music because I live in Sweden and am directed to itunes sweden on top of that I am not such a Swedish speaking or reading person and now I am stuck:(, I can't do anything with music and such, does anyone of you out there know how to solve this problem?
    It's a worldwide problem because as soon as a site knows your ipaddress it right away transfers you to the site in the country you live in, idiotic to my view, we have open borders, many people living in countries that they were not born in, many prefering to have their computers in their native language and then meet problems!
    Have a nice day/evening all:)
    greetings from
    Gonda

    Gonda...
    Not just a language issue...
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store. You can use the iTunes Store in all countries of which you’re a resident, but you’ll either need a separate iTunes Store account for each one, or you’ll need to continually be switching your billing information on your single account. Generally, it’s simpler just to set up an alternative account for these situations."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article

Maybe you are looking for

  • FCP shuts down when trying to import

    I recently upgraded from standard definition to high def by purchasing a sony HDR-FX7 video camera. i adjusted all my final cut pro presets in the audio/video preset menu in accordance with m owners manuel. however. now when i try to do log and captu

  • Finding proper import settings

    I have been having a problem with my audio not lining up with my video when I export a project.  From reading some forum posts here it seems like it may be import settings causing the problem but I have no idea how to select the proper import setting

  • HELP!!!!!  FCP won't read project!

    Alright. Here is the synopsis of my problem: I was having trouble with Soundtrack Pro: stalling, extremely long process times, unexpectedly closing etc... I was told to delete Soundtrack Pro and to reinstall it. So, I deleted Soundtrack Pro from my A

  • 10g vs 11g: VO bind variable values stale on jbo.ampool.doampooling = false

    Hi gang (JDev 11g Build 5188) I'm currently doing some testing as recommended by the Fusion 11g Guide to test the ADF BC state management with jbo.ampool.doampooling = false (see sections 36 and 37). I'm seeing different behaviour under 11g vs 10g. I

  • Erreur -19050 lors de la compilation avec Deployment Utility/TestStand

    Bonjour à tous, Je souhaite créer un exécutable incluant des séquences TestStand avec des VIs Labview. Je suis tombé sur l'outil Deployment Utility qui a l'air de correspondre à ce que je souhaite faire. J'ai donc essayer de construire un installateu