Problem with intermedia utilisation

how can i do to search string inside an
point doc document like word using intermedia?
( i can do it inside an point text document)
thank you

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by duprat christophe ([email protected]):
Hi, i'm trying to develop an application that save the text that I handle in Word Format and then save this file to my database. My Table name is datastore with the following structure:
ID NUMBER(3)
DOC varchar(2)
Anybody that can help me with the code to insert a Word document in the document field??
Thanks
thank you<HR></BLOCKQUOTE>
null

Similar Messages

  • Problems with Intermedia and Plugin for  RealNetworks

    I installed plugin v2.1 in a Windows 32-bit system.
    Database is 10.1.x, and Helix Universal Server 10.
    I also followed the instructions for the demo, but the
    plugin doesn't work.
    At first it couldn't connect to the database, now it can (with the system schema). The problem is that it displays a weird message when i execute the the get_video procedure:
    logplin(2540): Oracle Plug-in Error: failed to execute database statement
    logplin(2540): Oracle Plug-in Error: ORA-01008: not all variables bound
    Or when i do the sql alternative it displays:
    logplin(204): Oracle Plug-in Error: failed to prepare database statement
    logplin(204): Oracle Plug-in Error: ORA-00931: missing identifier
    logplin(204): 7: Error retrieving URL `oracle/2' (Invalid path)
    Does anyone knows how to fix this?
    Thanks
    Cesar Guerra

    i've some problem with streaming video data from oracle using realserver.
    i'm using oracle9i intermedia (9.2.0.1.0) and
    Oracle interMedia Plug-in 2.1 for RealNetworks Streaming Servers and also universal helix server 9.0.8.1427. (my helix server http port is 88)
    i've some procedure PL/SQL :
    ------------------------------procedure PL/SQL-----------------------
    create or replace procedure get_video(
         video_id in varchar2,
         mimetype out varchar2,
         data out blob) as
         tempBLOB BLOB;
         s varchar2(200);
    begin
    -- Deliver audio and mimetype
    select t.video.getcontent(), t.video.getmimetype()
    into tempBLOB, s
    from movies t where t.item_id = video_id;
    data := tempBLOB;
    mimetype := s;
    end;
    ------------------------ end of procedure PL/SQL-------------------------------
    -------------------------------mountpoint ------------------------------------
    <List Name="Oracle DB RealVideo movie">
    <Var ShortName="pn-oracle"/>
    <Var MountPoint="/dbvideo/"/>
    <Var Database="oracleSID"/>
    <Var Username="scott"/>
    <Var Password="tiger"/>
    <Var SQL="get_video"/>
    <Var Authentication="0"/>
    </List>
    ------------------------------ end of mountpoint------------------------------
    the URL i used was : rtsp://host:554/dbvideo/1
    and an error occured: "unable to locate server. This server dose not have a DNS entry. Please check the server name in the URL and try again."
    then i changed the mount point with :
    ------------------------------new mountpoint---------------------------
    <List Name="Oracle DB RealVideo movie">
    <Var ShortName="pn-oracle"/>
    <Var MountPoint="/dbvideo/"/>
    <Var Database="(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(PORT=1521)(HOST=127.0.0.1))(CONNECT_DATA=(SID=oracleSID)))"/>
    <Var Username="scott"/>
    <Var Password="tiger"/>
    <Var SQL="get_video"/>
    <Var Authentication="0"/>
    </List>
    -----------------------------end of new mount point------------------------------
    the i used different URL : http://127.0.0.1:88/ramgen/dbvideo/1
    another error occured : "requested file not found. the link you followed may be outdated or inaccurate."
    can anyone help me?

  • Problem with InterMedia ClipBoard

    Hi
    i am trying to use the Code wizard to create the Get_object , put_object, insert_row procedures for inserting/updating BLOB data into oracle database
    However the code editior gives an error
    The code generated is as follows and the error is as follows
    I am not able to figure out why it should give an error at this location though.
    Please can some one help
    The code is as follows
    procedure INSERT_CONTENT_ROW
    in_ID in varchar2,
    in_AUTHOR in varchar2,
    in_CONTENT_NAME in varchar2,
    out_rowid out varchar2
    as
    begin
    insert into CONTENTS ( ID, AUTHOR, CONTENT_NAME, DOCS ) values ( in_ID, in_AUTHOR, in_CONTENT_NAME, .BLOB ( ) ) returning rowid into out_rowid;
    end;
    ----------The error generated in code Editior is as below----
    WM-00521: OCI returned OCI_SUCCESS_WITH_INFO; ORA-24344: message not available
    Line: 10, Column: 105: PLS-00103: Encountered the symbol "." when expecting one of the following:
    ( - + mod not null others <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current exists max min prior sql stddev sum variance
    execute cast trim forall
    <a string literal with character set specification>
    <a number> <a single-quoted SQL string>
    The symbol "<an identifier>" was substituted for "." to continue.
    When I run the same code in SQL*Plus this is the error I get
    procedure INSERT_CONTENT_ROW
    ERROR at line 1:
    ORA-00900: invalid SQL statement
    Now i am new to Intermedia and the BLOB usage so could not figure out much
    I would also be gla if someone can refer me to some good reference material on the Intermedia standard procedures, functions and other developer related material.
    By the way, the config is as follows:
    oracle8.1.5/InterMedia Web agent/clipBoard, Win NT, Apache1.3.9
    Thank you
    -nandeep

    Hi
    When I try to generate procedures with code generator in Intermedia Clip Borad I get errors as listed against each of the procedure
    1. GET_CONTENT_DOC
    --to retrive documents from document column
    --which is a BLOB type column:
    --By the way the documents column name is DOCS in the database
    procedure GET_CONTENT_DOC
    ord_procedure_path in varchar2,
    http_if_modified_since in varchar2,
    http_status out varchar2,
    http_last_modified out varchar2,
    ord_content_type out varchar2,
    ord_content_length out number,
    ord_content_blob out blob
    as
    db_mod_date date;
    begin
    /* get the content, content type, last-modified date from the object. */
    select
    t.DOCS.GetContent(),
    t.DOCS.GetMimeType(),
    t.DOCS.GetUpdateTime()
    into
    ord_content_blob,
    ord_content_type,
    db_mod_date
    from CONTENTS t
    where
    t.ID = ord_procedure_path
    and rownum = 1;
    /* if we didn't know the content type, it's just bits */
    if ord_content_type is null
    then
    ord_content_type := '/x-unknown';
    end if;
    /* figure out the length */
    ord_content_length := dbms_lob.getlength( ord_content_blob );
    /* figure out the http status and last modified date */
    http_status := ordwebutl.cache_status(
    db_mod_date, http_if_modified_since, http_last_modified );
    end;
    ERROR is a s follows:
    WM-00521: OCI returned OCI_SUCCESS_WITH_INFO; ORA-24344: message not available
    Line: 17, Column: 9: PLS-00201: identifier 'T.DOCS' must be declared
    Line: 16, Column: 5: PL/SQL: SQL Statement ignored
    2. PUT_CONTENT_DOC
    -- to insert a document
    procedure PUT_CONTENT_DOC
    ord_procedure_path in varchar2,
    http_status out varchar2,
    ord_content_blob out blob
    as
    begin
    /* set the blob to empty before we return a handle to it */
    /* and set the content type from the one passed in */
    update CONTENTS t
    set t.DOCS = .BLOB ( )
    where
    t.ID = ord_procedure_path
    and rownum = 1;
    /* now select the blob we're going to update */
    select t.DOCS.GetContent()
    into ord_content_blob
    from CONTENTS t
    where
    t.ID = ord_procedure_path
    and rownum = 1
    for update;
    /* return http status OK */
    http_status := 200;
    end;
    ERROR is as follows:
    MWM-00521: OCI returned OCI_SUCCESS_WITH_INFO; ORA-24344: message not available
    Line: 13, Column: 18: PLS-00103: Encountered the symbol "." when expecting one of the following:
    ( - + mod null <an identifier>
    <a double-quoted delimited-identifier> <a bind variable> avg
    count current max min prior sql stddev sum variance execute
    cast trim forall
    <a string literal with character set specification>
    <a number> <a single-quoted SQL string>
    The symbol "<an identifier>" was substituted for "." to continue.
    The INSERT_DOCUMENT got created thru SQL*Plus. However I have NOT changed the .BLOB to EMPTY_BLOB() and I am still not sure whether it will work and whether I have to change it empty_blob()( iguess technically I should )
    thank u
    -nandeep
    null

  • Linking problems with Intermedia

    While trying to execute the following sql
    statement:
    create index sws_ctx_index on site_wide_index (datastore)
    indextype is ctxsys.context parameters ('datastore sws_user_datastore memory 250
    M');
    I'm getting the following error:
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: ConText error:
    ORA-06520: PL/SQL: Error loading external library
    ORA-06522: ld.so.1: extprocPLSExtProc: fatal: relocation error: file
    /oracle/ctx/lib/libctxx8.so: symbol ociepgoe: referenced symbol not found
    ORA-06512: at "CTXSYS.DRUE", line 122
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 34
    ORA-06512: at line 1
    I've searched the oracle libs in /oracle/lib
    for the ociepgoe symbol and found it in both
    /oracle/lib/libclntsh.so and /oracle/lib/libqsmashr.so
    what could it be?
    regards,
    -oscar

    Jim,
    InterMedia indexes need to be updated to show recently added items. This is documented in the Oracle Portal Configuration Guide.
    Note that the location for downloading the ctx_schedule utility is incorrect in the configuration guide. Instead, see Note 132689.1 on MetaLink.
    Also, it's a good idea to read the Oracle Text FAQ and Oracle Text Performance FAQ.
    Regards,
    Jerry
    null

  • Problem with application-variables - CFLOCK?

    Hi,
    i have a problem with my application. It is a multi-user
    application with 100 parallel-users and CFMX 7.
    The problem wich occures is with application variables. These
    are mainly structs wich get filled onApplicationStart(). The
    problem is, that the variables suddenly disappear, they are empty.
    I have read about CFLock and found out, that it is necesseary
    to use cflock. And i found out, that onApplicationStart does
    correct locking automatically. That is where i do not understand
    the problem. The variables get intialized correctly and in further
    they only get read-access. Why can they be corrupted?
    My other question about that is, wheather i need cflock for
    all Read-Access to Application and Session-Variables, even if there
    happens no writing to the variables?
    Best Regards,
    Andreas

    > ?The element of position 2, of dimension 2, of an array
    object used as part of
    > an expression, cannot be found.?
    > The array is in this case the struct.
    Well, OK, that could be a problem. Arrays are not structs:
    they are two
    different things, are not interchangeable, and have
    completely different
    sets of functions to utilise them. You cannot treat a struct
    as an array.
    If CF is claiming your "struct" is an array, then it actually
    *is* an
    array, not a struct.
    What's the line of code which is generating that error?
    I suppose one could get this error if you have an array of
    structs thus:
    myArray
    .key1
    myArray.key2
    (etc)
    and you're trying to reference it with a numeric key rather
    than by key
    name, eg:
    myArray
    [n]
    When n is an integer value, rather than a string (which
    corresponds to the
    name of the key).
    > > Have you trapped the error, done a <cfdump>
    of the application scope and
    > > checked to see if it's the whole lot going awry, or
    just some values?
    > I have not used cfdump for it, because the server had to
    be immediately
    > restarted for our customers. But i think, that it is
    not completely empty,
    > because the index runs to pos2 of dimenstion2.
    So does this not happen in your dev / testing environment?
    > Will
    > onApplicationStart() be called before? Or only if
    onRequestStart() returns true?
    I would ***-u-me that the application one would be called
    before the
    request one. It's pretty easy for you to test this though, I
    should think?
    (Sorry: for reasons beyond the scope of this conversation,
    we're still
    forced to use Application.cfm in our software, so I've only a
    passing
    knowledge of how Application.cfc works).
    > Here is the code from onRequestStart()
    > <cffunction name="onRequestStart"
    returntype="boolean">
    > <cfargument name="Requestedpage" required="yes" />
    > <cfscript>
    > var lFile = "/cargorent/Login.cfm";
    > var iPosn = ListFindNoCase( lFile,
    Arguments.Requestedpage );
    > if( iPosn gt 0 )
    > return true;
    >
    > if( NOT IsDefined( "session.user.Loginname" ) or
    session.user.Loginname eq
    > "" )
    > {
    > WriteOutput( "<p><p> The current user is no
    longer valid, please log in
    > again.</p></p>" & chr(10) & chr(13)
    > WriteOutput( "<script
    language=""javascript"">parent.location = ""
    http://"
    > & CGI.HTTP_HOST &
    "/Login/Login.cfm"";</script>" );
    > return false;
    > }
    >
    > return true;
    > </cfscript>
    > </cffunction>
    One thing I will say here is that I really think you should
    be separating
    your processing from your display. A function should do
    processing. it
    should pass that processing back to a CFM template which
    should handle
    whatever needs to be displayed on the browser. Although
    that's nowt to do
    with your current issue.
    Adam

  • Resolution problems with Acer aspire 5520

    Hello,
    I'm having trouble making both tty and Xorg resolution be native. I have an nVidia 7000M gpu.With nouveau drivers I managed to get KMS working, but realized Xorg resolution is wrong. If I set the right resolution with xrandr the problem with tiling WMs similar to what I explained in this thread. What is different is mouse can go to the blank part and still be visible, floating windows could be placed in the blank area or resized to full screen, but WM won't ever place windows there. Some tiling WMs are able to utilize the full width of the screen. WMs that do not work like this are dwm, wmii and musca.
    Dwm has problems displaying conky in its bar (cuts of a lot of output). This made me think the problem is not the resolution/driver and, dwm being my favourite WM, helped hiding the problem.
    Wmii utilises the whole screen after change of resolution, but leaves an unmovable vertical line where right edge of a window used to be prior to resolution change.
    Musca just works, but could take some getting used to.
    All floating WMs work perfectly.
    Then I tried nVidia closed source drivers, which worked perfectly in Xorg. The problem was no KMS. I installed and enabled uvesafb, but it did not change the maximum tty resolution from 1024x768.
    The WMs I tried:
    dwm
    fluxbox
    i3
    musca
    snapwm
    spectrwmsubtle
    A lot of others I either did not like, or they required some configuration to even start
    What I tried to fix the problem: various xrandr options (with nouveau), various kernel command line options (with nvidia) and what was mentioned in arch wiki about screen xorg configuration. Nothing I did to "/etc/X11/xorg.conf.d/10-screen.conf" had any effect so I just deleted the file to ease switching between nouveau and nvidia.
    As to which driver I intend to use... I don't care as long as it can display everything correctly.
    P.S.
    /etc/modprobe.d/uvesafb.conf has only one lien
    options uvesafb mode_option=1280x800-32 scroll=ywrap
    cat /sys/bus/platform/drivers/uvesafb/uvesafb.0/vbe_modes
    says top resolution is 1024x768.
    EDIT:
    Just now I've tried every tiling WM I could find, and the ones working are echinus, musca and qtile.
    Last edited by bstaletic (2015-05-30 18:11:25)

    Mr.Elendig wrote:https://wiki.archlinux.org/index.php/Bu … l.2FNVIDIA
    Didn't work.... Already said I tried it

  • Problem with examples

    Hi.
    I'm new to intermedia, and when I try to run the sample applications (like the imgdemo in .../ord/img/demo) it returns me this error:
    Dropping table IMGDEMOTAB...
    Creating and populating table IMGDEMOTAB...
    Loading data into cartridge...
    FAILED: OCIStmtExecute() sqlstmt
    ERROR CODE = 28576
    ORA-28576: lost RPC connection to external procedure agent
    ORA-06512: at "ORDSYS.ORDIMG_PKG", line 419
    ORA-06512: at "ORDSYS.ORDIMAGE", line 65
    ORA-06512: at line 1
    FAILED: load_cart()
    In the same way, I can't run any of the other sample applications. However, I made a small application in jdeveloper inserting and reading images from a table using jsp, and it works perfectly.
    I have intermedia 8.1.7 in Linux.
    Thanx for any help.
    Eric.
    null

    Hi,
    From the error message, it looks like there's a problem with your SQL*Net configuration, either in tnsnames.ora or listener.ora, that is preventing the ExtProc mechanism from functioning correctly. The reason the JDeveloper application works is because it uses a try block to catch exceptions from the setProperties method and uses the browser-supplied MIME type when it stores the multimedia data.
    The interMedia FAQ contains instructions for investigating and fixing SQL*Net configuration problems that prevent ExtProcs from running. You can find the FAQ in <oracle-home>/ord/im/admin/imfaq.txt. Please let us know if this helps or if you still have problems.
    In order to better understand the variety of ways in which our customers are using interMedia, we'd be very interested in knowing a little more about your application, the interMedia functionality that you are using, and how you are developing and deploying your application. If you are able to help us, please send a short email message with some information about your application, together with any comments you may have, to the Oracle interMedia Product Manager, Joe Mauro, at [email protected] Thank you!
    Regards,
    Simon

  • Performance problem with sdn_nn - new 10g install

    I am having a performance problem with sdn_nn after migrating to a new machine. The old Oracle version was 9.0.1.4. The new is 10g. The new machine is faster in general. Most (non-spatial) batch processes run in half the time. However, the below statement is radically slower. The below statement ran in 45 minutes before. On the new machine it hasn't finished after 10 hours. I am able to get a 5% sample of the customers to finish in 45 minutes.
    Does anyone have any ideas on how to approach this problem? Any chance something isn't installed correctly on the new machine (the nth version of the query finishe, albeit 20 times slower)?
    Appreciate any help. Thanks.
    - Jack
    create table nearest_store
    as
    select /*+ ordered */
    a.customer_id,
    b.store_id nearest_store,
    round(mdsys.sdo_nn_distance(1),4) distance
    from customers a,
    stores b
    where mdsys.sdo_nn(
    b.geometry,
    a.geometry,
    'sdo_num_res=1, unit=mile',
    1
    ) = 'TRUE'
    ;

    Dan,
    customers 110,000 (involved in this query)
    stores 28,000
    Here is the execution plan on the current machine:
    CREATE TABLE STATEMENT cost = 81947
    LOAD AS SELECT
    PX COORDINATOR
    PX SEND QC (RANDOM) :TQ10000
    ROW NESTED LOOPS
    1 1 PX BLOCK ITERATOR
    1 1ROW TABLE ACCESS FULL CUSTOMERS
    1 3 PARTITION RANGE ALL
    1 3 TABLE ACCESS BY LOCAL INDEX ROWID STORES
    DOMAIN INDEX STORES_SIDX
    I can't capture the execution plan on the old database. It is gone. I don't remember it being any different from the above (full scan customers, probe stores index once for each row in customers).
    I am trying the query without the create table (just doing a count). I'll let you know on that one.
    I am at 10.0.1.3.
    Here is how I created the index:
    create index stores_sidx
    on stores(geometry)
    indextype is mdsys.spatial_index LOCAL
    Note that the stores table is partitioned by range on store type. There are three store types (each in its own partition). The query returns the nearest store of each type (three rows per customer). This is by design (based on the documented behavior of sdo_nn).
    In addition to running the query without the CTAS, I am also going try running it on a different machine tonight. I let you know how that turns out.
    The reason I ask about the install, is that the Database Quick Installation Guide for Solaris says this:
    "If you intend to use Oracle JVM or Oracle interMedia, you must install the Oracle Database 10g Products installation type from the Companion CD. This installation optimizes the performance of those products on your system."
    And, the Database Installlation Guide says:
    "If you plan to use Oracle JVM or Oracle interMedia, Oracle strongly recommends that you install the natively compiled Java libraries (NCOMPs) used by those products from the Oracle Database 10g Companion CD. These libraries are required to improve the performance of the products on your platform."
    Based on that, I am suspicious that maybe I have the product installed on the new machine, but not correctly (forgot to set fast=true).
    Let me know if you think of anything else you'd like to see. Thanks.
    - Jack

  • Hi from belgium a problem with blackberry 8520

    help please blackberry 8520
    hi
    i have ablckberry 8520.
    Version: 4.6.1.296 .
    i use it to navigate in internet every thing is ok.
    but i have a problem with a site of advertising that i always use it ;
    http://www.vivastreet.be/
    I CANT LOGIN IN THIS SITE.
    CAN YOU HELP ME.
    i creat a new account for you if you want to test it your self .
    so you can try log in your self.
    log in :
    [email protected]
    pass word :
    1111111111
    thanks.
    [removed personal information]
    Salut
    J'ai recu le ablckberry 8520 avec l abonnement.
    Version: 4.6.1.296.
    Je l'utilise pour naviguer sur Internet tout est ok.
    mais j'ai un problème avec un site que j'ai utilise depuis toujours;
    http://www.vivastreet.be/
    Je arrive pas a connecte sur ce site.
    Pouvez-vous m'aider.
    jai cree un nouveau compte pour vous si vous voulez le tester vous-même.
    login :
    [email protected]
    un mot de passe:
    1111111111
    Merci.
    [removed personal information]

    Hiya!
     Personally, I havent seen this so it may be isolated to your device.
     Your best bet for warranty is to call your carrier.
    It very well could be classified as physical damage and void your warranty. Or they may classify it as "manufacturer defect" and replace it.
    Its hard to say as carrier's policys are different
    1). Please thank those who help you by clicking the beside the 'Reply' button.
    2). If your issue has been solved, please resolve it by marking "Accept as Solution" on the correct post!
    3). Remember to have fun! We are all in this together!
    4). Follow me on

  • Problem with context search in iFS

    Hello , here is my problem with iFS.
    We have installation of Oracle 8.1.7 Enterprise edition with interMedia and iFS 1.1 on same server (Windows NT Server 4.0/512 RAM). During install everything went fine.
    I had uploaded about 200 MB files in the iFS (pdf's and html's).
    The problem is when I try to use context based search. If I search for file's name everything is fine, but when I search for a word that is in a file it almost immediately gives mi "0 file(s) found", and I'm sure that there are files that have that word in their body's.
    What can be the problem?
    Any sugestions will be in help.
    Thanks in advance.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by mark_d_Drake ():
    That's the way it works. Content Indexing is not on insert, it occurs when the ctxsrv process runs. See the IntermediaText doc for more information.
    <HR></BLOCKQUOTE>
    Documents's content is stored in the GLOBALINDEXEDBLOB column of the IFSSYS.ODMM_CONTENTSTORE table.
    There is an text index GLOBALINDEXEDBLOB_I built on this column.
    To make the context search possible just update this index using the following command in SQL*Plus:
    SQL> exec ctx_ddl.sync_index('GLOBALINDEXEDBLOB_I');
    If you want this index be updated automatically when new documents are uploaded/changed/deleted in iFS then start the ctxsrv utility on the computer where your Oracle database resides. To do this issue the following command in OS command line:
    ctxsrv -user ctxsys/ctxpwd@db_alias
    just replace here ctxpwd and db_alias with real values you specified during the installation.
    null

  • Plugin error with Intermedia

    Background:
    table with 8 text fields, 3 Intermedia fields (1 audio, 1 video, and 1 image) where binary data is stored in the table
    I have a JSP page that pulls the text data from the database.
    I have a servlet that pulls the audio and video data from the database.
    The JSP references the servlet via a link - If I right click on the link, and select "save as...", I can save the audio and video data to disk, and it runs fine. The problem is if I want to just click on the link and spawn the audio/video plugin (in my case Windows Media Player). I get the following error - "Cannot determine the device type from the given filename extension".
    Within the servlet, I set the responses content type to the mime type of the Intermedia object. I then open an output stream from the Intermedia object, and write the data out to the stream.
    Are there any other HTTP headers that I need to set to get the plugin to work properly? How can I get the data to show a filename instead of the long URL query string?
    Thanks.
    Troy

    Hi,
    I suspect the problem here is that the plugin is looking for a file extension to decide the type of media that is to be played. I've seen this problem with some plugins with the Netscape browser, but not (so far) with Microsoft's IE browser.
    Here's what I think happens in Netscape: the browser gets the response and decides which plugin to use based on the Content-Type (MIME type) header. It saves the content in a file in its cache, then passes the filename to the plugin. However, as the URL doesn't have a file name/extension, then the file name in the cache doesn't have an extension either. This means that a plugin that can handle multiple content types, but that doesn't parse the content to determine the type, doesn't know what to do. For example, the Windows Media Player doesn't parse the content, so it has to rely on the file extension to know how to play the content. However, the Quicktime plugin works fine with most media it handles because it parses the content to determine how to play it. In this situation, I've seen problems with .WAV and .AVI files.
    I'm less sure exactly how IE handles things, but I do know that it relies heavily on a combination of file extensions and parsing content to determine the MIME type heuristically. That is to say, IE knows about a whole bunch of 'signatures' at the beginning of content from which it can determine the content type. So even if it doesn't have a file extension, it can figure things out. I believe it also does some form of sanity checking between the file extension, if there is one, the content-type header, if there is one, and the content type that it determines itself using its own heuristic algorithms, but I don't remember the details. Of course, this approach can also cause problems. For example, even slightly older versions of IE don't recognize the format of some of the newer versions of, for example, Microsoft Word. (I ran into this one myself not so long ago.)
    In your case, I think there are a couple of options:
    [list=1]
    [*] Include a dummy file extension when you build the URL to fetch the audio or video data, or
    [*] Use a plugin that can determine the MIME type dynamically.
    [list]
    Option 1 is fairly simple and has the advantage that it'll always work, no matter what browser and/or set of plugins is being used. I suspect there are a bunch of ways to do this, but here are a couple of ideas:
    [list=1]
    [*] When building the URL, include a dummy query string parameter (use any name you like) that contains the extension. I don't understand exactly how this gets parsed (it may be that the plugin simply searches the entire URL for known/supported extensions), but the following should work:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet?pkey=pkeyvalue&paramname=extension<HR></BLOCKQUOTE>
    Eg:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet?pkey=forty2&foo=.avi<HR></BLOCKQUOTE>
    Of course, you might want to use something more reasonable :-)
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet?pkey=forty2&ext=.avi<HR></BLOCKQUOTE>
    [*]I've not tried this myself, but you should be able to build a dummy file name and include it in the UTL after the servlet name. The servlet can then get the file name (by calling HttpServletRequest.getPathInfo), decode what it needs (ie, extract the key), then retrieve and deliver the data:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet/pkeyvalue.extension<HR></BLOCKQUOTE>
    Eg:
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>multimediaservlet/forty2.avi<HR></BLOCKQUOTE>
    This method has the advantage that it will provide a default file name for a Save-As operation.
    [list]
    Hope this helps,
    Simon
    null

  • Crystal 11 - Latest Service Pack loaded - problem with Kyocera printer

    Post Author: sorrock
    CA Forum: Integrated Solutions
    Hi
    We are using Crystal 11 Report Writer, and Sage ACCPAC.  Since Upgrading our ACCPAC all the crystal reports that ACCPAC utilises are coming up as garbage on the preview screen.  I have ruled out a sage issue by opening crystal directly and opening the respective report, the garbage still appears, if I change the printer that it is set to then the report appears fine.
    The printer is a Kyocera  -  fs-c8026n   the driver is a Kyocera Mita extended Driver.
    Any other printer is fine - so I am looking for anyone who has had problems with a Kyocera printing garbage.
    I have loaded the latest service pack for Crystal.
    Can anyone please help - apologies if I have put this on the incorrect forum
    Thanks
    Stacey

    Hi Jim,
    You can upgrade to CR XI R2 for free by downlaoding the trial version, install using your XI keycode and then getting a keycode for XI R2 to enable all features.
    Or to upgrade XI only then install the latest service pack will bring you up to date.
    Thank you
    Don

  • Premiere pro cc2014 problem with workspace

    Hi everyone !
    I have some issue with Premiere, and its workspace....
    Each time (except some "random" times) a new project is open, there is a problem with the composition of the workspace. Each windows move in an odd way that i dont understand... And i must have to recompose each time my own workspace. This problem is recurent, even when I re open a project...
    Here the result when a project is open :
    Thanks in advance !

    I 've been in relation with an "support technician" (i dont know how to define this fonction in english...), really useless... But few hours later I found this in my mail box. A potential answer (i didnt test it) to this problem (Sorry but the mail is in english and french.... Verry 'confortable' comme on dit chez nous...
    Fasten your seabelt, it's a little bit complicated :
    Merci d'avoir contacté le service clientèle Adobe suite à votre demande concernant première.
    Pourriez-vous suivre ces solutions concernant votre problème:
    1. Please rename the Adobe Folder in the Documents folder.
    2. Make sure the user is not using the sync settings option. (https://helpx.adobe.com/premiere-pro/using/sync-settings-cc.html)
    3. Please uncheck the option for import work space from the project, under the window icon of Premiere Pro.
    4. Try and change the user account. (https://helpx.adobe.com/x-productkb/global/create-local-administrator-account-windows.html)
    5. Please make sure Premiere Pro is not installed on the network. (check if all was installed on default locations)
    6. In case these steps do not work please perform a clean uninstall and re-install of the Adobe Application.
    >>>> Suivez ces manipulation pour une réinstalle pour WINDOWS:
    A) Redémarrez la machine en Mode Minimal :
    Windows Vista / 7 / 8 :
    - Allez à l'adresse http://support.microsoft.com/kb/929135/fr
    - Cliquez sur "Sommaire" puis sur "Procédure pour démarrer en mode minimal"
    B) Désinstallez les produits depuis l'utilitaire Adobe :
    http://helpx.adobe.com/fr/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    - Sur la page, allez à l'étape 3 et sélectionnez votre plate-forme.
    - Téléchargez l'archive et décompressez-la (clic-droit > Extraire)
    - Dans le dossier décompressé, exécutez "AdobeCreativecloudCleanerTool.exe"
    - L'option à sélectionner pour supprimer le Creative Cloud est 3
    - Sélectionnez "Clean All".
    C) Supprimez les dossiers concernant Adobe suivants :
    C:\Programmes\Adobe
    C:\Program Files\Adobe
    C:\Program Files (X86)\Adobe
    C:\Programmes\Common Files\Adobe
    C:\Program Files\Common Files\Adobe
    C:\Program Files (X86)\Common Files\Adobe
    C:\Programmes\Fichiers Communs\Adobe
    C:\Program Files\Fichiers Communs\Adobe
    C:\Program Files (X86)\Fichiers Communs\Adobe
    NB : Les dossiers suivants sont normalement cachés par le système.
    Pour y accéder,
    http://is.gd/windows_hidden
    C:\ProgramData\Adobe\
    C:\Utilisateurs\<votre nom>\AppData\Roaming\Adobe
    C:\Utilisateurs\<votre nom>\AppData\Local\Adobe
    D) Videz la corbeille.
    E) Téléchargez et installez le Gestionnaire d'abonnement depuis l'adresse suivante :
    https://creative.adobe.com/products/creative-cloud
    F) Redémarrez la machine en Mode Normal :
    - Pressez simultanément le touche Windows et la touche R
    - Tapez "msconfig" (sans guillemets) puis appuyez sur Entrée.
    - Cochez "Démarrage normal" et cliquez sur OK.
    7.
    SAVE MSINFO32:
    See for steps:
    http://support.microsoft.com/kb/300887
    1. Please press Windows Key + R to open the Run Menu
    2. Type msinfo32 and click OK
    3. While viewing the System Summary node go to File then Save (Please do not use Export)
      Pour nous envoyer le fichier, allez sur www.adobe.com/go/supportportal_fr > identifiez-vous et cliquez sur le numéro de cas.
    Si jamais vous rencontrez le moindre souci, n'hésitez pas à nous recontacter et c'est avec plaisir qu'un de mes collègues ou moi-même tenterons de résoudre votre problème dans les plus brefs délais.
    En vous souhaitant une excellente journée,
    Cordialement,
    Raphael L
    Adobe Service Clientèle.
    Nous avons récemment mis-à-jour la page de support de notre site internet vers www.adobe.com/fr/support . Vous pourrez y trouver de nombreux éléments d'aide ainsi que, sous le menu « Nous contacter », le tout nouveau service de support par Chat. Vous pourrez accéder à celui-ci après avoir sélectionné votre produit et le sujet de votre question.
    Nous vous adressons ce message en réponse au cas de support n° 0186330963 ouvert par pierre grambert.
    Nous nous permettons de vous recontacter car nous n’avons reçu aucune nouvelle de votre part concernant ce cas. Si votre problème n’a pas été résolu, merci de bien vouloir nous en informer afin que nous puissions vous fournir une assistance complémentaire.
    Pour ce faire, vous pouvez vous connecter au Portail du support technique Adobe et consulter l’historique des cas ou fournir des informations sur le cas en cours. Recherchez le numéro du cas dans la section des activités récentes. Pour ajouter des informations, ouvrez le cas et mettez-le à jour.
    Si vous ne parvenez pas à vous connecter, consultez le forum aux questions sur les identifiants et les adhésions Adobe
    Si nous ne recevons aucune nouvelle de votre part sous 7 jours à compter de la réception de cet avis, nous considérerons que votre problème est résolu et clôturerons le cas.
    Vous disposerez toutefois d’un délai de 14 jours pour le rouvrir si vous rencontrez d’autres difficultés.
    Merci,
    Le service clientèle Adobe

  • Microsoft Active Server Pages with interMedia

    Can Oracle interMedia text be integrated within ASP's to deliver images to the database, and vice versa. Looking at the sample code, it appears that Oracle uses the clipboard and annotator tools, but I didn't see anything else. The "post method" within the html pages, caused a problem with the ASP developer. Any insights, or if you can point me in a different direction would be most helpful.

    hi mark,
    I have worked with OAS and intermedia a lot but i think you can do all that you want as while extracting the data its just a URL. Only thing you have to do is i guess install Web agent as IASAPA on IAS.
    all the best
    chetan

  • Export complete database with InterMedia tables

    Hi all,
    I need to move my developement database for one schema to the same schema on another server. So I started up the "exp.exe" app and run trough the processes.
    I then moved the *.dmp file to the server and started "imp.exe". All tables, grants and alike are imported successfully, except the tables which are created with Intermedia.
    Is there a problem with exporting/importing tables with Intermedia columns? If so, is there a workaround? I need to have the other database rolling next week.
    Thank you.

    I only received your reply by email notification today....
    Yes, we are storing in the ORDSYS schema. This is how we have been told to store media's. From the manual it notes "Note that ALL Intermedia objects and procedures are defined in the ORDSYS schema".
    Better to store them in the schema that the user is using? Will then everyhting still work (Image manipulation, etc.)?

Maybe you are looking for

  • Word docs opening only in AppleWorks

    Tiger came with Microsoft Test Drive software installed. So, when I went to open an old Word doc, instead of launching my version of Word 2000, it launched Word 2005 (the test drive). I went to the Get Info panel and toggled it to select my version W

  • Why Adobe Reader XI cannot open a pdf file that can be opened with Reader 9?

    Why Adobe Reader XI cannot open a pdf file within a browser that can be opened with Reader 9?

  • How can I import Related name fields from contacts?

    I am using the drag and drop function to get contacts into a table in Numbers. However, it does not seem to work for related names (no headers for those appear). Anyone experiencing the same?

  • Unchange the Block Reason in FB02/FB09

    In the standard settings the payment block 'A' can be removed from  a document using FB02/FB09 transaction. We want that user should not be able to change the Block 'A' from the document using FB02/FB09.  In FB02/FB09, the payment block field should

  • BI Command for RRI

    Hi,   We are trying to convert 3.5 web templates to 7.0 and places we were using RRI command SAP: <SAP_BW_URL DATA_PROVIDER='DATAPROVIDER_1' CMD='RRI' RRI_RECEIVER='QURY0001'> But while converting them they are not being converted properly.  Can any