Decompress files in HTTP Content Server

Hello,
I have a problem with the consistency of files stored in HTTP content server. That is to say I have an inconsistency between the object and content of the linked file.
I have a controller program for consistency but I do not know how to decompress.
The files in the content server are compressed with CSCompress (I think). Is there a possibility to decompress  this files ?
Tank you.
Michel

Hi Michel,
Conerning your questions regarding the possibility to decompress the
files outside the SAP system, I'm afraid this is not possible. The
document files are stored in a compressed format. Even if you managed
to extrace the files from the tables, their content still remains
compressed. In other words, you still have to rely on SAP Content
Server's decompression logic to generate the original content. The only
way to retrieve the files, therefore, is by using the SAP Content
Server HTTP Interface.
Regards,
David

Similar Messages

  • TREX not working for e-recruiting with HTTP content server

    We have a separate e-recruiting instance where we have only e-recruiting functionality installed. In this system we are using Storate type as "http content server instead of standard setting "SAP system database" for HR_KW content repository via transaction code "OAC0"
    Following are the details
    Document Area: HR_KW
    Storage type : HTTP Content Server
    Version no. 0046 Content Server version 4.6
    HTTP server vd24cs02.sce.com
    Port Number 8080 SSL Port Number
    HTTP Script archive
    Phys. path /usr/sap/N09/SYS/global/
    Points to be noted:
    1) TREX Search functionality for Job postings etc is not
    working with this setting, however if we use HR_KW_CONT (storage type=03 SAP System database) , above mentioned functionalities work. We observed that xml files required for TREX search are also not getting created when we change the settings.
    2) We observed that when we change the storage type the indexing job is successful but application log shows some failures in reading/modifying xml files
    Please let me know what are the settings/ procedure to use a different storage type instead of standard setting delivered with the product. Anything related to the setting for above requirement

    Hi All,
    I may have a similary problem but I'm not entirely sure.
    I have been tasked with setting up a simple java servlet to authenticate against a BOXI (Business Objects) server, from my tomcat server (tomcat 5.5) on my windows XP  desk top machine. I will add more info on this shortly.
    I have been supplied with a krb5.ini file and the bscLogin.conf file as follows:
    bscLogin.conf :
    com.businessobjects.security.jgss.initiate {
    com.sun.security.auth.module.Krb5LoginModule required debug=true;
    krb5.ini[libdefaults]
    default_realm = ADF.SOMEWHERE.CO.UK
    dns_lookup_kdc = true
    dns_lookup_realm = true
    default_tgs_enctypes = rc4-hmac
    default_tkt_enctypes = rc4-hmac
    [realms]
    ADF.SOMEWHERE.CO.UK = {
    kdc = DC90.ADF.SOMEWHERE.CO.UK
    default_domain = ADF.SOMEWHERE.CO.UK

  • Http content Server - putCert specification

    Hello,
    I am trying to develop a HTTP Content server for connection with SAP but I encounter difficulties while implementing security.
    The methode putCert stores the certificate from SAP but it seems like it is a X509 v1 certificate and not a V3. like mentionned in the spec doc
    Moreover SHA1 seem to be used and not MDS.
    Is there any particular reason?
    Thank you

    Ok finally managed to implement security on the SAP Content Server.
    this code snippet works:
         Provider bc = new BouncyCastleProvider();
            int i = Security.addProvider(bc);
            byte[] message2Sign = "E25B5CECB6846E1F4F92C9E9058BC415FDrCN%3DC1120071026161701".getBytes();
            String good = "MIIBlAYJKoZIhvcNAQcCoIIBhTCCAYECAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGCAWAwggFcAgEBMBMwDjEMMAoGA1UEAxMDQzExAgEAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wNzEwMjYxNDE3MDFaMCMGCSqGSIb3DQEJBDEWBBT/ObaVw5qhQRX5MTMnyVqptXhwnTCBpgYFKw4DAhswgZwCQQEi9Vy1IpGpgBwpby66sV16jIHOJkoJI/blRDbeogY2IS69a9JmlAfQEnttGqA3jv/QAf98zFtmFpsDwniO1AhUBQNzq3BaLZ3Vj2dGBB5HPZh5eBa0CQHsZv4pNumfHRNhmlbKK9TDgPQrDDnG7F51g1FhTAFvceltg20WjHE/dFaH8jkigzaJDkFIuV50yGPytGPYmekELzAtAhUBBudqwTj+JNfkpr6BausHDZpqMmUCFC9rWauPQhjYNp4tiHWPmpgw9NXl";
            String bad = "MIIBlAYJKoZIhvcNAQcCoIIBhTCCAYECAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGCAWAwggFcAgEBMBMwDjEMMAoGA1UEAxMDQzExAgEAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wNzEwMTgxMTQxNTVaMCMGCSqGSIb3DQEJBDEWBBS2xHiqu4ZssgcURXnsqxhf5kTCBpgYFKw4DAhswgZwCQQEi9Vy1IpGpgBwpby66sV16jIHOJkoJI/blRDbeogY2IS69a9JmlAfQEnttGqA3jv/QAf98zFtmFpsDwniO1AhUBQNzq3BaLZ3Vj2dGBB5HPZh5eBa0CQHsZv4pNumfHRNhmlbKK9TDgPQrDDnG7F51g1FhTAFvceltg20WjHE/dFaH8jkigzaJDkFIuV50yGPytGPYmekELzAtAhUBOKbZGs22bNiMQ8UkPL4vaPewDwCFFof2Pv04DXMDPj2SnZ7wMcCKTfH";
            BASE64Decoder b64 = new BASE64Decoder();
            byte[] signature = b64.decodeBuffer(good);
            // get public key from cert
            File toto = new File("/tmp/toto.txt");
            FileInputStream fis = new FileInputStream(toto);
            PKCS7 test = new sun.security.pkcs.PKCS7(fis);
            java.security.cert.X509Certificate[] certs = test.getCertificates();
            //PublicKey pk = certs[0].getPublicKey();
            // construct PKCS7 data object
            CMSProcessable processable = new CMSProcessableByteArray(message2Sign);
            CMSSignedData s = new CMSSignedData(processable, signature);
            // get 1st signer infos
            SignerInformationStore signers = s.getSignerInfos();
            Collection c = signers.getSigners();
            Iterator it = c.iterator();
            SignerInformation signer = (SignerInformation) it.next();
            // verification
            boolean test2 = signer.verify(certs[0], "BC");
            System.out.println("Ok = " + test2);

  • ArchiveLink with SAP HTTP Content Server configuration using SAPdb  MaxDB

    We have configured SAP 4.7 to use ArchiveLink to store outgoing PO’s.   The PO’s are in PDF format and are to be stored on an SAP HTTP content server using MaxDB.    We believe everything is setup but when we go to retrieve a stored file, using and HTTP link we do not see the document.   Here is  a sample HTTP link:
    http://company-sap20.company200-sap.com:1090//ContentServer/ContentServer.dll?get&pVersion=0046&contRep=ZT&docId=47E9C60A28145211E10000000A0126F3
    Can anybody give me a few pointers?
    What table in the MaxDB shall I look at?  Where is the docID being passed to?

    I'm sorry to say that I don't know.
    AFAIK, the report gets documents from the document store. The Contentserver itself runs embedded in the Web-Server.
    Besides the trial to write a trace file with the Contentserver (see Contentserver.ini somewhere on your Web-Server) I strongly recommend to open a customer message.
    Regards  Thomas

  • Http content server

    hello,
    I want to create manually the KPro-metadata for documents. do you knwo which tables (like SDOKSTCA) I have to consider and make entries?
    the next step is to migrate still existing documents on a sap http content server into the sap kpro and sap dvs.
    which steps I have to made? which fm´s tables do I need?
    is there any documentation in the web for this topic?

    Check out this online help.
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/58/2c0795e3914868ad716a524c158cb5/frameset.htm">Defining Content Repositories on the SAP Web Application Server</a>
    Regards
    Raja

  • Store archiving IDoc's to an HTTp content server

    Hi Guru's,
       I want to store the archived IDoc's to an HTTP content server. 
    i have created an content server on OAC2 and i dont know how to link the archived IDocs to an HTTp content server.
    I searched many forums, but i cant get the exact solution for this.
    Could anyone help me on this..  pls...
    Thanks in advance,
    murugan..

    Hello,
    I will take a final call on this - As i understand all the configuration is correct but not updating in link tables.
    I also understand system Id is ok as PO and IDoC are working.
    In Content repository creation for PO & IDoC you will be taking document area as Data Archiving but for Printlist content repo you have to select ArchiveLink.
    If you have done above then check connectivity and send the certificate
    In your Archive server (IXOS, EASY, DOCUMENTUM or so on ) Check same content repository is properly configured.. if possible refresh it. Check for certification from SAP.
    You are facing connectivity issue so cross check carefull all archive server level.
    Lastly check oss note
    Let us hope for the best.
    -Thanks,
    Ajay.

  • SAP HTTP Content Server and ECC 6  to be installed on same Windows system?

    Hi Gurus:
    I have ECC 6 (IDES) running on a Windows 2003 server already.  I plan to install the SAP HTTP Content server on the same machine/same operating system.   I will be the only user, just testing it out and learning things myself.
    Is this advisable?
    Also does anyone know the latest set of Content Server DVDs/CDs to download ?

    Deepak:
    Thanks a lot. 
    My Content Server is running OK now.
    Two repositories are created: one is DMS, one is on ArchLink (ArchiveLink).
    But when I am trying to attach a PDF document to a PO, I got this:
    HTTP error: 401 Unauthorized
         Message no. CMS025
    Diagnosis
         Error in accessing via HTTP
         401 Unauthorized
    Any clue???

  • Migration of SAP DMS documents from RFC Archive to SAP HTTP Content Server

    Can anyone verify the correct OSS for the migration of documents from an RFC Archive repository (non SAP) in SAP DMS to a SAP Content Server HTTP Repository. Most of the OSS notes seem to indicate HTTP to HTTP migrations or based storage category migrations.
    Which is the most suitable for this?
    Edited by: Athol Hill on Oct 30, 2009 2:35 PM

    Dear Athol,
    If you want to move the originals from an archive or vault to a Content  
    Server, please use the DMS_KPRO_CONVERT and DMS_KPRO_CONVERT2 report I   
    would kindly ask you to see teh documentation on DMS_KPRO_CONVERT report 
    in transaction SE38, which explains the whole process and gives          
    necessary information.                                                                               
    This conversion program offers two possibilites:                                                                               
    - Complete migration:                                                    
    The meta data of the document info record and the checked-in original    
    application files are migrated together. The checked-in original         
    application files are transported into the storage catgories.                                                                               
    - Step-by-step migration:                                                
    In the first step meta data is migrated. The original application files  
    remain in the old storage data. The migration of original application    
    files starts after you have processed the files with the integrated      
    viewer and checked them into a secure storage area.                                                                               
    Best regards,
    Christoph

  • FILE -- XI -- DMS CONTENT SERVER

    Hi all,
    Me having a scenario where have to move a file from file server to DMS Content Server.Plese help me out how data can be made to moved into Content server.
    Is there any possibility oyhrt than that...suggest plz
    Srini

    Hello,
    You can use File to File using FTP at the Receiver side
    And also you are handling the File  data,you may use the File content conversion.In Receiveing File communication channel ,select the FTP connection and provide all the Technical details regarding the DMS Content Server .
    follow the links
    Simple file to file
    Have a look at this wiki..
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/flatFILETOFLATFILE&
    for FTP
    /people/shabarish.vijayakumar/blog/2006/08/01/along-came-a-file-adapter-mr-ftp-and-rest-of-the-gang
    for FCC
    /people/venkat.donela/blog/2005/06/08/how-to-send-a-flat-file-with-various-field-lengths-and-variable-substructures-to-xi-30
    <b>********Reward points if found useful</b>

  • Migration of documents from a http content server into sap kpro und sap dvs

    hello,
    I want to migrate documents from an http 4.5 content server into the sap knowledge provider (kpro) and in sap dvs with an abap program.
    I know I have to create a PHIO and a LOIO and write it in the tables DMS_PH_CD1 and (only the LOIO) in DMS_DOC2LOIO.
    Where I have to write my url for accessing the document on the content server?In which table?
    What fm´s do I need to create the PHIO´s and LOIO´s?
    Has anyone an idea and hints (like weblinks) to integrate documents from an content server into kpro and sap dvs?

    Hello,
    the private key, where the hash is signed with is stored
    in your AppServer directory $DIR_INSTANCE/sec and is
    called SAPSYS.PSE. Where the PSE is a secude (www.secude.de) specific format which contains the private and the publik key.
    But I guess you won't get the private key, because its private, unless you are the Administror
    Then signig is done via the normal industry standards. (http://www.rsasecurity.com/)
    regards,
    mumba.

  • How to get the file on the content server via ABAP

    Hi
    We are working on an abap that should download certain files stored on the content server and store them on a different file location using  GUI_DOWNLOAD. How can we retrieve the files (PDF's) via ABAP from the contentserver?
    Hope someone can help
    Cheers

    Hi,
    I think the DMS BAPIs could be useful here. For example you can use BAPI Document_CheckOutViewX or Document.CheckOutView2. You will find the documentation for these BAPIs in transaction BAPI under subtopic 'Cross-Application-Components'.
    Further maybe the information in the SAP note 504692 and 796709 could be useful too.
    Best regards,
    Christoph

  • HTTP Content Server - custom parameters

    Hello!
    Is there any possibility (even by using ABAP) to send parameters other than those 10 standard ones (stated in sap-help) in HTTP-GET request of the Content Server HTTP interface?
    For example, I would like to send username of the current user who starts the HTTP-GET request. Is it possible? If yes, please show me how. On the other hand, if you are SURE that it is NOT possible, please reply as well, so that I can stop trying.
    Are there alternative ideas on how to get the current username, even by calling a BAPI or RFC back from the target application?
    Thanks in advance!
    Kind regards,
    Igor

    Hello!
    Is there any possibility (even by using ABAP) to send parameters other than those 10 standard ones (stated in sap-help) in HTTP-GET request of the Content Server HTTP interface?
    For example, I would like to send username of the current user who starts the HTTP-GET request. Is it possible? If yes, please show me how. On the other hand, if you are SURE that it is NOT possible, please reply as well, so that I can stop trying.
    Are there alternative ideas on how to get the current username, even by calling a BAPI or RFC back from the target application?
    Thanks in advance!
    Kind regards,
    Igor

  • Original File storage in Content Server

    Hi Gurus,
    My client has installed Content server for SAPDMS. Before installing content server we were storing files in the sap database.
    when i store original files from the transaction CV01n, i want to find out whether the files are stored in the sap database or CS.
    SInce earlier in the check-in document  screen,  the storage categories mentioned are seen. Now again after we installed content
    server we can see them with the new storage category of content server, since i have defined all these in the VAULT.
    My question is,  there is any path between the DATA carrier and the storage conditions.
    Kindly solve this gurus.
    Regards
    Poonguntran

    Anybody can help he out of this issue.

  • Display different types of file formats from contents server on web UI

    Hi,
    I have to read different types of documents from content server and display it in web page using webdynpro abap.
    Different types of documents are : Tif, Jpeg, BMP, PNG etc. need to be convert into gif format and display
    Txt files as it is.
    PDF files as it is.
    Microsoft office documents as it is.
    ALF files i.e. printlists to be shown on web page.
    Please anyone has any information regarding this let me know ASAP.
    Thanks & Regards,
    Manali

    hi ,
    pls refer the below thread :
    Dynamic Use of Mime in component
    n check wid thomas reply in the thread :
    Create the cached response object that we will insert the  content
    Well you can manipulate the MIME content at runtime by using the API: CL_MIME_REPOSITORY_API. However if your content is temporary, it is more efficient to just place the content directly into the ICM cache. You don't have the overhead of having to both write and then delete it from the database. Here is an example of how you can do this:
    I hope it wud be helpful
    rgds,
    amit

  • Error when trying to store content in the HTTP content server.

    I call the FM SDOK_PHIO_STORE_CONTENT to store a document into the pre-configured content server(the server was configured with transaction OAC0 and the connection is tested ok). But the sy-subrc returns 2 (not_allowed). I debugged into this FM and found the specific error is TRANSFER_ERROR in the subroutine STORE_CONTENT.
    I have no idea in which situation this error will occur. Anyone can help?
    Thank you.

    Hi Tang,
    Though long back, you faced this error.. Any chance you remember the solution for it? Even am facing the same issue. Not able to find a solution for it anywhere. Its getting tough. Your help would be of great helppp...
    Many thanks in advance.
    Awaiting for your reply, kindly do help me out in this.

Maybe you are looking for

  • I  have some more problem in the  web.xml file and url-pattern in my  syste

    HI ALL! How can I create and place the web.xml and URL-parrten.Because I run the tomcat in my computer with ME system. Hoc

  • Problem in Web service - document style

    Hi, I want to create document style webservices using axis tool. so i need any sample codes and procedure for creating document style web services using axis tool . If any one help me in regarding this i will be thankfull to u. regards tuty.richard

  • Purchase Requisition Released History

    Hello! I would like to know in which MM table, have the Release History for a Purchase Requisition. For Example, The system genarate a release strategy for 3 levels.  After the correspoding approvals, ¿in which MM table the system save this Release H

  • Migration SAP SolMan 7.1 MSSQL 2008 R2 Enterprise Edition to MSSQL Standard Edition

    Hello, I try to migrate a SAP SolMan 7.1 on Windows MSSQL 2008 R2 ENTERPRISE EDITION to MSSQL 2008 R2 STANDARD EDITION. In the source system (MSSQL 2008 R2 ENTERPRISE EDITION) there is "table compression" and "partitioning" active. the MSSQL STANDARD

  • Install OLAP

    Hi, I have installed oracle 10g and applied 10.2.0.3 patch set and interim patch also. During first install I didn't install OLAP and I didn't choose OLAP while installing patch set. I am getting below ORA- error in alert log. Errors in file /opt/app