APEX Webcam Plugin

Dear Experts,
I have done the following:
1. Imported the APEX Webcam Plugin that I had downloaded from APEX Webcam Plugin by Damien Antipa
2. Added a new page region . The type of this region was the  webcam plugin.
3. Modified the PL/SQL execution to insert the BLOB into my custom table.
My application is suppose to be working as shown in this demo http://apex.oracle.com/pls/apex/f?p=daplugins:1:0:::::
But right now it is throwing a pl/sql error in my page :
Error in PLSQL code raised during plug-in processing. ORA-06550: line 199, column 47: PLS-00306: wrong number or types of arguments in call to 'NETHEAD_WEBCAM_EXT_RENDER' ORA-06550: line 199, column 1: PL/SQL: Statement ignored
Technical Info (only visible for developers)
is_internal_error: true
apex_error_code: WWV_FLOW_PLUGIN.RUN_PLSQL_ERR
ora_sqlcode: -6550
ora_sqlerrm: ORA-06550: line 199, column 47: PLS-00306: wrong number or types of arguments in call to 'NETHEAD_WEBCAM_EXT_RENDER' ORA-06550: line 199, column 1: PL/SQL: Statement ignored
component.type: APEX_APPLICATION_PAGE_REGIONS
component.id: 29947388611973657917
component.name: webcam
error_backtrace: ORA-06512: at "SYS.DBMS_SYS_SQL", line 1926 ORA-06512: at "SYS.WWV_DBMS_SQL", line 1065 ORA-06512: at "SYS.WWV_DBMS_SQL", line 1091 ORA-06512: at "APEX_040200.WWV_FLOW_DYNAMIC_EXEC", line 832 ORA-06512: at "APEX_040200.WWV_FLOW_PLUGIN", line 1058
Thanks in advance
Regards,
Madonna

Hi Anoush,
are you using the most recent version of the notification plug-in (version 1.3)? Because almost two years ago we fixed that bug. From the release notes
v1.3 (24-Nov-2011)
-) Fixed issue with CSS files that caused underlying Application Express session to be invalidated
I think that covers your problem. Just download and update the plug-in and you should be good.
regards
patrick

