InterMedia Dicom Support

Hi!
I'm new in using Oracle and Oracle intermedia.
I' working on a project in which I have to read the metadata from a DICOM file and display the embedded images in a web browser.
I read the information from the user guide and try to implement, but I'm getting only errors and no results. Can anybody post some sample code for creating a table, importing Dicom files, extracting metadata and images?
Thank you,
Maria

Hi,
I used the presentation that you recommended and here is the code:
CREATE TABLE MEDICALIMAGES
(     ID NUMBER NOT NULL PRIMARY KEY,
     DESCRIPTION VARCHAR2(40 BYTE),
     METADATA XMLTYPE ,
     IMAGE ORDSYS.ORDIMAGE ,
     THUMB ORDSYS.ORDIMAGE ,
     IMAGE_J ORDSYS.ORDIMAGE
create or replace
procedure image_import_dicom
(dest_id number, filename varchar2, description varchar2) as
img ordsys.ordimage;
img1 ordsys.ordimage;
img2 ordsys.ordimage;
dicom_meta sys.xmltype;
ctx raw(64) := null;
begin
insert into medicalimages
values (dest_id, description,null,ordsys.ORDIMAGE.init(),ordsys.ordimage.init(),ordsys.ordimage.init());
select image into img from medicalImages where id=dest_id for update;
img.importFrom(ctx, 'file', 'IMAGEDIR', filename);
update medicalImages set image=img where id=dest_id;
dicom_meta :=img.getDicomMetadata('imageGeneral');
if (dicom_meta is not null) then
update medicalImages set metadata=dicom_meta where id =dest_id;
select image_j, thumb into img1, img2 from medicalImages where id=dest_id for update;
img.processcopy('fileformat=jfif', img1);
img1.processcopy('maxScale=80, 80', img2);
update medicalImages set image_j = img1, thumb=img2 where id=dest_id;
end if;
end;
I called the procedure with 2 files: “dummy.dcm” found in "Oracle interMedia Image Quick Start" and “brain.dcm” a dicom file found on the web, which is a valid Dicom file (I opened it with a viewer).
call image_import_dicom(2, 'brain.dcm', 'brain.dcm');
call image_import_dicom(3, 'dummy.dcm', 'dummy.dcm');
Every time I get the error:
Error report:
SQL Error: ORA-29400: data cartridge error
IMG-00705: unsupported or corrupted input format
ORA-06512: at "ORDSYS.ORDIMG_PKG", line 814
ORA-06512: at "ORDSYS.ORDIMAGE", line 89
ORA-06512: at "ORDSYS.ORDIMG_PKG", line 948
ORA-06512: at "ORDSYS.ORDIMAGE", line 586
ORA-06512: at "SYS.IMAGE_IMPORT_DICOM", line 13
29400. 00000 - "data cartridge error\n%s"
*Cause:    An error has occurred in a data cartridge external procedure.
This message will be followed by a second message giving
more details about the data cartridge error.
*Action:   See the data cartridge documentation
for an explanation of the second error message.
Error appear in
“img.importFrom(ctx, 'file', 'IMAGEDIR', filename);”

Similar Messages

  • Intermedia File Support for Photoshop PSD

    We're running Oracle Intermedia and we would like to
    integrate Photoshop File Support so that we can extract
    thumbnails, sizes and other file properties. is this
    possible and if so how?
    Thanx in advance.
    cu Dirk

    We don't currently support PSD files, our image processing is based upon JAI and it is not supported there, and we don't know were a codec can be found for PSD (and the format seems to be non-public).
    We do have a foreign image format that can support some non-supported formats, but we don't think it can be used here since PSD files have a variable sized header, and a line length word for scan lines (this is from old information... You may be able to parse if the PSD is in uncompressed format). See: http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/appdev.920/a88786/mm_imgre.htm#1039692
    We would be glad to know what your application is and what your requirements are, I would suggest you send an email to [email protected] the product manager for interMedia. We are considering future support for PSD.

  • How to extend interMedia to support for new Image Format

    Does anyone here has experience to extend interMedia to provide support for a new image format.
    I have read the related chapter in Oracle Intermedia User Guide, I'm not very clear about it. Hope a step-by-step tutorial for this topic is available.
    Thanks in advance for any idea

    Can you send the details of your application to [email protected] and explain the reasons extensibility is needed by your application?
    At this time, the only way to extend formats is to write your own procedures (ususally java stored procedures) to populate the image object... This does not extend the image processesing functionality to the new image format. Internally, this requires a translation to and from an intermediate format.
    Larry

  • Intermedia/XML Support...PLEASE ORANET

    Is there someone out there who can provide some real world examples of performing this simple task....
    I have an XML document, I want to feed it into 8i and search by content using the tags...
    Remember my XML document has over 100 tags,
    do I have to sit their and do an ADD_FIELD_SECTION for every tag....If not, where is this documented...
    Thanks for helping us Dummies....

    What follows is the content of the aforementioned demo file.
    It sets up the tables, types, and object views for the XSQL Insurance Claim Demo (that you try try live on our OTN demo site at http://technet.oracle.com/tech/xml/demo/demo1.htm )
    The intermedia-related part starts at the line that reads: ctx_ddl.drop_preference()
    In this example, an insurance claim
    has a "DamageReport" which is an
    XML Document fragment. The intermedia
    stuff at the end shows how to
    setup an XML searching index on
    the <CAUSE> and <MOTIVE> tags in
    this "DamageReport" document fragment.
    Hope this helps.
    set scan off
    set echo on
    set termout on
    REM
    REM $Author: smuench $
    REM $Date: 1999/11/27 14:48:10 $
    REM $Source: C:\\cvsroot/xsql/src/demo/insclaim.sql,v $
    REM $Revision: 1.3 $
    REM
    drop synonym claim;
    drop table settlement_payments;
    drop view insurance_claim_view;
    drop table insurance_claim;
    drop view policy_view;
    drop table policy;
    drop view policyholder_view;
    drop table policyholder;
    drop type insurance_claim_t;
    drop type settlements_t;
    drop type payment;
    drop type policy_t;
    drop type policyholder_t;
    drop type address_t;
    create type address_t as object( Street varchar2(80), City Varchar2(80), State VARCHAR2(80),
    Zip NUMBER );
    create type policyholder_t as object( CustomerId number,
    FirstName varchar2(80),
    LastName varchar2(80),
    HomeAddress address_t);
    create type policy_t as object(
    policyID number,
    primaryinsured policyholder_t);
    create type payment as object(
    PayDate DATE,
    Amount NUMBER,
    Approver VARCHAR2(8));
    create type settlements_t as table of payment;
    create type insurance_claim_t as object (
    claimid number,
    filed date,
    claimpolicy policy_t,
    settlements settlements_t,
    damageReport varchar2(4000) /* XML */
    create table policyholder( CustomerId number,
    FirstName varchar2(80),
    LastName varchar2(80),
    HomeAddress address_t,
    constraint policyholder_pk primary key (customerid) );
    insert into policyholder values ( 1044, 'Paul','Astoria',
    ADDRESS_T('123 Cherry Lane','SF','CA','94132'));
    insert into policyholder values ( 1045, 'Martina','Boyle',
    ADDRESS_T('55 Belden Place','SF','CA','94102'));
    create or replace force view policyholder_view of policyholder_t
    with object OID (customerid)
    as select customerid, firstname, lastname, homeaddress
    from policyholder;
    create table policy(
    policyid number,
    primarycustomerid number,
    constraint policy_pk primary key (policyid),
    constraint customer_fk foreign key (primarycustomerid) references policyholder
    insert into policy values ( 8895, 1044 );
    insert into policy values ( 9054, 1045 );
    create or replace force view policy_view of policy_t
    with object OID (policyid)
    as select p.policyid,
    (SELECT value(phv)
    from policyholder_view phv
    WHERE phv.customerid = p.primarycustomerid) as primaryinsured
    from policy p;
    create table insurance_claim(
    claimid number,
    filed date,
    claimpolicy number,
    damageReport varchar2(4000) /* XML */,
    constraint insurance_claim_pk primary key (claimid),
    constraint policy_fk foreign key (claimpolicy) references policy
    insert into insurance_claim values (77804, '01-JAN-99',8895,
    'The insured''s <VEHICLE>car</VEHICLE> broke through the guard rail and '&#0124; &#0124;
    'plummeted into a ravine. The cause was determined to be <CAUSE>faulty '&#0124; &#0124;
    'brakes</CAUSE> Amazingly there were no casualties.');
    insert into insurance_claim values (12345, '11-MAR-98',8895,
    'Officer George Lumden clocked the insured going 98 miles per hour in a '&#0124; &#0124;
    '45 zone. He wrote up the offender for an <CAUSE>excess speed</CAUSE> '&#0124; &#0124;
    'violation. Insured claims damage was done before he exceeded the speed '&#0124; &#0124;
    'limit.');
    insert into insurance_claim values (90998, '18-JUN-97',9054,
    'San Francisco Fire Department arrived on scene at 9:08pm i n response '&#0124; &#0124;
    'to an anonymous call. Fire went to four alarms. Fire Chief Rodriguez '&#0124; &#0124;
    'immediately suspected <CAUSE>arson</CAUSE> based on clues left at the '&#0124; &#0124;
    'scene.');
    insert into insurance_claim values (11876, '20-APR-98',9054,
    '<SUSPECT>Colonel Mustard</SUSPECT> underwent DNA testing and was '&#0124; &#0124;
    'confirmed as the killer. The insured''s wife was '&#0124; &#0124;
    '<CAUSE>murdered</CAUSE> with a candlestick in the library.');
    create table settlement_payments(
    claimid number,
    PayDate DATE,
    Amount NUMBER,
    Approver VARCHAR2(8),
    constraint claim_fk foreign key (claimid) references insurance_claim
    insert into settlement_payments values (77804,'05-JAN-99',7600,'JCOX');
    insert into settlement_payments values (12345,'15-MAR-98',1800,'MFOX');
    insert into settlement_payments values (12345,'23-MAR-98',7800,'ULOWE');
    insert into settlement_payments values (90998,'01-JUL-97',1500,'JCOX');
    insert into settlement_payments values (11876,'05-JAN-99',7600,'JCOX');
    create or replace force view insurance_claim_view of insurance_claim_t
    with object OID (claimid)
    as select c.claimid,c.filed,
    (SELECT value(pv)
    from policy_view pv
    WHERE pv.policyid = c.claimpolicy),
    CAST(MULTISET(SELECT PAYMENT(sp.paydate,sp.amount,sp.approver) as Payment
    from settlement_payments sp
    WHERE sp.claimid = c.claimid) AS settlements_t),
    c.damagereport
    from insurance_claim c;
    commit;
    begin
    ctx_ddl.drop_preference('Demo');
    end;
    begin
    ctx_ddl.create_preference('Demo', 'basic_lexer');
    ctx_ddl.set_attribute ('Demo', 'index_themes', '0');
    ctx_ddl.set_attribute ('Demo', 'index_text', '1');
    ctx_ddl.create_section_group('demo_xml', 'xml_section_group');
    ctx_ddl.add_zone_section('demo_xml', 'CAUSE', 'CAUSE');
    ctx_ddl.add_zone_section('demo_xml', 'MOTIVE', 'MOTIVE');
    end;
    create index ctx_xml_i on insurance_claim(damagereport)
    indextype is ctxsys.context
    parameters('LEXER Demo SECTION GROUP demo_xml');
    create synonym claim for insurance_claim_view;
    null

  • DICOM 11g vs. 10gr2

    Hello,
    Does anyone of you know which are the differences between Oracle 11g DICOM support and 10gr2 support for it?
    It seems 11g has an own datatype (ORDDicom), whereas 10gr2 re-uses the ORDImage for storing medical images. Now my question is: Are there any differences in the functionality of supporting medical images, for example can 11g extract more metadata (scientist, lab etc.) than 10gr2?
    Thanks in advance,
    Martin

    Hi Martin,
    Yes, as you've discovered, there are differences in the new DICOM support in 11g. First let me say that the ORDImage support introduced in 10gR2 is still there. However, if you haven't started using Oracle's DICOM support, you should use the new ORDDicom support introduced in 11g. If you are currently using the 10gR2 DICOM support, please see Appendix E of the Oracle Multimedia DICOM Developer's Guide for ways to take advantage of the new features in 11g.
    Now for the differences between 11gR1 and 10gR2.
    10gR2 provided the following features:
    - metadata extraction of a fixed set of DICOM attributes (about 100) into a fixed Oracle defined schema allowing DICOM images to be search and indexed by these attributes
    - read support for the DICOM format and conversion from DICOM to other supported
    image formats
    11gR1 provides much more extensive features:
    - a new object type with DICOM specific attributes (ORDDicom)
    - complete and extensible metadata extraction. All DICOM metadata, including private tags, or any user defined subset of the metadata, may be extracted into an XML document using a user defined or Oracle provided default XML schema
    - DICOM conformance validation. Given DICOM content and a set of user-specified conformance rules and actions, we can verify that the DICOM content adheres to the conformance rules.
    - DICOM image processing
    - the ability to make DICOM content anonymous by removing or overwriting user-specified DICOM attributes
    - DICOM content creation. In 10gR2 we had read only support for DICOM. In 11gR1, we can write DICOM. For example, we can create DICOM from JPEG + metadata, or we can create a new DICOM object with updated metadata.
    - a runtime updatable DICOM datamodel, allowing the runtime behavior to be modified without interfering with a running DICOM archive.
    More information may be found here:
    http://www.oracle.com/technology/products/intermedia/pdf/11g_collateral/dicom11g_feature_over.pdf
    Please feel free to contact our product manager, Melli, for assistance (Melliyal.Annamalai).
    Sue

  • How to insert image into table and to in Oracle 9i intermedia?

    Mr Lawrence,
    I want to ask something:
    I use Oracle 9i intermedia
    If i use this script:
    CREATE TABLE images (
    file_name VARCHAR2(100) NOT NULL,
    image ORDSYS.OrdImage
    then
    CREATE OR REPLACE DIRECTORY imgdir AS 'd:/data';
    then
    INSERT INTO images (file_name, image)
    VALUES ('tree', ORDSYS.ORDImage.init('file','imgdir','tree.jpg' ));
    I put tree.jpg in directory d:/data in my hard drive.
    Is my tree.jpg file had already get in to my images table?
    I'm little confuse, because when i check my table with this script:
    select file_name, i.image.getWidth() from images i;
    it's show that my i.image.getWidth() for file_name tree is empty.. that mean my tree.jpg doesn't get in to my table.. am i correct?
    N also i want to ask how to display to screen all of my image from images table?
    Is it posible Oracle 9i intermedia to support display image from table?
    How?
    thanks Mr Lawrence

    -- First step would be to create a directory in oracle and map it to the folder where your image resides.
    create directory image_dir as *'c:\image_dir';*
    Then you would have to use a procedure to insert the image in your table. SO first create a table to hold the image. Note that you have to use a BLOB to insert the image.
    CREATE TABLE test_image
    ID NUMBER,
    image_filename VARCHAR2(50),
    image BLOB
    Now let's write the procedure to insert the image in the table above.
    CREATE OR REPLACE PROCEDURE insert_image_file (p_id NUMBER, p_image_name IN VARCHAR2)
    IS
    src_file BFILE;
    dst_file BLOB;
    lgh_file BINARY_INTEGER;
    BEGIN
    src_file := BFILENAME ('image_DIR', p_image_name);
    -- insert a NULL record to lock
    INSERT INTO temp_image
    (ID, image_name, image
    VALUES (p_id, p_image_name, EMPTY_BLOB ()
    RETURNING image
    INTO dst_file;
    -- lock record
    SELECT image
    INTO dst_file
    FROM temp_image
    WHERE ID = p_id AND image_name = p_image_name
    FOR UPDATE;
    -- open the file
    DBMS_LOB.fileopen (src_file, DBMS_LOB.file_readonly);
    -- determine length
    lgh_file := DBMS_LOB.getlength (src_file);
    -- read the file
    DBMS_LOB.loadfromfile (dst_file, src_file, lgh_file);
    -- update the blob field
    UPDATE temp_image
    SET image = dst_file
    WHERE ID = p_id AND image_name = p_image_name;
    -- close file
    DBMS_LOB.fileclose (src_file);
    END insert_image_file;
    Now execute the procedure to insert the image.
    EXECUTE insert_image_file(1,'test_image.jpg');
    Thanks,
    Aparna

  • MPEG support

    interMedia Video supports a Compression format of MPEG according to table C-1 of the documentation, although it refers to this as 'MPEG Still Image'.
    I'm no expert on MPEG and so I tried picking an average MPEG off the web and storing it in ORDSYS.ORDVIDEO. This didn't work, although AVI files etc seemed to.
    So, my question - is there something wrong with the MPEG I tried or does 'MPEG Still Image' mean something other than normal 'MPEG'. If MPEG isn't supported, do Oracle intend to support this soon? (as this seems to be a popular format!)
    Thanks
    Jason.

    We do not support MPEG Video at all. We support MPEG Audio, though. 'MPEG Still Image' is a type of compression formats that can be applied to QuickTime movies. It is not the type of MPEG you are expecting (such as *.mpg or *.mpeg).
    Even though interMedia doesn't natively support MEPG Video, you can still upload and retrieve MPEG. interMedia won't understand it - this means that you can't use some methods such as setProperties().
    I don't know how you stored your 'average MPEG', but as long as you simply try to store and retrieve the file, it should work fine.
    null

  • Looking for interMedia web sites using text retrieval

    I'm looking for web sites which use interMedia to support their site search function. My goal is to evaluate intermMedia for use as a full text search engine.
    I'm particularly interested in sites which use the thesaurus features.
    Thanks.

    There are many sites on the Internet that use interMedia Text for site search and for catalog search.
    While we don't track which Oracle customers use particular components of the database such as interMedia, here are a few good examples for you to try :-
    oracle.com - of course
    myCNN.com - CNN's personalized news service
    bol.com - on-line books, music etc.
    - Steve B.
    null

  • Intermedia, XML and brasilian portuguese

    I'm trying to store XML documents into Clob columns of tables and indexing that documents with InterMedia XML support.
    But even the most quick example does not work with my language, that is brazilian portuguese. I'm not interested in the topic search, but I just don't know how to create the index to my language and search by tags.
    Looking in the docs, I tryed the following options:
    1 create a preference with stemmer null:
    execute ctx_ddl.create_preference('NULLWORD_PREF','BASIC_WORDLIST');
    execute ctx_ddl.set_attribute('NULLWORD_PREF','STEMMER','NULL');
    2 create auto sequencer
    ctx_ddl.create_section_group('auto', 'AUTO_SECTION_GROUP');
    3. create the index, with NULL filter
    create index testeXml on myDocs ( doc )
    indextype is ctxsys.context
    parameters ('Filter CTXSYS.NULL_FILTER Wordlist NULLWORD_PREF section group auto');
    But it not works.
    Does Interbase work with non-english databases ? If no, How can I use it with my language ?

    I succeded using INDEX_THEMES NO lexical preference.
    Thanks

  • Implement DICOM Viewer using FLEX

    Anyone has tried to develop simple DICOM viewer using FLEX?
    It sounds interesting but it is rather complicated using FLEX
    to do so.

    I'm also looking for Dicom support. If anyone has/knows
    something please let me know as well.

  • Outlook is disconnected while connected over VPN

    In our Beijing office a user's Outlook cannot connect to exchange server, however, when he connect to VPN his Outlook can normally send or receive email.
    It is so funny, have you ever encountered a similar situation or maybe you can provide a useful suggestion?

    Hi Frank,
    Which version of Exchange server are you using?
    Does this issue only happen to the certain user?
    Do you have Outlook Anywhere enabled?
    Did you get any error message when it failed to connect?
    Please provide more information about this issue so that we can fix it more efficiently.
    Meanwhile, you may follow this link to troubleshoot the issue:
    http://hosting.intermedia.net/support/kb/?id=1183
    Please Note: Since the web site is not hosted by
    Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Since this issue is also related to Exchange server, I'd recommend you post a same question in the Exchange forum to see if there is any good suggestions:
    https://social.technet.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • XML in the database

    Having just attended a session on Oracle/XML at OpenWorld... it
    is still not clear where or when Oracle will provide a suitable
    solution for the storage and retreival of XML documents with
    highly-flexible schemas.
    As I understand it, the existing solutions (8.1.5) (with
    performance as an imporant consideration) are:
    - Use Intermedia with section searching/indexing. This is not
    suitable for applications with highly-flexible schemas. From my
    understanding of Intermedia, indexing for section searching
    requires explicit section definitions -- an expensive operation
    for large databases. This would be similar to creating a new
    index on a table for each new element the user desires to search
    on.
    - Map to a structured schema. While this is effective for
    applications with very static schemas or leveraging existing
    database schemas, with a highly-flexible document schema this
    implies either a) creating new "shadow" tables for each distinct
    schema or b) altering the table with each addition of a new
    document element.
    I am very eager to see what Oracle has to offer in this area. I
    can find no technical documentation discussion any soon-to-come
    approaches. I have heard mention at OpenWorld of expansions to
    Intermedia to support name-value pair searching, etc., but still
    no in-depth explanations.
    Can anyone here shed any light on this?
    null

    Craig Willis (guest) wrote:
    : Having just attended a session on Oracle/XML at OpenWorld...
    it
    : is still not clear where or when Oracle will provide a
    suitable
    : solution for the storage and retreival of XML documents with
    : highly-flexible schemas.
    : As I understand it, the existing solutions (8.1.5) (with
    : performance as an imporant consideration) are:
    : - Use Intermedia with section searching/indexing. This is not
    : suitable for applications with highly-flexible schemas. From
    my
    : understanding of Intermedia, indexing for section searching
    : requires explicit section definitions -- an expensive
    operation
    : for large databases. This would be similar to creating a new
    : index on a table for each new element the user desires to
    search
    : on.
    : - Map to a structured schema. While this is effective for
    : applications with very static schemas or leveraging existing
    : database schemas, with a highly-flexible document schema this
    : implies either a) creating new "shadow" tables for each
    distinct
    : schema or b) altering the table with each addition of a new
    : document element.
    : I am very eager to see what Oracle has to offer in this area.
    I
    : can find no technical documentation discussion any soon-to-
    come
    : approaches. I have heard mention at OpenWorld of expansions
    to
    : Intermedia to support name-value pair searching, etc., but
    still
    : no in-depth explanations.
    : Can anyone here shed any light on this?
    If you are looking for a document-centric solution, you should
    check out the Oracle Internet File System (iFS) which supports
    XML. They have a demo at the Oracle campground.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    null

  • Windows XP SP3 and Outlook 2010 can't connect with Exchange 2010 or Exchange 2013

    XP+SP3+Outlook 2010 can't connect to Exchange 2010&2013 in the internal network without safe mode.

    Hi,
    Did you get any error messages?
    Do you have Outlook Anywhere and autodiscovery set up properly?
    Can you ping the Exchange server?
    Please use Test Email AutoConfiguration
    to test if the Autodiscover service is configured properly. See:
    https://hosting.intermedia.net/support/kb/default.asp?id=2150
    We can also use the remote connectivity analyzer to troubleshoot the issue:
    https://testconnectivity.microsoft.com/
    In addition, turn off your firewall and anti-virus to check the result.
    Hope this helps.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • How to reduce the database size based on MS SQL/Oracle?

    Hi,
    I had deleted severy clients via SCC5, but the database size is more and more bigger. Do you know how to reduce the database size.
    my platform is: NT, MS SQL 2005
                           NT, Oracle 10.2
    Best Regards,
    Simon Shen

    Hi Simon,
    In the case of SQL you need to check how many space free you have in your datafiles and the based on that you need to Shrink them using DBCC SHRINKFILE command.
    Find a couple of reference docs here,
    http://www.intermedia.net/support/kb/default.asp?id=996
    http://doc.ddart.net/mssql/sql70/dbcc_21.htm
    Also i'm pretty sure that if your check the properties of the datafiles in MSSQL Enterprise Manager you get a "Shrink" option.
    Regards
    Juan
    Please reward with points if helpful

  • Incoming email from UNIX system not working

    Hi,
    I have a weird issue with incomoing email in my SP2010 farm.
    All is working well except for email being sent from a UNIX box.
    We've enabled a list to receive emails.
    When sending a mail from Outlook it is working fine, the email ends up in the SP list.
    When sending a mail from the UNIX machine the email is never delivered to the list.
    The list is configured to accept emails from any sender.
    Any thought is welcome, I don't really know where to look for this.
    Thanks

    Hi,
    Please make sure you have set the library to receive message from any sender.
    Then please check the links below and see if you could find any related error message:
    http://technet.microsoft.com/en-us/library/ff453924(v=office.14).aspx
    http://blogs.msdn.com/b/george_bethanis/archive/2012/05/25/sps2010-cannot-send-incoming-emails-to-lists-libraries.aspx
    https://hosting.intermedia.net/support/kb/default.asp?id=2040
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

Maybe you are looking for

  • Displaying navigation item in Navigation Pane

    1. I created a Portal in my 11.1.1.8 Portal Builder. 2. For that portal, I added a few links to navigation. Portal Home -> Portals -> Portal Builder -> "Administer" corresponding to my portal -> Assets-> Navigation -> Edit on the default navigation 3

  • Can't install sound blaster wow headset driver for tap chat use

    ?I get an error I-00 when installing. I google it, this is the install.log file:? <div class="message-format"><div class="rplol">Sound Blaster World of Warcraft Headset] GUID={0429B343-D023-4524-89BC-0478E0D9E3C3}? Error=I-00 Bitmaps not found. So wt

  • Passing parameters to an applet dynamically

    I am looking for suggestions on how I can pass parameters to my applet which generates a simple bar graph. If I pass parameter names and values using HTML tags the number of bars are fixed. I want my applet to accept variable number of values for the

  • Trying to update my iPhone 4 software

    Trying to update the software on my iPhone 4 but it's saying could not be restored error occurred (3194) any ideas.

  • Unable to aquire license. Unknown content provider...

    Hi I have installed the Ovi Player and imported everything in my I tunes library, I have transferred a playlist to my Nokia 5230. Some of the songs play okay but when I try to play the others I get this message.'Unable to aquire license. Unknown cont