SAP AL- IBM Common store: Incomplete url returned by FM 'SCMS_DOC_URL_READ'

We are calling standard FM SCMS_DOC_URL_READ from a program started in the SAP GUI in order to retrieve the URL for an image stored in our document archive of type IBM Common store (HTTP communication via the Archive Link inteface). 
When calling the FM with the parameters defined below, the returned value (url) is too short; the returned security key in the url has been cut off.
(The returned parameter lv_url is defined as CHAR 4096, so it should be long enough.)
The connection to the archive is working fine. Images kan be displayed via OAAD, so there is no communication problem between SAP and the IBM archive.
The same source code is used successfully in another installation of rel 4.6C with an integration to a SAP HTTP content server.
The only adjustments we have made for this installation integrated with IBM common store are :
- value of “comp_id” was set to space
- value of “force_get” was set to ‘X’. 
The call to FM SCMS_DOC_URL_READ is defined as follows:
DATA:   lv_url TYPE SAPB-URI,       “char4096
Get URL.
       CALL FUNCTION 'SCMS_DOC_URL_READ'
           EXPORTING
               stor_cat             = space
               crep_id              = iv_archiv_id
               doc_id               = iv_archiv_doc_id
               comp_id            = space
               security             = 'F'
               http_url_only      = 'X'
               force_get           = 'X'
           IMPORTING
                url                  = lv_url               " char 4096
           EXCEPTIONS
                error_config                = 1
                error_parameter          = 2
                error_signature           = 3
                http_not_supported     = 4
                docget_not_supported = 5
                not_accessable          = 6
                data_provider_error      = 7
                tree_not_supported     = 8
                not_supported            = 9
                OTHERS                   = 10
When analyzing the result of this FM call we can see that the returned value (url) has been cut off; i.e the security key in the returned url is not complete.
The expected result was a complete url including a complete security key.
The actual result was an url with a cutted secKey, see below:
(server id of the IBM common store archive was replaced with “xxxxxx” in the url below).
http://xxxxx:5590/cs?get&pVersion=0046&contRep=T1&docId=47A5A913D5EC00EBE10080000A14B620&accessMode=r&authId=CN%3DTST,OU%3DSAPWebAS,O%3DSAPTrustCommunity,C%3DDE&expiration=20080313203953&secKey=MIIBNAYJKoZIhvcNAQcCoIIBJTCCASECAQExCzAJBgUrDgMCGgUAMAsGCSqGS
Any ideas on why the complete length of the security key is not returned in the url?
// Kind regards
Viveka Schwartz
Edited by: Viveka Schwartz on Mar 14, 2008 8:46 AM
Edited by: Viveka Schwartz on Mar 14, 2008 8:47 AM

