Search dbxml, owains, htp packages

I am searching to download these package :
owains.sql, htp*.sql
because i try to use The dbxml package who need the previous package. We work under
Oracle 8.0.4 release.
Thanks, DP

They are included in the .\xsql\demo\owa\owa_package.zip that come with the XSQL Servlet.

Similar Messages

  • How to incorporate Javscript into oralce htp packages?

    hello,
    I would like to know about the javascript how one can use in oracle HTP packages while creating the forms using HTP packages... are there any course offered by oracle or is there any documentation available on this? on i know the htp package are there but how one can use javascript in htp packages...
    Please do help me out...
    Thanks a lot.......

    Application Developer's Guide - Fundamentals Contents / Search / Index / PDF
    Chapter 18 Page 679
    http://download-east.oracle.com/docs/cd/B10501_01/appdev.920/a96590.pdf
    You can enter too javacript code inside a Stored Procedure and use so:
    Example:
    <HTML>
    <HEAD>
    <TITLE>Metalink 2.0</TITLE>
    </HEAD>
    <FRAMESET COLS="152, *" NORESIZE BORDER="0" FRAMESPACE="0"
    FRAMESPACING="0" FRAMEBORDER="NO">
    <FRAME SRC="ml2_gui.checkJavascript?p_section_id=-1" SCROLLING="NO" SCROLLING="NO" MARGINWIDTH="0" MARGINHEIGHT="0" NAME="navbar">
    <FRAMESET ROWS="61,*" BORDER="0" FRAMESPACE="0" FRAMESPACING="0" FRAMEBORDER="NO" NAME="rightframe">
    <FRAME SRC="ml2_gui.queryform"SCROLLING="NO" NORESIZE MARGINWIDTH="0" MARGINHEIGHT=0 BORDER="0" NAME="query">
    <FRAME SRC="per_hom.startup" SCROLLING="AUTO" NORESIZE MARGINWIDTH="0" MARGINHEIGHT="0" BORDER="0" NAME="corner">
    </FRAMESET>
    </FRAMESET>
    Joel P�rez

  • Apex new installation - HTP package body has errors

    I installed apex on 10G. When i try to access the apex page, i get the following errors in log:
    [Sat Oct 28 08:39:25 2006] [error] [client 192.168.1.90] [ecid: 1162049964:156.153.112.151:9580:0:9,0] mod_plsql: /pls/apex/apex HTTP-404 ORA-04063: package body "SYS.HTP" has errors\nORA-06508: PL/SQL: could not find program unit being called: "SYS.HTP"\nORA-06512: at line 7\n
    When i recompile HTP package body, i get errors:
    SQL> alter package htp compile body;
    Warning: Package Body altered with compilation errors.
    SQL> sho errors
    Errors for PACKAGE BODY HTP:
    LINE/COL ERROR
    14/11 PLS-00323: subprogram or cursor 'TITLE' is declared in a package
    specification and must be defined in the package body
    15/11 PLS-00323: subprogram or cursor 'HTITLE' is declared in a package
    specification and must be defined in the package body
    1691/7 PL/SQL: Statement ignored
    1691/7 PLS-00307: too many declarations of 'PRINT' match this call
    1694/7 PL/SQL: Statement ignored
    1694/7 PLS-00307: too many declarations of 'PRINT' match this call
    1697/7 PL/SQL: Statement ignored
    1697/7 PLS-00307: too many declarations of 'PRN' match this call
    1700/7 PL/SQL: Statement ignored
    1700/7 PLS-00307: too many declarations of 'PRN' match this call
    1703/7 PL/SQL: Statement ignored
    1703/7 PLS-00307: too many declarations of 'PRINT' match this call
    1706/7 PL/SQL: Statement ignored
    1706/7 PLS-00307: too many declarations of 'PRINT' match this call
    1709/7 PL/SQL: Statement ignored
    1709/7 PLS-00307: too many declarations of 'P' match this call
    1712/7 PL/SQL: Statement ignored
    1712/7 PLS-00307: too many declarations of 'P' match this call
    1715/7 PL/SQL: Statement ignored
    1715/7 PLS-00307: too many declarations of 'P' match this call
    Any ideas...

    Please tell us your first name and update your forum profile with it to help us. Also, change your handle to something more reader-friendly. Thanks.
    If your imported applications are set up to use some kind of SSO authenticaiton and you haven't provided for that in your environment then you'll need to change those applications' authentication scheme to something you can deal with.
    Scott

  • HTP package question

    I have a feeling I'm in the wrong place for this question but maybe someone can help.
    I'm not so good with Oracle configuration and setup issues but I have created a package with a few procedures that output info using the HTP package. At my old place of employment we had a web server set up and we could use
    http://ouraddress.com/packagename.procedurename?p_param1=123&p_param2=456
    We have a web-based application server set up for Oracle Forms (eBusiness Suite) but I don't know if I'm able to do something like this or not. Where/what do I need to set up to use this type of functionality?
    null

    PL/SQL Web Development Tools: Oracle Database provides built-in tools and technologies that enable you to deploy PL/SQL applications over the Web. Thus, PL/SQL serves as an alternative to Web application frameworks such as CGI.
    The PL/SQL Web Toolkit is a set of PL/SQL packages that you can use to develop stored procedures that can be invoked by a Web client. The PL/SQL Gateway enables an HTTP client to invoke a PL/SQL stored procedure through mod_plsql, which is a plug-in to Oracle HTTP Server. This module performs the following actions:
    - Translates a URL passed by a browser client
    - Calls an Oracle Database stored procedure with the parameters in the URL
    - Returns output (typically HTML) to the client
    You got to start from here:
    Developing Applications with the PL/SQL Web Toolkit
    http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_web.htm#g1026380

  • Sending Binary Data using HTP package

    Has anyone been successful in using the HTP package and its PUTRAW procedure to send binary data to a browser?
    Example code shows basic idea:
    create or replace
    procedure test_raw as
    output VARCHAR2(20);
    begin
    OWA_UTIL.MIME_HEADER('application/x-gzip', TRUE);
    output := 'Hello World!';
    HTP.PUTRAW(UTL_RAW.CAST_TO_RAW(output));
    HTP.FLUSH;
    end test_raw;
    I receive an empty file when called from the browser.
    What gives?

    I found my answer. I should be using wpg_docload.download_file(BLOB) to "download" a the contents of a BLOB.

  • HTP Package and Oracle XE

    Hello Experts,
    I have just installed Oracle10g XE. I wanted to create package/procedure using Oracle HTP package. Would it be possible to use HTP package in XE. If so then how can I call that in browser? (Say package name is my_package_k and procedure id my_proc_p). I do not know what http://???? I have to use??
    Please help me.
    Thanks,
    B Adhvaryu
    London
    UK

    I'm running XE on an Asus 1000H eee netbook and all works fine. I installed 2GB though which is straighforward and relatively inexpensive to do, and also doesn't invalidate the warranty.
    PaulB

  • Reading html data & uploading a file in single html form using htp package

    Hi
    I have designed a html screen using htp package in which i have few text items and file upload button. I have to validate all forms data like text items and check box elements and upload file to unix. I am using java script for file validations and cgi script to upload file. With this I am able to either read form data or upload file but not both.
    At a time I want to insert a record to database with html form values and upload file to unix with htp package. Please suggest how can I read html form data + uploading a file to unix simultaneously in a single htp procedure.
    Thanks,
    Pradeep

    Have you ever considered using Application Express (APEX)?
    Oracle Application Express (APEX)
    Sounds like you're going the long way around to create a web based application.

  • Server side includes with htp package

    I have a few procedures that call the htp package and generate dynamic web pages, however the server side includes are being treated as comments; they are not interpreted correctly and hence are not reading the associated file.
    Has anyone encountered this before and found a solution?

    I have a few procedures that call the htp package and generate dynamic web pages, however the server side includes are being treated as comments; they are not interpreted correctly and hence are not reading the associated file.
    Has anyone encountered this before and found a solution?

  • HTP package

    Hi all,
    maybe this is a naive question, maybe not for this forum, but please, can someone tell me where would I be able to find HTP package? Is it installed with the db server?
    I use 9i database.
    thanks in advance,
    teo

    thanks a lot ruhn..
    ok I issue desc htp and it displays a list of functions. I think that means that it is installed doesn't it?
    Just another quick question. Which is the most apropriate forum to ask a question about htp? I wan to know how would I be able to call a stored procedure from a browser's url in order to dynamically create a page with db data.
    I think this is a common thing to do but I've never done it plus I don't know which is the right forum for the question.
    Please if you can tell me where to ask or to show me a way into this.
    Thanks for your time
    regards,
    teo

  • HTP Package Help

    Can someone help me on " how do I export the output of a pl/sql program into a notepad file through HTP Package."
    The output is supposed to be a multibyte character.
    Thanks!!

    the htp package is a package used by the mod pl/sql for apache in the AS. I don't think you can redirect it to a file. Just use dbms_output instead...

  • How to search in a pdf package via command line

    How can I search a specific PDF file within a PDF package via the command line? Previously I have used the following code in VB6 to search a single PDF file successfully.
    acroPath = String(128, " ")        'initialise this string
    resultStatus = FindExecutable(pdfPath, vbNullString, acroPath)
    acroPath = Replace(acroPath, vbNullChar, "")        'Get rid of the null character
    acroPath = """" & Trim$(acroPath) & """"
    cmdLineString = acroPath & " /n /A ""search=" & searchString & """ " & pdfPath
    Call Shell(cmdLineString, vbNormalFocus)
    I now receive this file as part of a PDF package, so how can I amend the command line to search the specific file within the package?
    I only have Reader, not the full blown Acrobat version.
    Vas.

    Sorry forgot to say that I am using Acrobat Reader 8.1 on Win XP SP2
    Vas.

  • Oracle XE htp-package limitations?

    Hello,
    I'm developing a web application on my laptop Windows XP pro, Oracle XE 10 + apache + mod_owa. I had some serious issues with htp.p -calls, I'd keep getting this error message, no matter how small I made the htp.p -arguments
    Error 6502 calling procedure:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "SYS.HTP", line 1536
    ....I then started to wonder about this, and so I copied my packages to another machine (Windows server 2003, Oracle 10g, apache + mod_owa), compiled them and my error disappeared !
    Now is this some sort of limitation in Oracle XE, or what?

    Funny.. I'm sure that I submitted my response to this yesterday - but it does not show.
    Anyway, here it is again. No, there is no limitation I'm aware of - having tested the code below in XE. I have a procedure called WebCall that simulates a mod_plsql call. I've used this to test:
    SQL> create or replace type TStrings is table of varchar2(4000);
      2  /                                                         
    Type created.
    SQL>
    SQL> /
    Type created.
    SQL> create or replace procedure WebTest is
      2          cookie  OWA_COOKIE.cookie;   
      3  begin                                
      4          OWA_UTIL.mime_header('text/html', TRUE );
      5          cookie := OWA_COOKIE.get( 'SOME_CUSTOM_COOKIE' );
      6                                                          
      7          HTP.prn( 'What do you want, universe? (Klingon for "hello world")' );
      8          HTP.prn( '<hr>' );                                                  
      9          HTP.prn( rpad('0',3000,'1') );                                      
    10          HTP.prn( '<hr>' );                                                  
    11                                                                              
    12          if cookie.vals.First is NULL then                                   
    13                  HTP.prn( 'Cookie [SOME_CUSTOM_COOKIE] is not set' );        
    14          else                                                                
    15                  HTP.prn( 'Cookie [SOME_CUSTOM_COOKIE] is set to "'|| cookie.vals( cookie.vals.First )||'"' );
    16          end if;                                                                                             
    17                                                                                                              
    18          HTP.prn( '<hr>' );                                                                                  
    19                                                                                                              
    20          HTP.prn( 'You are connection from web browser: '|| OWA_UTIL.get_cgi_env( 'HTTP_USER_AGENT' ) );     
    21  end;                                                                                                        
    22  /                                                                                                           
    Procedure created.
    SQL>
    SQL> create or replace function WebCall( procName varchar2, queryString varchar2 default null ) return TStrings pipelined is
      2          nameList        OWA.vc_arr;                                                                                   
      3          valueList       OWA.vc_arr;                                                                                   
      4          htpBuffer       HTP.htbuf_arr;                                                                                
      5          bufRows         integer         := 99999999;                                                                  
      6          rc              integer;                                                                                      
      7  begin                                                                                                                 
      8          -- name-value list (typical CGI variables)                                                                    
      9          nameList(1) := 'HTTP_COOKIE';                                                                                 
    10          nameList(2) := 'HTTP_HOST';                                                                                   
    11          nameList(3) := 'HTTP_USER_AGENT';                                                                             
    12          nameList(4) := 'QUERY_STRING';                                                                                
    13          nameList(5) := 'REMOTE_ADDR';                                                                                 
    14          nameList(6) := 'REQUEST_METHOD';                                                                              
    15          nameList(7) := 'QUEST_URI';                                                                                   
    16                                                                                                                        
    17          valueList(1) := 'SOME_CUSTOM_COOKIE=123; SOME_OTHER_COOKIE=foo';                                              
    18          valueList(2) := 'localhost';                                                                                  
    19          valueList(3) := 'Mozilla/5.0; PL/SQL Interface';                                                              
    20          valueList(4) := nvl( queryString, 'param1=value1&pama2=value3' );                                             
    21          valueList(5) := 'localhost';                                                                                  
    22          valueList(6) := 'GET';                                                                                        
    23          valueList(7) := '/custom-web-service';                                                                        
    24                                                                                                                        
    25          -- initiliase OWA and configure a basic CGI environment                                                       
    26          DBMS_SESSION.reset_package;                     -- reset PL/SQL PGA maintaining package state                 
    27          rc := OWA.Initialize;                                                                                         
    28          OWA.init_cgi_env( 7, nameList, valueList );                                                                   
    29          htp.HTBUF_LEN := 255;                                                                                         
    30                                                                                                                        
    31          -- now call the web enabled PL/SQL procedure                                                                  
    32          execute immediate 'begin '||procName||'; end;';                                                               
    33                                                                                                                        
    34          -- return the output as rows                                                                                  
    35          OWA.get_page( htpBuffer, bufRows );                                                                           
    36          for i in 1..htpBuffer.Count                                                                                   
    37          loop                                                                                                          
    38                  PIPE ROW( htpBuffer(i) );                                                                             
    39          end loop;                                                                                                     
    40                                                                                                                        
    41          return;                                                                                                       
    42  end;                                                                                                                  
    43  /                                                                                                                     
    Function created.
    SQL> show errors
    No errors.     
    SQL>           
    SQL> col HTML_LINE format a80
    SQL>                        
    SQL> select                 
      2          rownum          as LINE_NO,
      3          b.column_value  as HTML_LINE
      4  from       TABLE( WebCall('WebTest') ) b
      5  /                                      
       LINE_NO HTML_LINE
             1 Content-type: text/html                                                        
             2 Content-length: 3176                                                           
             3                                                                                
             4 What do you want, universe? (Klingon for "hello world")                        
             5 <hr>                                                                           
             6 01111111111111111111111111111111111111111111111111111111111111111111111111111111
               11111111111111111111111111111111111111111111111111111111111111111111111111111111
               11111111111111111111111111111111111111111111111111111111111111111111111111111111
               111111111111111                                                                
    ..snipped..
            17 11111111111111111111111111111111111111111111111111111111111111111111111111111111
               11111111111111111111111111111111111111111111111111111111111111111111111111111111
               11111111111111111111111111111111111
            18 <hr>
            19 Cookie [SOME_CUSTOM_COOKIE] is set to "123"
            20 <hr>
            21 You are connection from web browser: Mozilla/5.0; PL/SQL Interface
    21 rows selected.
    SQL>The WebTest procedure writes a 3000 character string via HTP.PRN. It works fine.
    As it accepts a varchar2 parameter, it should be capable of accepting 32KB strings. Note that the size is byte size and not char size. When using a db with a multibyte char set, a single char consumes more than 1 byte of space and then obviously less chars can be send in a 32KB block.
    Also note that the limit for the SQL engine for varchar2 is 4000 bytes and not 32KB like the PL engine.
    Playing around with the WebCall code, the only time I ran into string size errors, was when changing the HTBUF_LEN parameter to greater than 255. My guess this is a limitation of how the call interface between OWA and mod_plsql has been designed. But this does not limit the actual size of the HTP.PRN to 255 - only the way the data is exchanged (note that the pipeline function returns the data from the HTP buffer in 255 char chunks.

  • Saving Search Help - Problem assigning package

    Hi,
    I have developed a ALV report, Where I have used only one 'Z' table. I want to create search help for a particular input field  in the selection screen.
    I tried to create search help in se11.
    After giving all the required information, I am not able to save it under any package at all.
    It gives an information saying, Search help cannot be assigned under this package.
    I have tried it under many packages and also tried to save it as a local object, But no go.
    How can I save and activate this ?
    Please help !
    Thanks in advance
    Edited by: Matt on Sep 5, 2011 6:40 AM

    Hi
    I think you created search help name not starting with Y or Z, but with SAP reserved names. Because of this you are not able to save by assigning a package and TR.
    Please change the same to starting with Y or Z.
    Custom Search Help
    Shiva

  • Canned searches in finder.app package, but not in sidebar or preferences

    Hello,
    I would like to add the canned searches from the Finder App package to te sidebar, but they do not appear in the preferences.
    I found no ducumentation on this.
    Would you please help me?
    Wilfried

    There is an alternate way to get basically the same searches into the proper place in the Finder sidebar. The "canned searches" in Finder.app are very similar to "smart folders" that you can create yourself, setting them up to search "This Mac" and using a single "Kind is ...." search criterion. If you save such a "smart folder" it becomes a "saved search", and there is a checkbox for adding its icon to the sidebar. That sidebar icon will appear under "Search For", not under "Places.' Name the search appropriately and save it to the default Saved Searches folder.
    For further details see
    *Mac OS X 10.6 Help - Creating a Smart Folder*
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/8923.html

  • Searching subfolders under Driver Packages

    Hi
    I am trying to do a search on my Dell Specific driver packages in the 2012 console, each model is in a separate folder. When I go to "Driver Packages" under Search the "All Subfolders" option is not available. Is this intended by design?
    I can seach subfolders under regular packages.
    I want to create prestaged media for all my dell driver packages but cant do a search of all of them since each is in a separate folder. Is there another way to do this?
    Thanks

    It seems to be "by design". You could create your own PowerShell script to find in which folder a package is located (see:
    http://www.petervanderwoude.nl/post/get-the-folder-location-of-an-object-in-configmgr-2012-via-powershell/).
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

Maybe you are looking for

  • Ipod classic 120g not showing captions

    I am using 6th gen ipod classic (thinner version.) My firmware is 2.0.1. I am having problems that my captions (subtitles) aren't showing up in videos. They show up in iTunes but when I sync them, nothing goes on. I enabled captions in iPod settings

  • To populate a tree with httpService

    Hi, i don't arrive to populate my tree with an httpService. Here is the code <mx:Tree width="30%" height="100%" id="arboChambre" labelField="@name" dataProvider="{restree.lastResult.chambres.type}" labelFunction="displayNodeName" /> and the script in

  • Oxc19a0042 hp photosmart 5510 error

    Hi, As i turn my printer on it appears a error message 0xc19a0042 and it says that there is a problem with the printer or ink system. Please reply asap Regards Zuber

  • I am unable to access my Bank website since upgrading to Mavericks (Safari 7)

    I am unable to access my Bank website since upgrading to Mavericks (Safari 7) I get the following error message in Safari before I even have the opportunity to connect to my bank's website. It works fine in Firefox and Chrome. Access Denied You don't

  • Writing Adobe Image Resource Block to a Tiff file

    Background : I am working on a small .NET application which reads the tiff file and performs some metadata related operations on it. The program works fine with all of the tiff Images that are taken from photoshop. I have recieved a tiff file from th