Similar Messages

  • After the most recent iPhoto update, I keep getting the following error: "iPhoto quit unexpectedly while using the Sonix SN9c201 webcam plugin."  This seems to happen after *every* iPhoto update.  Is there a fix on the way?

    After the most recent iPhoto update, I keep getting the following error: "iPhoto quit unexpectedly while using the Sonix SN9c201 webcam plugin."  This seems to happen after *every* iPhoto update.  Is there a fix on the way?

    As you can see below, when I right click, I have no such option.  In the User Account Settings, I'm operating as the "System Administrator".
    Any other suggestions?

  • Apex Notification plugin fire to specific users page

    i have IR page, how can i send the notification to specific user with particular row or any reference column value/heading.also revert back to creater with replied massage.these users are using same application with same IR page from LAN.
    What i did in notification plug-in.
    download notification plug-in
    crate dynamic action
    Even: click
    *Selection Type :button
    *button name: send alert to user
         True Actions
    *action;[notification plug-in]
    Settings
    *Title: test
    *text: test body
    *delay:2 secthis is fired in my page ,but i need this notification in another user which is i defined in select list and click the button( send alert to user)
    Its achievable experts please share your idea!
    Thanx ,
    Ram

    Ram
    What exactly do you mean?
    1) Does the dynamic action only be fired if a specific is loged id and using the page the dynamic action is located.
    This is what the plugin is intented for and a condition will do what you want.
    2) Or user A is using the application and triggers the dynamic action and then user B sees a message when using the same application but on a different computer.This involves much more than a dynamic action.
    Something much sent a message to the server. On the server a message is generated adressed to user B. On the application a process is listening to the server for messages adresses to the user that is loged in.
    Nicolette

  • Finding Sonix SN9C201 WebCam plugin

    Ok like a lot of people I just bumped into this glitch today. this plugin crashes iTunes. Doing a search on the mac for the plugin uncovers NOTHING. The finder cannot find this plugin no matter how I search for it, visible, invisible etc. yet google apparently can and a quick search tells me the plugin is in the quicktime folder, YUP, there it is, remove it and iTunes no longer crashes. It was installed recently when I updated my Skype.
    So my question is, why can't the finder find it ?

    The latest updates have taken care of this. 

  • How to save pdf in APEX 3.0

    is there a way to save the pdf output into APEX database in ver 3

    Hi,
    based on Marc's suggestion to use UTL_HTTP to get the PDF I played around a little bit. But I didn't try to directly communicate with the report server which would require to send and XML stream which I would have to generate, I took a shortcut and thought why shouldn't APEX do the hard work :-)
    1) Create a table with a BLOG, eg.
    CREATE TABLE TESTPDF (PDF_REPORT BLOB);2) Set the "Static ID" region property to a value.
    3) Load the below procedure into your application schema
    3) Call the procedure getPDF in one of your page processes.
    CREATE OR REPLACE PROCEDURE getPDF
      ( pStaticRegionId IN VARCHAR2
    IS
        vRegionId  APEX_APPLICATION_PAGE_REGIONS.REGION_ID%TYPE;
        vReportURL VARCHAR2(255);
        vBlobRef   BLOB;
        vRequest   Utl_Http.req;
        vResponse  Utl_Http.resp;
        vData      RAW(32767);
    BEGIN
        -- get internal region id of the report region
        SELECT REGION_ID
          INTO vRegionId
          FROM APEX_APPLICATION_PAGE_REGIONS
         WHERE APPLICATION_ID = Apex_Application.g_flow_id
           AND PAGE_ID        = Apex_Application.g_step_id
           AND STATIC_ID      = pStaticRegionId
        -- build URL to call the report
        vReportURL := 'http://apex.oracle.com/pls/otn/f?p='||
                      Apex_Application.g_flow_id      ||':'||
                      Apex_Application.g_step_id      ||':'||
                      Apex_Application.g_instance     ||':'||
                      'FLOW_XMLP_OUTPUT_R'||vRegionId||'_en';
        -- get the blob reference
        INSERT INTO TESTPDF
          ( PDF_REPORT
        VALUES
          ( Empty_Blob()
        RETURNING PDF_REPORT INTO vBlobRef;
        -- get the pdf file from APEX by simulating a report call from the browser
        vRequest := Utl_Http.begin_request(vReportUrl);
        Utl_Http.set_header(vRequest, 'User-Agent', 'Mozilla/4.0');
        vResponse := Utl_Http.get_response(vRequest);
        LOOP
            BEGIN
                -- read the next junk of binary data
                Utl_Http.read_raw(vResponse, vData);
                -- append it to our blob for the pdf file
                Dbms_Lob.writeAppend
                  ( lob_loc => vBlobRef
                  , amount  => Utl_Raw.length(vData)
                  , buffer  => vData
            EXCEPTION WHEN Utl_Http.END_OF_BODY THEN
                EXIT; -- exit loop
            END;
        END LOOP;
        Utl_Http.end_response(vResponse);
    end getPDF;Haven't really be able to test the code with a real APEX report, because apex.oracle.com doesn't allow to load a page which references utl_http and I don't have access to another APEX instance right now. But I have tested that the utl_http code and the storage into the blob works with some other URL.
    So if anybody could try out...
    BTW, the above code should only be used as an example. I would suggest to pass the BLOB reference as parameter to the procedure and not do the insert directly in the procedure. That way you can use it for several different applications/tables.
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • Problem with instation APEX ..........

    Hello,
    When i am trying to install Oracle Database 10g Express Edtion I am getting this operationg system error :
    <the system is noth at the correct service pack level for installing oracle database 10g Express Edition>
    anybody faced this problem or this issue before ,
    Thanks in advance ,
    Ahmed

    Hi Ahmed,
    that seems to be a Oracle XE installation problem and not an APEX one. It's better to ask that question in the dedicated Oracle XE forum.
    But based on your error message I would assume that your Windows operating system patch level doesn't comply to the minimum requirements. Check the installation/readme of Oracle XE for the minimum system requirements.
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • APEX - New Installation - Pages not displaying correctly

    I installed APEX 3.0.1 on my XP machine, which also has Oracle Enterprise 10.2.0.1 installed. I checked the installation log - no errors.
    I performed the following to get it working via the Embedded PL/SQL Gateway:
    begin
    dbms_xdb.sethttpport(8080);
    end;
    alter user anonymous account unlock;
    begin
    dbms_epg.create_dad('APEX','/apex/*');
    dbms_epg.set_dad_attribute('APEX','database-username','ANONYMOUS');
    dbms_epg.set_dad_attribute('APEX','default-page','apex');
    dbms_epg.set_dad_attribute('APEX','document-table-name','wwv_flow_file_objects$');
    dbms_epg.set_dad_attribute('APEX','document-path','docs');
    dbms_epg.set_dad_attribute('APEX','nls-language','american_america.al32utf8');
    dbms_epg.set_dad_attribute('APEX','document-procedure','wwv_flow_file_mgr.process_download');
    dbms_epg.set_dad_attribute('APEX','request-validation-function','wwv_flow_epg_include_modules.authorize');
    end;
    begin
    dbms_epg.AUTHORIZE_DAD('APEX', 'ANONYMOUS');
    end;
    However, when I go to the login page, the images are not displayed and when I try to use some of the other links, I repeatedly get prompted for a password for XDB.
    The page error is:
    Line: 40
    Char: 1
    Error: Object expected
    Code: 0
    URL: http://gtlt01479:8080/apex/.......
    Can anyone shed some light on this for me?

    Hi Joseph,
    the installation instruction isn't really clear on that, but "Embedded PL/SQL Gateway" is not supported for pre-11g databases. See http://www.oracle.com/technology/products/database/application_express/html/3.0_fsps.html#08
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • Usage of CGI environment variables SERVER_NAME and HTTP_HOST by APEX

    Hi,
    I have a question about the usage of the CGI environment variables SERVER_NAME/SERVER_PORT and HTTP_HOST by APEX.
    When does it use which CGI environment variables when it is generating absolute URLs.
    Based on the following thread about the online help (Re: Help does not show content it seems to use SERVER_NAME/SERVER_PORT. At least for the online help.
    But based on my own tests some time ago about the flash charting at the following thread (Re: APEX Charts - Error XML Loading falied I investigated that at least flash charting is using HTTP_HOST to generate an absolute URL.
    My question now is what is the logical difference between HTTP_HOST and SERVER_NAME and which of the URLs should be used when I want to generate absolute URLs in my application?
    I would tend to use HTTP_HOST because it seems to be more logically. I would see SERVER_NAME more as just the name of the web-server, which doesn't have to be the URL the user enters in case a reverse proxy is used.
    Thanks
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

    We use HTTP_HOST in most cases from what I can see. You may have also noted that HTTP_HOST may have :<port> appended to the hostname as well.
    Scott

  • Session state protection  and navigation to url outside apex

    Hi
    I am working in on an app , in which base on unique key for each customer and i have to show his address on map(google.api) i used apex util to prepare url and enable checksumprotection on that item to pass it on the map.
    I have another page which is details of customer also based on that unique , which works fine as its in apex only
    what i notice is that , when i navigate to external url(maps.google.com) the session is different than what i originally had, which causes problem when i want to navigate from map (java script info window ) to navigate to detail using same unique key of customer.
    I read this was a bug in 4.1 but i am using 4.1.1 assuming the bug was fixed.
    Db 11G
    Oc4j
    linux
    Kindly help

    Hello Red Bull,
    Following article will help you in integration of google maps api through web services:
    [url http://www.oracle.com/technetwork/developer-tools/apex/application-express/integration-086636.html#GOOGLE]Integrating Application Express with Google Maps
    OR
    You can just try plugins available on http://apex-plugin.com.
    One of it which can be of your help is:
    [url http://apex-plugin.com/oracle-apex-plugins/item-plugin/location-map-image_97.html]Display Location on a Google Map
    by @Peter Raganitsch of which blog article is:
    http://www.oracle-and-apex.com/plugin-location-map-image/
    Hope it helps!
    Regards,
    Kiran

  • APEX 3.0.1 and SQL Developer integration - what is it?

    Hello
    In the Apex Release 3.0.1 page, it reads "Supports direct integration with Oracle SQL Developer 1.2.". What does this exactly mean? I looked at the patch notes but could not find any info... I am not a current user of SQL Developer (long way to go to get close to PL/SQL Developer's PL/SQL development functionality IMHO) but wouldn't mind giving it a try depending on what this "integration" means...
    Thanks
    Luis

    Hi Earl,
    I have blogged about that some time ago. See http://inside-apex.blogspot.com/2007/05/what-is-your-favorite-plsql-development.html
    For me the main advantages out of many are
    -) real code completion. Also for local variables, parameter,... and not just for tables/columns.
    -) showing unused variables, enforcing coding styleguides -> shows warning if you don't use the correct prefix for your parameters/local variables/...
    -) powerful template system with placeholders, conditions, autoreplace
    -) Refactoring support
    I think the biggest drawback of SQL Developer was (has been fixed I think with 1.1) that you couldn't do file based PL/SQL development.
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • Apex and SQL Developer

    A coworker that works in Oracle told me today that he heard that a future release of SQL Developer was going to be integrated with Apex.
    Is that correct? If so, does anyone know how the two products will be integrated?
    Thanks, Tony

    Hi Tony,
    I wouldn't think so, because SQL Developer is done with a completely different development language (Java) then APEX is (PL/SQL). I think it goes more into the other direction, you will see more APEX related features in SQL Developer. The current APEX reports and the deployment feature in SQL Developer are just the beginning.
    But what do I know, I'm not from Oracle...
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • APEX Security Integration To E-Business Suite

    Hi all,
    I am reasonably new to APEX and the Forum so please excuse me if this question has been posted previously.
    I am looking at creating applications that leverage the user and organization security that is inherent within E-Biz Suite to control access and data returned within my APEX applications.
    Environment Details:
    O/S: Sun Solaris Unix
    APEX: 3.0.1
    E-Biz: 11.5.10.2 (no SSO)
    APEX and E-Biz use same Apache HTTP Server
    I plan to access the APEX application from a custom Menu item on E-Biz and automatically authenticate the E-Biz user's credentials within APEX processes to determine USER_ID, ORG_ID, SECURITY_GROUP_ID, etc for access control of the returned data queries. The APEX application will be primarily reporting on E-Biz data.
    I would prefer to utilize APEX rather than built custom modules in Application developer Framework (ADF).
    Are there any whitepapers, best practices, or individuals experiences available on this subject that you could share with me please.
    Many thanks :-)
    Kind Regards,
    Gary.

    Hi Gary,
    maybe get in contact with Scott Spendolini from Sumner Technologies (http://sumnertechnologies.com/), I think these guys have some experience integrating APEX with eBusiness Suite.
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • Calling Apex Page

    Hi friends,
    I have integrated APEX with ebis - R12 with the help of Rod Document and now i can redirect to the APEX page from the ebiz menu. Now whether it is possible to call the APEX page from the workflow notification.
    As now the APEX is within Ebiz. Whether now it is possible to call the APEX page (via) Workflow notification.
    As anyone done this before.
    Brgds,
    Mini

    Hi Andrew,
    have you other self defined html input tags in your form? When you look into the Apache log file you will probably notice that mod_plsql isn't able to map this field names to parameters of the F procedure.
    BTW, have you already looked at the PayPal Packaged Application and the White paper which explains it? http://www.oracle.com/technology/products/database/application_express/packaged_apps/packaged_apps.html#PAYPAL
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • Instr command in APEX and materialized view

    This worked fine up until we changed it to use a materialized layer. P6080_DEPARTMENT, P6080_TITLE and P6080_ROLE are all Multi-Select lists. ACMV is the materialized view. I have been trying multiple things but nothing works.
    ( instr(':'||:P6080_DEPARTMENT||':',':'||ACMV.DEPARTMENT||':') > 0 or
    :P6080_DEPARTMENT is NULL or :P6080_DEPARTMENT = 'ALL') and
    ( instr(':'||:P6080_TITLE||':',':'||ACMV.TITLE||':') > 0 or
    :P6080_TITLE is NULL or :P6080_TITLE = 'ALL') and
    ( instr(':'||:P6080_ROLE||':',':'||ACMV.ROLE||':') > 0 or
    :P6080_ROLE is NULL or :P6080_ROLE = 'ALL')
    I can run this in a sql window and get the results using the following for Department
    when if use the values from the debugging output.
    select business_name from account_contacts_mv acmv
    where instr(':ADMINISTRATION:COMPLIANCE:ENGINEERING:EXECUTIVE:FINANCE:HR:IT:LEGAL:',':'||ACMV.department||':')>0
    This is a little frustrating and any help will be appreciated.
    KDP

    KDP,
    what is your actual problem. Do you get an error or do you suffer performance problems?
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • SOA & Apex

    APEX FORUM
    IS IT POSSIBLE TO DEVELOP APPLICATIONS IN ORACLE APEX USING THE NEW SOA APPROACH? HOW ABOUT USING ORACLE BPEL ON APEX APPLICATIONS, IS IT POSSIBLE? BUILDING MODERN COMPOSITE APPLICATION
    THANKS

    Chariot,
    and you do not even have to wait for 11g to expose your PL/SQL packages as Web-Service. See the article "Build a PL/SQL Web Service" at http://www.oracle.com/technology/pub/articles/price_10gws.html
    So nothing stops your APEX application/PLSQL code to take part in the SOA world. :-)
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

Maybe you are looking for