Hi,
Did you try Office control UI element? It supports MS word and Excel files.
[Office Control UI element|http://help.sap.com/saphelp_nw70/helpdata/en/d1/af8841349e1909e10000000a155106/content.htm]
Best regards,
Chinnu

Similar Messages

  • IBM Common Store for SAP Implementation VS IXOS

    Hello all, great idea for a forum.
    We are currently choosing between IBM CommonStore and IXOS for our Image Repository, Document Attachment and Archiving solution.
    Our team has extensive experience with IXOS and limited experience with IBM CommonStore and IBM Content Manager.
    In a situation where 1000s of returned invoices and correspondences a day will be imaged and inserted into the repository and indexed into PS-CD we need to decide if the dollars saved in going with CommonStore will be spent getting our solution up to the integration level that is delivered with IXOS.
    Does anyone here have experience with both or has anyone gotten CommonStore working up to a full production level with QA workflows and CRM viewing enabled?
    Any experience getting CommonStore fully functional with a mass invoicing scenario?
    Any help will be appreciated.
    Greg

    Greg,
    All certified vendors that use SAP ArchiveLink would basically have the same level of integration in SAP.  It should take you no longer to implement one over the over, the sap configuration is the same.  It really comes down to the experience of the implementation team.
    The IBM CommonStore solution is SAP ArchiveLink certified and provides an enterprise wide imaging repository without the need for additional products and licensing.
    If you want to look at just the scanning front end, IBM uses a scanning front end that supports OCR from such vendors as Kofax and Captiva.  IXOS Enterprise scan can only scan and hand the images over to another OCR solution, thus scanning the same documents twice.
    I am familiar with both solutions; I was the past IXOS imaging team lead for 5 years.
    I'm not sure what you're looking for in regards to "QA workflows and CRM viewing enabled?"
    CRM is archiveLink enabled!

  • To convert the "IBM DB2 Store Procs written in C" to Oracle PL-SQL

    Hi, Is it possible to convert the "IBM DB2 Store Procs written in C" to Oracle PL-SQL. If you have any info, PL do let me know. Thanks in advance.
    EG :
    /* SMG Stored Procedures */
    /* DB2 Stored Procedure: OrganisationExists */
    /* Linkage: SIMPLE (no NULLs permitted) */
    /* Load module name: SMGEC00 */
    /* Purpose: DELETE FROM SSE_LOOKUP_MAP */
    /* to run. */
    /* Parameters: argvÝ1¨ short - return error code - OUT */
    /* argvÝ2¨ char - return error message - OUT */
    /* argvÝ3¨ char - BLEID - IN */
    /* Reason for edit Date Who */
    /* Initial version 09/04/03 Arockia */
    #pragma runopts(plist(os))
    #include <stdlib.h>
    #include <string.h>
    void main (int argc, char *argvݨ)                                             
    EXEC SQL INCLUDE SQLCA;
    EXEC SQL BEGIN DECLARE SECTION;
    char bleid??(12??);
    EXEC SQL END DECLARE SECTION;
    /* Set defaults for error code (argvÝ1¨) and error message (argvÝ2¨) */
    strcpy(argv??(2??)," ");
    *(int *)argv??(1??) = 0;
    strcpy(bleid,argv??(3??));
    EXEC SQL
    DELETE FROM SSE_LOOKUP_MAP
    WHERE BLEID = :bleid;
    /* Set error code to record status of last SQL command */
    *(int *)argv??(1??) = SQLCODE;
    return;

    For this program, you could do some thing like:
    SQL> CREATE TABLE sse_lookup_map(BLEID varchar2(10));
    Table created.
    SQL> CREATE or replace PROCEDURE test(p_bleid_in IN varchar2)
      2  AS
      3  BEGIN
      4  DELETE FROM sse_lookup_map
      5  WHERE BLEID = p_bleid_in;
      6  END;
      7  /
    Procedure created.
    SQL> ed
    Wrote file afiedt.buf
      1* INSERT INTO sse_lookup_map values('test1')
    SQL> /
    1 row created.
    SQL> ed
    Wrote file afiedt.buf
      1* INSERT INTO sse_lookup_map values('test2')
    SQL> /
    1 row created.
    SQL> SELECT * FROM sse_lookup_map;
    BLEID
    test1
    test2
    2 rows selected.
    SQL> EXEC test('test1')
    PL/SQL procedure successfully completed.
    SQL>  SELECT * FROM sse_lookup_map;
    BLEID
    test2
    1 row selected.
    SQL>

  • Looking for HA experiences for SAP on IBM i

    Hi,
    We are very experienced in disasters, it seems not possible but it is true: in last three years we have suffered three major outages, with big downtimes ( from 13 hours to 36 ) in our main production system, our R/3 which is supposed to be a 24x7 system.
    We started our HA architecture several years ago, using MIMIX to do a logical replica of our production database. It worked, but it needed so much administration at this time. So we moved to a hardware replica, using DS8000 storage subsystems and moving SAP to an iASP, we also use the Rochester Copy Services toolkit to manage all this landscape. At first we used MetroMirror, a synchronous protocol, because we still owned our machines and they were physically close. Recently we evolved our HA architecture, moving our systems to a different sites of an outsourcing partner, we were forced to change the replication protocol to GlobalMirror, asynchronous, because the distances.
    We know what is a 'rare' hardware failure on our storage susbsystem: it started to write zeroes on a disk, without practically no detection, lots of SAP tables were damaged. We also have suffered a human error that deleted an online disk and killed all the iASP ( first real tape recovery in my life ). And finally we know what is a power failure in the technical room of our partner. Imagine that all this failures with a database that is 3TB big. Do you know how much time is needed to restore from tape and run APYJRNCHGX or rebuilding access paths ? I know...
    As you can imagine we have invested a lot of money trying to protect our data, and it worked because we have never lost any bit of information but our recovery times are always far from the ones needed.
    I'm looking for experiences about how other SAP on IBM i customers are managing the HA in his critical systems, and if possible compare real experiences of similar outages. What are we doing wrong ? We cannot be the only ones...
    Regards,
    Joan B. Altadill

    Hi Joan,
    We run MIMIX replication for our ERP system/partition and 4 other partitions with BW, Portal, PI, SRM, and Solution Mgr in them.  There is some administration but it has been worth it for us.  We have duplicate 570 hardware in an offsite DC 35 miles away for failover.  We also do our backups on the replicated systems.  We have been running MIMIX since going live with SAP in 1998.
    Several years ago we used MIMIX replication to migrate to new servers during lease replacement which cut our migration downtime from 8 hrs for backup/restore to about 1 hr while we shut down the system on old servers, started up ERP system on new servers and checked all the interface connections.
    But the real payoff came in March this year when our production server went down hard during a hot maintenance procedure.  We were able to MIMIX switch to our DR server in under 1 hr and the business ran on the DR server for two weeks, while we reverse-replicated, then we switched back.
    We have subsecond replication so we did not lose any data and there were no incomplete transactions on the DR side after the switch.   MIMIX paid for itself, including administration, in that one incident.
    Hope this helps,
    Margie Teppo
    Perrigo Co.

  • Com.sap.pct.erp.mss.requisitionrequest_statusoverview _Target URL of Broken

    hi
    Friends
    in sap portal>portal content->content admin>end user content->employee self service--->line_manager
    under iview--->com.sap.pct.erp.mss.requisitionrequest_statusoverview WHENEVER I AM CLICK INTO THAT IVIEW
    SHOWING ERROR
    Target URL of Broken Delta Link: pcd:portal_content/com.sap.pct/every_user/com.sap.pct.erp.common.bp_folder/com.sap.pct.erp.common.iviews/com.sap.pct.erp.common.isrstatusoverview
    please help me
    rafi shaik

    Hi,
    I know this is an old thread but I could'nt find this subject into any other thread and I got the same problem recently.
    When you are performing the export, choose '*' as filter.
    Then, you should be able to get this temporary object into an .epa
    Import it in your target system, it should work fine.
    Best regards,
    VijayKalluri

  • Difference between SAP MDM & IBM MDM

    Hi,
    Can any one tell me what is the difference between SAP MDM & IBM MDM,  What are advantages of SAP MDM over IBM MDM.
    Pl. give reply
    the good answers will be get good points.
    Thnks in advance.
    praful.

    HI
    SAP Master Data Management
    SAP Master Data Management (SAP MDM) enables master data on customers, partners and products to be consolidated and harmonized across the enterprise, making it available to all staff and business partners. A key component of SAP NetWeaver, SAP MDM ensures data integrity across all IT systems.
    The SAP NetWeaver Master Data Management (SAP NetWeaver MDM) component of SAP NetWeaver creates the preconditions for enterprise services and business process management. The functionality represents customers, products, employees, vendors, and user-defined data objects in unified form. With SAP NetWeaver MDM, customers can manage master data and supplemental content, such as texts, PDF documents, high-resolution images, or diagrams in a central business information warehouse.
    SAP Master Data Management (SAP MDM) is a component of SAP's NetWeaver product group and is used as a platform to consolidate, cleanse and synchronise a single version of the truth for master data within a heterogeneous application landscape. It has the ability to distribute internally and externally to SAP and non-SAP applications. SAP MDM is a key enabler of SAP Enterprise Service-Oriented Architecture. Standard system architecture would consist of a single central MDM server connected to client systems through SAP Exchange Infrastructure using XML documents, although connectivity without SAP XI can also be achieved. There are five standard implementation scenarios:
    Content Consolidation - centralized cleansing, de-duplication and consolidation, enabling key mapping and consolidated group reporting in SAP BI. No re-distribution of cleansed data.
    Master Data Harmonization - as for Content Consolidation, plus re-distribution of cleansed, consolidated master data.
    Central Master Data Management - as for Master Data Harmonization, but all master data is maintained in the central MDM system. No maintenance of master data occurs in the connected client systems.
    Rich Product Content Management - Catalogue management and publishing. Uses elements of Content Consolidation to centrally store rich content (images, PDF files, video, sound etc.) together with standard content in order to produce product catalogues (web or print). Has standard adapters to export content to DTP packages.
    Global Data Synchronization - provides consistent trade item information exchange with retailers through data hubs  Some features (for example, workflow) require custom development out of the box to provide screens for end users to use.
    http://www11.sap.com/platform/netweaver/components/mdm/index.epx
    IBM MDM
    n IBM's view, MDM is a set of disciplines, technologies, and solutions used to create and maintain consistent, complete, contextual, and accurate business data for all stakeholders (users, applications, data warehouses, processes, enterprises, trading partners, and so on). It's a holistic framework for managing structured and unstructured data that's aligned with business processes and managed throughout the information life cycle.
    As Felix already given this link go through this link u will get more details.
    http://www.db2mag.com/story/showArticle.jhtml?articleID=167100925
    And also check these links for more knowledge
    Microsoft MDM
    http://www.microsoft.com/sharepoint/mdm/default.mspx
    Microsoft MDM Roadmap
    http://www.stratature.com/portals/0/MSMDMRoadmap.pdf
    http://msdn2.microsoft.com/en-us/library/bb410798.aspx#mdmhubarch_topic1
    I think it may help u
    Regards
    Hari

  • Error when running URL returned by GET_RUN_FUNCTION_URL for form INVIDITM

    Hi All,
    I'm trying to launch form INVIDITM with an URL returned by PL/SQL API FND_RUN_FUNCTION.GET_RUN_FUNCTION_URL. To generate appropriate URL I call GET_RUN_FUNCTION_URL like the following:
    DECLARE
    P_FUNCTION_NAME VARCHAR2(200);
    P_RESP_APPL VARCHAR2(200);
    P_RESP_KEY VARCHAR2(200);
    P_SECURITY_GROUP_KEY VARCHAR2(200);
    P_PARAMETERS VARCHAR2(200);
    P_OVERRIDE_AGENT VARCHAR2(200);
    P_ORG_ID NUMBER;
    P_LANG_CODE VARCHAR2(200);
    P_ENCRYPTPARAMETERS BOOLEAN;
    v_Return VARCHAR2(2000);
    BEGIN
    P_FUNCTION_NAME := 'INV_INVIDITM_ORG';
    P_RESP_APPL := 'MSC';
    P_RESP_KEY := 'MANUFACTURING_SUPER_USER_ASCP';
    P_SECURITY_GROUP_KEY := 'STANDARD';
    P_PARAMETERS := 'org_id=208 item_id=216955';
    P_OVERRIDE_AGENT := NULL;
    P_ORG_ID := NULL;
    P_LANG_CODE := 'US';
    P_ENCRYPTPARAMETERS := NULL;
    v_Return := FND_RUN_FUNCTION.GET_RUN_FUNCTION_URL(
    P_FUNCTION_NAME => P_FUNCTION_NAME,
    P_RESP_APPL => P_RESP_APPL,
    P_RESP_KEY => P_RESP_KEY,
    P_SECURITY_GROUP_KEY => P_SECURITY_GROUP_KEY,
    P_PARAMETERS => P_PARAMETERS,
    P_OVERRIDE_AGENT => P_OVERRIDE_AGENT,
    P_ORG_ID => P_ORG_ID,
    P_LANG_CODE => P_LANG_CODE,
    P_ENCRYPTPARAMETERS => P_ENCRYPTPARAMETERS
    DBMS_OUTPUT.PUT_LINE('v_Return = ' || v_Return);
    END;
    With this I get an URL like:
    http://<hostname>:<port>/OA_HTML/RF.jsp?function_id=1192&resp_id=56233&resp_appl_id=724&security_group_id=0&lang_code=US&params2=org_id%3D208%20item_id%3D216955
    Running this URL, I get the error message:
    "APP-FND-01016: Routine FDFRKS: Unknown structure ID for flexfield code GL number with application ID 101"
    Can anybody tell me how to fix this, or if I missed specifying any more parameters in P_PARAMETERS?
    Any help is highly appreciated...
    Thanks and Regards
    Carolin

    Hi,
    I got some help for this problem from Oracle support community: Setting paramter CHART_OF_ACCOUNTS_ID.
    This seems to solve the problem. I don't get the error message any more, when setting the following:
    P_PARAMETERS := 'org_mode=N chart_of_accounts_id=101 org_id=208 org_code=S1 item_id=216955';
    Nevertheless, I still have problems with getting the correct parameter settings for form BOMFDBOM (form functions: BOM_BOMFDBOM, ENG_BOMFDBOM):
    1. Trying to display a BOM with a specified alternate (e.g. EBOM) doesn't work. I pass the following parameter values to funtion GET_RUN_FUNCTION_URL:
    P_FUNCTION_NAME := 'BOM_BOMFDBOM';
    P_RESP_APPL := 'MSC';
    P_RESP_KEY := 'MANUFACTURING_SUPER_USER_ASCP';
    P_SECURITY_GROUP_KEY := 'STANDARD';
    P_PARAMETERS := 'org_id=204 item_id=240996 zoom_org_id=204 zoom_item_id=240996 zoom_flag=Y zoom_alternate=EBOM current_rec=1 item_rev=A';
    P_OVERRIDE_AGENT := NULL;
    P_ORG_ID := NULL;
    P_LANG_CODE := 'US';
    P_ENCRYPTPARAMETERS := NULL;
    The returned URL doesn't behave as expected: Though the form for respective alternate is displayed, the alternate field is empty and it isn't possible to select any field on the form, as following error message is displayed:
    "APP-BOM-20087: This bill already exists. Please enter another alternate to create an alternate bill, or use Query Find to find an existing bill."
    2. Trying to set query only mode for this form alway displays an empty "Find Bills" form, instead of the specified BOM in query only mode. I try to set this mode by the following:
    P_PARAMETERS := 'org_id=204 item_id=240996 zoom_org_id=204 zoom_item_id=240996 zoom_flag=Y zoom_alternate=EBOM current_rec=1 item_rev=A query_only=YES';
    Please, can anybody help me with this...
    Thanks & Regards
    Carolin

  • HOW TO EMPTY / CLEAR LOG'S IN FOLDER NAME AS " SIS Common Store " ON STORAGE DRIVE

    WE ARE USING DRIVE FOR STORE OUR FILES' BUT IN THIS DRIVE 1 FOLDER IS AVAILABE IN HIDE MODE
    NAME OF THE FOLDER IS " SIS Common Store " WE REQUIRE TO EMPTY / CLEAR ALL LOG FILES IN THIS FOLDER
    TOTAL DRICVE SPACE IS 1 TB BUT SIZE OF "SIS Common Store" FOLDER IS 225 GB , DUE TO THIS FOLDER SIZE WE ARE FACING SPACE SHORT PROBLEM , PLEASE GUIDE HOW TO DELETE / EMPTY / CLEAR THIS LOG'S FILES IN "SIS Common Store"
    FOLDER , PLEASE GUIDE / PROVIDE SOLUTION AASAP.
    MY NAME IS :RAHUL KALE
    MOBILE NO : 9960594241

    Hello,
    please see here about
    http://blogs.technet.com/b/josebda/archive/2008/01/02/the-basics-of-single-instance-storage-sis-in-wss-2003-r2-and-wudss-2003.aspx
    http://support.microsoft.com/kb/299726/en-us
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://blogs.msmvps.com/MWeber
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    Twitter:  

  • [SOLVED]"The requested URL returned error: 407" while using pacman

    pacman worked fine until now. When I try to upgrade with
    pacman -Syu
    it returns what is written below even though internet works fine without problems(I'm posting from the same system using firefox)
    How can I get pacman working again?
    :: Synchronizing package databases...
    error: failed retrieving file 'core.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    error: failed retrieving file 'core.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    error: failed retrieving file 'core.db' from [url=ftp://ftp.jaist.ac.jp]ftp.jaist.ac.jp[/url] : The requested URL returned error: 407
    error: failed retrieving file 'core.db' from [url=ftp://ftp.jaist.ac.jp]ftp.jaist.ac.jp[/url] : The requested URL returned error: 407
    error: failed retrieving file 'core.db' from mirror.yongbok.net : The requested URL returned error: 407
    error: failed retrieving file 'core.db' from mirror.yongbok.net : The requested URL returned error: 407
    error: failed to update core (download library error)
    error: failed retrieving file 'extra.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    error: failed retrieving file 'extra.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    error: failed retrieving file 'extra.db' from [url=ftp://ftp.jaist.ac.jp]ftp.jaist.ac.jp[/url] : The requested URL returned error: 407
    error: failed retrieving file 'extra.db' from [url=ftp://ftp.jaist.ac.jp]ftp.jaist.ac.jp[/url] : The requested URL returned error: 407
    error: failed retrieving file 'extra.db' from mirror.yongbok.net : The requested URL returned error: 407
    error: failed retrieving file 'extra.db' from mirror.yongbok.net : The requested URL returned error: 407
    error: failed to update extra (download library error)
    error: failed retrieving file 'community.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    error: failed retrieving file 'community.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    error: failed retrieving file 'community.db' from [url=ftp://ftp.jaist.ac.jp]ftp.jaist.ac.jp[/url] : The requested URL returned error: 407
    error: failed retrieving file 'community.db' from [url=ftp://ftp.jaist.ac.jp]ftp.jaist.ac.jp[/url] : The requested URL returned error: 407
    error: failed retrieving file 'community.db' from mirror.yongbok.net : The requested URL returned error: 407
    error: failed retrieving file 'community.db' from mirror.yongbok.net : The requested URL returned error: 407
    error: failed to update community (download library error)
    error: failed retrieving file 'archlinuxfr.db' from repo.archlinux.fr : The requested URL returned error: 407
    error: failed to update archlinuxfr (download library error)
    error: failed to synchronize any databases
    error: failed to init transaction (download library error)
    Last edited by ebshankar (2012-02-19 08:08:59)

    hokasch wrote:
    What did you update? Are you using a proxy?
    You can try pacman -Syy --debug which will show the actual url it tries to access. When posting console output, please use the code tags.
    I tried to upgrade the system.
    I don't use a proxy. My isp uses authentication from the browser, when the browser is authenticated with the username and password, the whole system will be connected to the internet as long as the authentication page is open.
    Here is the output of "pacman -Syy --debug":
    debug: parseconfig: options pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: HoldPkg: pacman
    debug: config: HoldPkg: glibc
    debug: config: SyncFirst: pacman
    debug: config: arch: x86_64
    debug: config: SigLevel: Never
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 81: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 85: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 93: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: config: new section 'archlinuxfr'
    debug: config: finish section 'archlinuxfr'
    debug: config: finished parsing /etc/pacman.conf
    debug: setup_libalpm called
    debug: option 'logfile' = /var/log/pacman.log
    debug: option 'gpgdir' = /etc/pacman.d/gnupg/
    debug: option 'cachedir' = /var/cache/pacman/pkg/
    debug: parseconfig: repo pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 81: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: registering sync database 'core'
    debug: database path for tree core set to /var/lib/pacman/sync/core.db
    debug: adding new server URL to database 'core': ftp://mirror.cse.iitk.ac.in/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.cse.iitk.ac.in/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': ftp://ftp.jaist.ac.jp/pub/Linux/ArchLinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/core/os/x86_64
    debug: adding new server URL to database 'core': ftp://mirror.yongbok.net/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.yongbok.net/archlinux/core/os/x86_64
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 85: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: registering sync database 'extra'
    debug: database path for tree extra set to /var/lib/pacman/sync/extra.db
    debug: adding new server URL to database 'extra': ftp://mirror.cse.iitk.ac.in/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.cse.iitk.ac.in/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': ftp://ftp.jaist.ac.jp/pub/Linux/ArchLinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': ftp://mirror.yongbok.net/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.yongbok.net/archlinux/extra/os/x86_64
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 93: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: registering sync database 'community'
    debug: database path for tree community set to /var/lib/pacman/sync/community.db
    debug: adding new server URL to database 'community': ftp://mirror.cse.iitk.ac.in/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.cse.iitk.ac.in/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': ftp://ftp.jaist.ac.jp/pub/Linux/ArchLinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/community/os/x86_64
    debug: adding new server URL to database 'community': ftp://mirror.yongbok.net/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.yongbok.net/archlinux/community/os/x86_64
    debug: config: new section 'archlinuxfr'
    debug: config: finish section 'archlinuxfr'
    debug: registering sync database 'archlinuxfr'
    debug: database path for tree archlinuxfr set to /var/lib/pacman/sync/archlinuxfr.db
    debug: adding new server URL to database 'archlinuxfr': http://repo.archlinux.fr/x86_64
    debug: config: finished parsing /etc/pacman.conf
    :: Synchronizing package databases...
    debug: url: ftp://mirror.cse.iitk.ac.in/archlinux/core/os/x86_64/core.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'core.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    debug: url: http://mirror.cse.iitk.ac.in/archlinux/core/os/x86_64/core.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'core.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    debug: url: ftp://ftp.jaist.ac.jp/pub/Linux/ArchLinux/core/os/x86_64/core.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'core.db' from ftp.jaist.ac.jp : The requested URL returned error: 407
    debug: url: http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/core/os/x86_64/core.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'core.db' from ftp.jaist.ac.jp : The requested URL returned error: 407
    debug: url: ftp://mirror.yongbok.net/archlinux/core/os/x86_64/core.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'core.db' from mirror.yongbok.net : The requested URL returned error: 407
    debug: url: http://mirror.yongbok.net/archlinux/core/os/x86_64/core.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'core.db' from mirror.yongbok.net : The requested URL returned error: 407
    debug: failed to sync db: download library error
    error: failed to update core (download library error)
    debug: url: ftp://mirror.cse.iitk.ac.in/archlinux/extra/os/x86_64/extra.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/extra.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'extra.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    debug: url: http://mirror.cse.iitk.ac.in/archlinux/extra/os/x86_64/extra.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/extra.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'extra.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    debug: url: ftp://ftp.jaist.ac.jp/pub/Linux/ArchLinux/extra/os/x86_64/extra.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/extra.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'extra.db' from ftp.jaist.ac.jp : The requested URL returned error: 407
    debug: url: http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/extra/os/x86_64/extra.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/extra.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'extra.db' from ftp.jaist.ac.jp : The requested URL returned error: 407
    debug: url: ftp://mirror.yongbok.net/archlinux/extra/os/x86_64/extra.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/extra.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'extra.db' from mirror.yongbok.net : The requested URL returned error: 407
    debug: url: http://mirror.yongbok.net/archlinux/extra/os/x86_64/extra.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/extra.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'extra.db' from mirror.yongbok.net : The requested URL returned error: 407
    debug: failed to sync db: download library error
    error: failed to update extra (download library error)
    debug: url: ftp://mirror.cse.iitk.ac.in/archlinux/community/os/x86_64/community.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/community.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'community.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    debug: url: http://mirror.cse.iitk.ac.in/archlinux/community/os/x86_64/community.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/community.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'community.db' from mirror.cse.iitk.ac.in : The requested URL returned error: 403
    debug: url: ftp://ftp.jaist.ac.jp/pub/Linux/ArchLinux/community/os/x86_64/community.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/community.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'community.db' from ftp.jaist.ac.jp : The requested URL returned error: 407
    debug: url: http://ftp.jaist.ac.jp/pub/Linux/ArchLinux/community/os/x86_64/community.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/community.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'community.db' from ftp.jaist.ac.jp : The requested URL returned error: 407
    debug: url: ftp://mirror.yongbok.net/archlinux/community/os/x86_64/community.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/community.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'community.db' from mirror.yongbok.net : The requested URL returned error: 407
    debug: url: http://mirror.yongbok.net/archlinux/community/os/x86_64/community.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/community.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'community.db' from mirror.yongbok.net : The requested URL returned error: 407
    debug: failed to sync db: download library error
    error: failed to update community (download library error)
    debug: url: http://repo.archlinux.fr/x86_64/archlinuxfr.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/archlinuxfr.db.part (wb)
    debug: curl returned error 22 from transfer
    error: failed retrieving file 'archlinuxfr.db' from repo.archlinux.fr : The requested URL returned error: 407
    debug: failed to sync db: download library error
    error: failed to update archlinuxfr (download library error)
    error: failed to synchronize any databases
    error: failed to init transaction (download library error)
    debug: unregistering database 'local'
    debug: unregistering database 'core'
    debug: unregistering database 'extra'
    debug: unregistering database 'community'
    debug: unregistering database 'archlinuxfr'
    Last edited by ebshankar (2012-02-18 14:18:30)

  • [SOLVED] The requested URL returned error: 403 Forbidden

    Hi guys
    (sory for my english
    I have a problem with packer -Syu
    the output:
    Proceed with installation? [Y/n] y
    Edit openbox-menu PKGBUILD with $EDITOR? [Y/n] n
    ==> Making package: openbox-menu 0.3.6.8-1 (Tue Feb 12 15:52:19 UTC 2013)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
      -> Downloading openbox-menu-0.3.6.8.tar.bz2...
      % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                     Dload  Upload   Total   Spent    Left  Speed
      0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    curl: (22) The requested URL returned error: 403 Forbidden
    ==> ERROR: Failure while downloading openbox-menu-0.3.6.8.tar.bz2
        Aborting...
    The build failed.
    for full detials:
    http://pastebin.com/Acq0uY78
    iam try another mirrors... but i get same problen
    i install tor (for use tsocks or torify) but its dont work in my country
    HELP ME PLZ
    thanks
    Last edited by tareef (2013-02-14 19:39:07)

    It's http://mimarchlinux.googlecode.com/file … .8.tar.bz2, just as the PKGBUILD says.
    Edit:
    If something is broken, you should ask on the AUR page for the maintainer to fix the PKGBUILD https://aur.archlinux.org/packages/openbox-menu/, but the PKGBUILD worked for me.
    tareef wrote:
    for full detials:
    http://pastebin.com/Acq0uY78
    iam try another mirrors... but i get same problen
    i install tor (for use tsocks or torify) but its dont work in my country
    openbox-menu is from the AUR and not from the repos, so changing mirrors won't do anything here. You might want to read on what AUR is and deal with the issues with the signatures first.
    Last edited by karol (2013-02-13 00:10:04)

  • Where to store the url of a webpage for indexing and searching?

    Dear Java gurus,
    We have a set of html files stroing in a file system. We can use Lucene to index those files with two fields "path" and "content ". Then using Lucene we can search and the result will be the relevant content and its path (path in the file system).
    As each of these html file is a real web page, we know its url in Internet too. However, I don’t know where to store this real url and let Lucene to index not only the path, content but also this url. If this is possible, then the search result will display the url also.
    Do you have any idea about this ?
    This is the last obstacle for us to develop a small Google like search engine. We have already a crawler that works well.
    Thanks for any suggestions.
    Pengyou

    pengyou wrote:
    jschell wrote:
    pengyou wrote:
    However, if I just want store the html file in a file system for quich test purpose, how can I store the url and keep a link to the related file.Instead of storing the content in the database you instead store a file system location (either a path or a file url.)
    That file system location is where you store the content.Indeed, the file system location is where I store the content which I crawled from Internet. However, it is not the initial url from which I crawled this content. I would like to store the initial url of this content too. This is still a problem.No it isn't.
    You have two pieces of data: Url and content.
    If you want to store the content on the file system then your database table would have two columns: url and file_location.
    You then do the following
    1. Save the content to the file system. Derive a file path from that process.
    2. Write a record to the database consisting two data items : url and that file path.

  • Uln-yum-mirror [Errno 14] PYCURL ERROR 22 - The requested URL returned error: 416

    Server is running Oracle Linux 6.5 and can receive updates from ULN without issue, I could easily upgrade the local servers version of Bash.  The problem I am having is that the server is the local yum server however it is not downloading updates when I run /usr/bin/uln-yum-mirror I am receiving the errors below
    [root@cr-svc-orayum1 yum]# cat /etc/oracle-release
    Oracle Linux Server release 6.5
    [root@cr-svc-orayum1 yum]# yum repolist
    Loaded plugins: refresh-packagekit, rhnplugin, security
    This system is receiving updates from ULN.
    ol6_x86_64_UEKR3_latest/primary                                                                                                       | 8.5 MB     00:21
    ol6_x86_64_UEKR3_latest                                                                                                                              234/234
    ol6_x86_64_latest/primary                                                                                                             |  41 MB     01:46
    ol6_x86_64_latest                                                                                                                                26159/26159
    repo id                                          repo name                                                                                             status
    ol6_x86_64_UEKR3_latest                          Unbreakable Enterprise Kernel Release 3 for Oracle Linux 6 (x86_64) - Latest                             234
    ol6_x86_64_latest                                Oracle Linux 6 Latest (x86_64)                                                                        26,159
    repolist: 26,393
    [root@cr-svc-orayum1 yum]# yum clean all
    Loaded plugins: refresh-packagekit, rhnplugin, security
    Cleaning repos: ol5_x86_64_UEK_base ol5_x86_64_ksplice ol5_x86_64_latest ol6_x86_64_UEKR3_latest ol6_x86_64_latest
    Cleaning up Everything
    [root@cr-svc-orayum1 yum]#
    [root@cr-svc-orayum1 yum]# /usr/bin/uln-yum-mirror
    ## BEGIN PROCESSING ol5_x86_64_ksplice ##
    Channel Dir: /var/www/html/yum/OracleLinux/OL5/ksplice/x86_64
    Loaded plugins: refresh-packagekit, rhnplugin
    This system is receiving updates from ULN.
    Saving Primary metadata
    Saving file lists metadata
    Saving other metadata
    Generating sqlite DBs
    Sqlite DBs complete
    Wrote: /var/www/html/yum/OracleLinux/OL5/ksplice/x86_64/repodata/updateinfo.xml.gz
               type = updateinfo
           location = repodata/updateinfo.xml.gz
           checksum = bd8daef04c28ee5907c0482c5a55e5fdb2c56fae
          timestamp = 1412066205.18
      open-checksum = cd80d41782f6770822485ade46f1a8bf75cfa20b
    Wrote: /var/www/html/yum/OracleLinux/OL5/ksplice/x86_64/repodata/repomd.xml
    ## END PROCESSING ol5_x86_64_ksplice ##
    ## BEGIN PROCESSING ol5_x86_64_latest ##
    Channel Dir: /var/www/html/yum/OracleLinux/OL5/latest/x86_64
    Loaded plugins: refresh-packagekit, rhnplugin
    This system is receiving updates from ULN.
    Could not retrieve package alsa-lib-devel-1.0.17-1.el5.i386. Error was failed to retrieve getPackage/alsa-lib-devel-1.0.17-1.el5.i386.rpm from ol5_x86_64_latest
    error was [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 416 Requested Range Not Satisfiable"
    Could not retrieve package alsa-lib-devel-1.0.17-1.el5.x86_64. Error was failed to retrieve getPackage/alsa-lib-devel-1.0.17-1.el5.x86_64.rpm from ol5_x86_64_latest
    error was [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 416 Requested Range Not Satisfiable"
    Could not retrieve package alsa-utils-1.0.17-7.el5.x86_64. Error was failed to retrieve getPackage/alsa-utils-1.0.17-7.el5.x86_64.rpm from ol5_x86_64_latest
    error was [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 416 Requested Range Not Satisfiable"
    Could not retrieve package 5:am-utils-6.1.5-9.el5_10.x86_64. Error was failed to retrieve getPackage/am-utils-6.1.5-9.el5_10.x86_64.rpm from ol5_x86_64_latest
    error was [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 416 Requested Range Not Satisfiable"
    Could not retrieve package amanda-devel-2.5.0p2-9.el5.i386. Error was failed to retrieve getPackage/amanda-devel-2.5.0p2-9.el5.i386.rpm from ol5_x86_64_latest
    error was [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 416 Requested Range Not Satisfiable"
    Could not retrieve package amanda-server-2.5.0p2-9.el5.x86_64. Error was failed to retrieve getPackage/amanda-server-2.5.0p2-9.el5.x86_64.rpm from ol5_x86_64_latest

    First, you need to upgrade to the latest version of uln-yum-mirror to avoid these errors in future. The latest version has mitigation tools to remove RPMs that fail GPG checking.
    In this instance, you need to manually delete the RPMs that pyCURL can't download. Once you delete all the RPMs, the next run of uln-yum-mirror will download them fresh and recreate the yum metadata locally.

  • Pacman -S usb_modeswitch URL returned error: 404

    Hi, I have a raspberrypi board with archlinux
    I'm trying to install usb_modeswitch with no success
    [root@alarmpi ~]# pacman -Ss usb_modeswitch
    community/usb_modeswitch 1.2.3-1
        Activating switchable USB devices on Linux.
    First search for package ok
    Than resource not found...
    [root@alarmpi ~]# pacman -S usb_modeswitch
    resolving dependencies...
    looking for inter-conflicts...
    Targets (2): tcl-8.5.11-1  usb_modeswitch-1.2.3-1
    Total Download Size:    0.04 MiB
    Total Installed Size:   6.80 MiB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from community...
    error: failed retrieving file 'usb_modeswitch-1.2.3-1-arm.pkg.tar.xz' from mirror.archlinuxarm.org : The requested URL returned error: 404
    warning: failed to retrieve some files from community
    error: failed to commit transaction (download library error)
    Errors occurred, no packages were upgraded.
    Any thing wrong?
    Regards

    Always use -Suy when installing packages, the current version is 1.2.3-2
    Also we do not support archlinux-arm, it is an unofficial port and you should use their forum/irc channel.
    Last edited by Mr.Elendig (2012-07-23 17:58:16)

  • I have just bought a new imac over the internet. it does not work. which store do I return it to?

    I have just bought a new imac over the internet. it does not start up which store can I return it to?

    jimoefrompymble wrote:
    I have just bought a new imac over the internet. ...
    If Purchased from Apple... Contact AppleCare... you have 90 days Free Telephone Support... 3 years if you Purchased the AppleCare Protection Plan.

  • CDN URL returns 404, but custom domain is fine, so is blob origin domain

    i added a CDN to my Azure website today, with a custom domain pointing at it using a CNAME record. now the custom domain works, the original Blob URL works, but the CDN URL returns 404.
    Custom domain to CDN:
    http://int-assets-openyourcity.heineken.com/app/dest/js/main.min.js
    CDN: http://az621171.vo.msecnd.net/app/dest/js/main.min.js
    Blob URL: http://intopenyourcityheineken.blob.core.windows.net/app/dest/js/main.min.js
    any ideas? is this just down to DNS propagation?
    thanks,
    paul

    Hi,
    You could try this channel:
    Please contact support team by creating a support ticket at http://www.windowsazure.com/en-us/support/contact/
    Or if that doesn't work because you don't have an active subscription you will need to contact general customer support to have them create a support ticket for you
    http://support.microsoft.com/gp/customer-service-phone-numbers?wa=wsignin1.0
    Any questions, please let me know.
    Regards & Thanks,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Mac OS x 10.5.6 PSE 6 Paste Anomaly

    Try the following steps: 1. Open a pdf file using Preview. 2. Choose the rectangular selection tool 3. Select a portion of a page. 4. Do a copy (command C) 5. Verify that the clipboard contains the area you selected by: a. Going to Finder > Edit > Sh

  • Using an Apostrophe in a Search

    Hi, I've been creating Help topics in RoboHelp 8.0.2.208 and generate WebHelp. I've tried searching the forum for this problem and have come up empty; I'm sorry if I missed it. We are tying to help our users use the Help topics and are running into a

  • Executing a Webi report with input parameters

    How can I schedule a BO4 webi report dynamically? I have a set of tables which contains the required parameters for the reports and I need implement a mechanism which will invoke these reports with the parameters. Then I would want the reports to be

  • OS 10.9.5 System Error -70015 DVD Player encountered a system error

    Can anyone tell me what this means? Thanks for your help.

  • How do I trim a string?

    Is there a function in jsp 2.0 I can left trim or right trim a string? Regards, GAbriele