Wordpress http error while uploading images with flash

Hi guys
I have a problem with my wordpress blog " bollywood wallpapers ". When I try to upload images with defualt wordpress flash uploader I get "http" error.
I am having this problem from last 5 months.

Dear Siva,
that is indeed strange.
Still don't know if this could be an issue with your NWDS or the PAR itself.
So let's do 2 tests
===============================================
TEST NR. 1
Let's try and check the NWDS first by creating a custom PAR.
Don't worry, it's easy.
Just open your NWDS and go to the top menu
File > New > Project
Inside the popup window that will open please choose
Portal Application (on the left) and Create a Portal Application Project (on the right)
Then give any name you would like (no spaces or dots, etc...)
You now have a Portal project created on NWDS ( you will see a folder on the left side with your project name)
Click on that folder with your LEFT mouse button and choose EXPORT
Choose PAR File
Choose your Project
Choose a path where you want your PAR file to be saved. (uncheck the deploy PAR file, but check the include the source code).
And click Finish.
Now delete the project you have created (by clicking on the folder with your LEFT mouse button again, but chose DELETE project)
Now you're ready to re-import the PAR file.
===============================================
TEST NR. 2
Maybe your standard PAR file that you've downloaded doesn't have the source code included or is corrupted.
Please try to open it with a ZIP program and check what type of structure/files you have there.
Have you also checked your NWDS log ?
You could also share here that log, so that I can better help you.
Kindest Regards
/Ricardo

Similar Messages

  • Error while uploading images to SAP Mobile Documents from iPad application using ObjectiveCMIS.

    Hi,
    I am getting the error while uploading images to SAP Mobile Documents from custom iOS(iPad )application using ObjectiveCMIS library.
    My Custom method is as follows:
    - (void)createSalesOrderRouteMapImageInFolder:(NSString*)salesOrderRouteMapFolderId routeMapImageTitle:(NSString *)imageTitle routeMapContent:(NSData *)imageData
        NSInputStream *inputStream = [NSInputStream inputStreamWithData:imageData];
        NSMutableDictionary *properties = [NSMutableDictionary dictionary];
        [properties setObject:[NSString stringByAppendingFileExtension:imageTitle] forKey:@"cmis:name"];
        [properties setObject:@"cmis:document" forKey:@"cmis:objectTypeId"];
        [self.session createDocumentFromInputStream:inputStream
                                           mimeType:@"image/png"
                                         properties:properties
                                           inFolder:salesOrderRouteMapFolderId
                                      bytesExpected:[imageData length]
                                    completionBlock:^(NSString *objectId, NSError *error) {
                                        NSLog(@"Object id is %@",objectId);
                                        if(error == nil) {
                                            [inputStream close];
                                            NSLog(@"Uploading Sales order route map successfully.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderSuccessNotification object:nil];
                                        } else {
                                            [inputStream close];
                                            NSLog(@"Uploading sales order route map failed.");
                                            [[NSNotificationCenter defaultCenter] postNotificationName:SaveOrderFailedNotification object:error];
                                    } progressBlock:^(unsigned long long bytesUploaded, unsigned long long bytesTotal) {
                                        NSLog(@"uploading... (%llu/%llu)", bytesUploaded, bytesTotal);
    OBjectiveCMIS Method in which i am getting error during upload:
    - (void)sendAtomEntryXmlToLink:(NSString *)link
                 httpRequestMethod:(CMISHttpRequestMethod)httpRequestMethod
                        properties:(CMISProperties *)properties
                contentInputStream:(NSInputStream *)contentInputStream
                   contentMimeType:(NSString *)contentMimeType
                     bytesExpected:(unsigned long long)bytesExpected
                       cmisRequest:(CMISRequest*)request
                   completionBlock:(void (^)(CMISObjectData *objectData, NSError *error))completionBlock
                     progressBlock:(void (^)(unsigned long long bytesUploaded, unsigned long long bytesTotal))progressBlock
        // Validate param
        if (link == nil) {
            CMISLogError(@"Must provide link to send atom entry");
            if (completionBlock) {
                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeInvalidArgument detailedDescription:nil]);
            return;
        // generate start and end XML
        CMISAtomEntryWriter *writer = [[CMISAtomEntryWriter alloc] init];
        writer.cmisProperties = properties;
        writer.mimeType = contentMimeType;
        NSString *xmlStart = [writer xmlStartElement];
        NSString *xmlContentStart = [writer xmlContentStartElement];
        NSString *start = [NSString stringWithFormat:@"%@%@", xmlStart, xmlContentStart];
        NSData *startData = [NSMutableData dataWithData:[start dataUsingEncoding:NSUTF8StringEncoding]];
        NSString *xmlContentEnd = [writer xmlContentEndElement];
        NSString *xmlProperties = [writer xmlPropertiesElements];
        NSString *end = [NSString stringWithFormat:@"%@%@", xmlContentEnd, xmlProperties];
        NSData *endData = [end dataUsingEncoding:NSUTF8StringEncoding];
        // The underlying CMISHttpUploadRequest object generates the atom entry. The base64 encoded content is generated on
        // the fly to support very large files.
        [self.bindingSession.networkProvider invoke:[NSURL URLWithString:link]
                                         httpMethod:httpRequestMethod
                                            session:self.bindingSession
                                        inputStream:contentInputStream
                                            headers:[NSDictionary dictionaryWithObject:kCMISMediaTypeEntry forKey:@"Content-type"]
                                      bytesExpected:bytesExpected
                                        cmisRequest:request
                                          startData:startData
                                            endData:endData
                                  useBase64Encoding:YES
                                    completionBlock:^(CMISHttpResponse *response, NSError *error) {
                                        if (error) {
                                            CMISLogError(@"HTTP error when sending atom entry: %@", error.userInfo.description);
                                            if (completionBlock) {
                                                completionBlock(nil, error);
                                        } else if (response.statusCode == 200 || response.statusCode == 201 || response.statusCode == 204) {
                                            if (completionBlock) {
                                                NSError *parseError = nil;
                                                CMISAtomEntryParser *atomEntryParser = [[CMISAtomEntryParser alloc] initWithData:response.data];
                                                [atomEntryParser parseAndReturnError:&parseError];
                                                if (parseError == nil) {
                                                    completionBlock(atomEntryParser.objectData, nil);
                                                } else {
                                                    CMISLogError(@"Error while parsing response: %@", [parseError description]);
                                                    completionBlock(nil, [CMISErrors cmisError:parseError cmisErrorCode:kCMISErrorCodeRuntime]);
                                        } else {
                                            CMISLogError(@"Invalid http response status code when sending atom entry: %d", (int)response.statusCode);
                                            CMISLogError(@"Error content: %@", [[NSString alloc] initWithData:response.data encoding:NSUTF8StringEncoding]);
                                            if (completionBlock) {
                                                completionBlock(nil, [CMISErrors createCMISErrorWithCode:kCMISErrorCodeRuntime
                                                                                     detailedDescription:[NSString stringWithFormat:@"Failed to send atom entry: http status code %li", (long)response.statusCode]]);
                                      progressBlock:progressBlock];
    Attaching the logs:
    ERROR [CMISAtomPubBaseService sendAtomEntryXmlToLink:httpRequestMethod:properties:contentInputStream:contentMimeType:bytesExpected:cmisRequest:completionBlock:progressBlock:] HTTP error when sending atom entry: Error Domain=org.apache.chemistry.objectivecmis Code=260 "Runtime Error" UserInfo=0x156acfa0 {NSLocalizedDescription=Runtime Error, NSLocalizedFailureReason=ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public void com.sap.mcm.server.service.AbstractChangeLogService.updateChangeLog(java.lang.String,boolean) throws com.sap.mcm.server.api.exception.MCMException method on bean instance com.sap.mcm.server.nw.service.NwChangeLogService@4e7989f3 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|NwChangeLogService in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.ejb.EJBTransactionRolledbackException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a; nested exception is: javax.ejb.EJBException: ASJ.ejb.005044 (Failed in component: sap.com/com.sap.mcm.server.nw) Exception raised from invocation of public com.sap.mcm.server.model.ChangeLog com.sap.mcm.server.dao.impl.ChangeLogDaoImpl.findByUserId(java.lang.String) method on bean instance com.sap.mcm.server.dao.impl.ChangeLogDaoImpl@2852b733 for bean sap.com/com.sap.mcm.server.nw*annotation|com.sap.mcm.server.nw.ejb.jar*annotation|ChangeLogDaoImpl in application sap.com/com.sap.mcm.server.nw.; nested exception is: javax.persistence.NonUniqueResultException: More than 1 objects of type ChangeLog found with userId=25f8928e-8ba0-4edd-b08e-43bf6fb78f1a}
    2015-03-12 04:08:31.634 Saudi Ceramics[4867:351095] Uploading sales order route map failed.

    Hi Sukalyan,
    Have you checked the below links?
    These will give you step by step implementation procedure.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a099a3bd-17ef-2b10-e6ac-9c1ea42af0e9?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/WDJava/KmuploadusingWebdynproapplication
    Regards,
    Sandip

  • Urgent :Error while Uploading images.

    Hi all,
    I got following error while uploading an image file(.gif) from local drive.
    The file you are trying to install contains no images.
    I did
    Impor t> Import File Path , File type (Image Export)>Install > Install Image
    I got above error.
    Plz Help.
    Vinaya.

    Try going to:
    Shared Components>Images>Create
    This should allow you to upload your image!!
    Note that if you leave the "application" option set to "No application associated", by default, you can reference it from any app in your workspace. Alternatively, you may limit the application that references the image by choosing the app in the drop down list.
    Hope that makes sense
    Duncan

  • Error while uploading document with same name in Document library

    Hi,
    Whenever I try to upload document with same name in Document library it throws an error. I know its a default behavior but is there any way so that I can upload documents with same name or can we append some unique id with title of the document?
    Please suggest.
    Thanks

    No, unfortunately this is not possible. SharePoint treats the file name as the primary key identifier for a document so if you try to upload a second document with the same name it will assume this is a new version of the file. If you have versioning enabled
    on the document library, it will add this as a new version. If not, it will overwrite the original file with the new one.
    If you need two documents with the same name, you will have to either place them in different folders within a document library or in different document libraries.
    http://stackoverflow.com/questions/11894968/uploading-documents-with-same-name-to-sharepoint-2010
    Regards,
    Rajendra Singh
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful
    http://sharepointundefind.wordpress.com/

  • Error while uploading Journal with wbs element

    Hi SAP Folks,
    I am trying to upload journal through a customized transaction.
    The journal line item has wbs elements in it.
    While uploading journal it is showing the below error only when I am using a particular cost element from XXXX Cost element group.
    For other cost element from ZZZZ cost element group, it is not showing any error.
    ERROR: This G/L Code is only valid for Capital Projects (C-WBS elem.
    Is there  any transaction code which will link the cost elements to the project codes.
    Please help.
    Thanks in advance.

    Hi Paulo,
    This G/L code is only valid for Capital Projects (C-WBS elem
    Message no. ZCO002
    Prerequisite
    CO Area = 'XXXX'
    AND G/L >= '10000' AND G/L <= '19999'
    Check
    ( WBS Element >= 'x.1' AND
    WBS Element <= 'x.9.99.999.9.9.9' )
    OR
    ( Network >= 'x1' AND
    Network <= 'xZZZZZZZZZZZ' )
    OR
    ( Order >= '700000000000' AND
    Order <= '799999999999' )
    "| PM Orders can use Capital GL codes for Capital Works |"
    Message
    message type - E
    message no. - 002
    Message class - ZCO
    message text - This G/L code is only valid for Capital Projects (C-WBS elem
    Do i need to change anything.
    Error message no. ZCO002 is matching with the message of Validation.
    How do I proceed further??
    Thanks in advance
    Regards,
    Sophia

  • Getting DYNPRO_SEND_IN_BACKGROUND this error while uploading image

    hi   have created a bsp program in local object and i m not getting error,but  now i have crated this program in packege , so when ever i uploding image in page every time getting this error , please help me
    The following error text was processed in the system:
    *Sending of dynpro SAPLSTRD 0300 not possible: No window system type specified*
    Exception Class *CX_SY_SEND_DYNPRO_NO_RECEIVER*
    Error Name *DYNPRO_SEND_IN_BACKGROUND*
    Program *SAPLSTRD *
    Include *LSTRDU30 *
    Line *186*
    i m uploading image using code not manually and using htmlb:fileupload tab.
    getting here at this point
    *upload new file INTO MIME OBJECTS
          o_mr_api->put(
            EXPORTING
              i_url                         = lv_url
              i_content                     = lv_xstring
              i_suppress_package_dialog     = 'X'
               i_new_loio                   = l_loio
            EXCEPTIONS
              parameter_missing             = 1
              error_occured                 = 2
              cancelled                     = 3
              permission_failure            = 4
              data_inconsistency            = 5
              new_loio_already_exists       = 6
              is_folder                     = 7
              OTHERS                        = 8 ).
    Thanks

    Hi Prashant,
    I worked on your code and found that the exception is thrown in the standard FM..
    CALL FUNCTION 'SKWF_NMSPC_IO_FIND_BY_ADDRESS'
          EXPORTING
            url   = l_url "parent url
            appl  = wbmr_c_skwf_appl_name
          IMPORTING
            io    = g_parent_loio
            error = l_error. "is also set, if l_url not found !
    Reason:
    I named my BSP application Z_MIMEUPLOAD I was getting dump when ....
    In layout and in OnInputprocessing I used ZTEST_MIMEUPLOAD instaed of Z_MIMEUPLOAD
    The dump disappered as soon as I corrected the BSP application name everywhere in the application.
    Please check the url and application name everywhere in your code.
    Also replace the code:
    CONCATENATE 'http://siildev.siil.com:8001/sap(bD1lbiZjPTc3Nw==)/bc/bsp/sap/zprbsp_002/' wa_file into
    By this:
    CONCATENATE 'http://siildev.siil.com:8001/sap(bD1lbiZjPTc3Nw==)/bc/bsp/sap/zprbsp_002/PAGE_NAME' wa_file into
    That is add page name to url in layout.
    I am not sure what is hapening in your code but this is what I found.
    Hope it helps you.
    Regards,
    Anubhav

  • Error while uploading BITMAP image in SAP through SE78.

    Hello all,
    I am getting below error while uploading image into SAP through SE78.
    'Bitmap file: No color table available (True Color, Bitcount 32)'.
    I have tried searching for solution and got some help from below reply from a thread:
    You may do these options:
    1. Lower the resolution of the image
    2. Lower the file size of the image
    Regards,
    Reymar
    I have got a image size of 6.14 KB and resolution of 72*72 dots per inch.
    Thanks in Advance.
    - Jayant Sahu.

    Hi Daniel,
    First of all, if you dont mind, start a new thread for your question please.
    Anyways, answer to your question is --
    You need to save your picture with lower-most bits BITMAP Type. When you were saving your picture as .bmp, take care you are passing lower-most BITMAP type and not 24-bit as it may be as default.
    This way, your problem would be resolved.
    Thanks.
    Kumar Saurav.

  • Error while uploading schema for Master Catalog

    Guys,
    I got the below error while uploading Schema with custom char for Master catalog;
    "Error in row 11 of the CSV file" where as the 11th row is "DataType;INTEGER;integer;Integer Type"
    in the csv file. Please suggest.
    Regards
    TGB

    Hi,
    Check txn-SLG1 in SRM system. There if you go to details, you will see exact description of error.
    There are some dos and donts for csv files. for e.g you can't put  : ,  /    etc.symbols in the csv file.
    Regards,
    Sanjeev

  • Error while uploading document in Primavera portfolio management

    Dear All,
    I am getting error while uploading document with particular user in PPM
    Error occur when I upload document and click on save button.
    Error from log :
    &ltException&gt
    System.InvalidCastException: Specified cast is not valid.
       at ProSight.Portfolios.Infrastructure.Database.IpsDataRow.getInt(DataColumn iColumn)
       at ProSight.Portfolios.BusinessLogic.Infrastructure.Objects.psLinkObj.addNew(Int32 iUserID, Int32 iPortfolioID, Boolean isPortfolioLink, IpsDataTable iLinkRec)
       at ProSight.Portfolios.BusinessLogic.TS.TransactionalScenario.psTSTabset.update(Int32 iUserID, Int32 iFormsetID, Int32 iPortfolioID, Boolean iIsImmediate, psResultContainer iParam)
    &lt/Exception&gt
    </Trace>
    <Trace Type="Error" Time="1/31/2015 1:44:36.758" class="psTransactionalScenarioInterface" Method="handleException" Process="w3wp.exe (4236)" Client="">
    Error in psTSFormset.update
    &ltException&gt
    System.InvalidCastException: Specified cast is not valid.
       at ProSight.Portfolios.BusinessLogic.TS.TransactionalScenarioInterface.psTransactionalScenarioInterface.invokeTS(String className, String methodName, Object[] parameters, Int32 maxRetries, Int32 minRetryWait, psResultContainer containerToClean, Boolean iDisableTransaction)
    &lt/Exception&gt
    </Trace>
    <Trace Type="Error" Time="1/31/2015 1:44:36.758" class="Transaction" Method="handleException" Process="w3wp.exe (4236)" Client="">
    Unhandled Error GUID: a3640801-43cb-48d4-89b4-cede50780e47 \"File name: /Prosight/forms/saveForm.aspx\\nStack trace:    at ProSight.Portfolios.BusinessLogic.TS.TransactionalScenarioInterface.psTransactionalScenarioInterface.handleException(Exception iEx, String iAddionalMsg)\\r\\n   at ProSight.Portfolios.BusinessLogic.TS.TransactionalScenarioInterface.psTransactionalScenarioInterface.invokeTS(String className, String methodName, Object[] parameters, Int32 maxRetries, Int32 minRetryWait, psResultContainer containerToClean, Boolean iDisableTransaction)\\r\\n   at ProSight.Portfolios.BusinessLogic.TS.TransactionalScenarioInterface.psTransactionalScenarioInterface.invokeTS(String className, String methodName, Object[] parameters, Int32 maxRetries, Int32 minRetryWait, psResultContainer containerToClean)\\r\\n   at ProSight.Portfolios.BusinessLogic.TS.TransactionalScenarioInterface.psTSITabset.update(Int32 iUserID, Int32 iDashboardID, Int32 iPortfolioID, Boolean iIsImmediate, psResultContainer iParam)\\r\\n   at ProSight.Portfolios.Server.Presentation.Logic.Forms.psPLForms.update(psResultContainer iResultContainer)\\r\\n   at invoker137.Invoke(Object , Object[] )\\r\\n   at Microsoft.JScript.JSMethodInfo.Invoke(Object obj, BindingFlags options, Binder binder, Object[] parameters, CultureInfo culture)\\r\\n   at Microsoft.JScript.LateBinding.CallOneOfTheMembers(MemberInfo[] members, Object[] arguments, Boolean construct, Object thisob, Binder binder, CultureInfo culture, String[] namedParameters, VsaEngine engine, Boolean& memberCalled)\\r\\n   at Microsoft.JScript.LateBinding.Call(Binder binder, Object[] arguments, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters, Boolean construct, Boolean brackets, VsaEngine engine)\\r\\n   at Microsoft.JScript.LateBinding.Call(Object[] arguments, Boolean construct, Boolean brackets, VsaEngine engine)\\r\\n   at ASP.forms_saveform_aspx.main()\\nError code: -1\\nError Reason: Specified cast is not valid.\\n\\n\", \"/ProSight\"
    </Trace>
    <Trace Type="Error" Time="1/31/2015 1:44:47.584" class="psException" Method="printException" Process="w3wp.exe (4236)" Client="">
    Could not update form data
    USERID: 422
    DEADLOCK DETECTED: False
    Kindly help.

    Hi,
    chk ur authorizaion errors... su53 dump.
    Thx,
    waseem

  • Getting error while uploading multiple files in sharepoint hosted app in 2013 with REST API

    Hi All,
    In one of my tasks, I was struck with one issue, that is "While uploading multiple files into custom list with REST API".
    Iam trying to upload multiple files in library with REST calls for an APP development, my issue is if i wants to upload 4 image at once its storing only
    3 image file and further giving "Conflict" error". Below is the attached screenshot of exact error.
    Error within screenshot are : status Code : 409
    status Text :conflict
    For this operation i am uploading different files as an attachment to an list item, below is the code used for uploading multiple files.
    my code is
    function PerformUpload(listName, fileName, listItem, fileData)
        var urlOfAttachment="";
       // var itemId = listItem.get_id();
        urlOfAttachment = appWebUrl + "/_api/web/lists/GetByTitle('" + listName + "')/items(" + listItem + ")/AttachmentFiles/add(FileName='" + fileName + "')"
        // use the request executor (cross domain library) to perform the upload
        var reqExecutor = new SP.RequestExecutor(appWebUrl);
        reqExecutor.executeAsync({
            url: urlOfAttachment,
            method: "POST",
            headers: {
                "Accept": "application/json; odata=verbose",
                "X-RequestDigest": digest              
            contentType: "application/json;odata=verbose",
            binaryStringRequestBody: true,
            body: fileData,
            success: function (x, y, z) {
                alert("Success!");
            error: function (x, y, z) {
                alert(z);

    Hi,
    THis is common issue if your file size exceeds 
     upload a document of size more than 1mb. worksss well for kb files.
    https://social.technet.microsoft.com/Forums/office/en-US/b888ac78-eb4e-4653-b69d-1917c84cc777/getting-error-while-uploading-multiple-files-in-sharepoint-hosted-app-in-2013-with-rest-api?forum=sharepointdevelopment
    or try the below method
    https://social.technet.microsoft.com/Forums/office/en-US/40b0cb04-1fbb-4639-96f3-a95fe3bdbd78/upload-files-using-rest-api-in-sharepoint-2013?forum=sharepointdevelopment
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Error while upload content in UCM: after site studio integration with UCM

    Hi All,
    To use Site Studio, I enabled following components in UCM:
    Link Manager; DBSearchContainsOpSupport; SiteStudion; SiteStudionExternalApplication
    But after this activity I am facing followig error while uploading any content in UCM. :
    Error
    1/13/14 5:36 PM
    Event generated by user 'weblogic' at host '172.21.140.207:16200'. Unable to execute service CHECKIN_NEW_SUB and function Imeta.
    Unable to execute query 'IdsDocMetaDataDocMeta(INSERT INTO DocMeta(dID,xComments,xExternalDataSet,xIdcProfile,xPartitionId,xWebFlag,xStorageRule,xIPMSYS_APP_ID,xIPMSYS_BATCH_ID1,xIPMSYS_BATCH_SEQ,xIPMSYS_PARENT_ID,xIPMSYS_REDACTION,xIPMSYS_SCKEY,xIPMSYS_STATUS,xCollectionID,xHidden,xReadOnly,xInhibitUpdate,xForceFolderSecurity,xTrashDeleter,xTrashDeleteDate,xTrashDeleteLoc,xTrashDeleteName,xTemplateType,xWCTags,xWCPageId,xWCWorkflowAssignment,xWCWorkflowApproverUserList,xShort_Description,xDetailed_Description,xWebsiteObjectType,xWebsites,xDontShowInListsForWebsites,xWebsiteSection,xRegionDefinition) VALUES(10810,'','','','','','DispByContentId','',0,'',0,0,'','',0,'FALSE','FALSE','FALSE','FALSE','',null,0,'','','','','','','','','','','','',''))'. ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE
    java.sql.SQLException: ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE. [ Details ]  An error has occurred. The stack trace below shows more information. !csUserEventMessage,weblogic,172.21.140.207:16200!$!csServiceDataException,CHECKIN_NEW_SUB,Imeta!$!csDbUnableToExecuteQuery,IdsDocMetaDataDocMeta(INSERT INTO DocMeta(dID\,xComments\,xExternalDataSet\,xIdcProfile\,xPartitionId\,xWebFlag\,xStorageRule\,xIPMSYS_APP_ID\,xIPMSYS_BATCH_ID1\,xIPMSYS_BATCH_SEQ\,xIPMSYS_PARENT_ID\,xIPMSYS_REDACTION\,xIPMSYS_SCKEY\,xIPMSYS_STATUS\,xCollectionID\,xHidden\,xReadOnly\,xInhibitUpdate\,xForceFolderSecurity\,xTrashDeleter\,xTrashDeleteDate\,xTrashDeleteLoc\,xTrashDeleteName\,xTemplateType\,xWCTags\,xWCPageId\,xWCWorkflowAssignment\,xWCWorkflowApproverUserList\,xShort_Description\,xDetailed_Description\,xWebsiteObjectType\,xWebsites\,xDontShowInListsForWebsites\,xWebsiteSection\,xRegionDefinition) VALUES(10810\,''\,''\,''\,''\,''\,'DispByContentId'\,''\,0\,''\,0\,0\,''\,''\,0\,'FALSE'\,'FALSE'\,'FALSE'\,'FALSE'\,''\,null\,0\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''))!$ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE<br>!syJavaExceptionWrapper,java.sql.SQLException: ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE<br> intradoc.common.ServiceException: !csServiceDataException,CHECKIN_NEW_SUB,Imeta!$ *ScriptStack CHECKIN_NEW_SUB 3:doScriptableAction,dDocName=abc0013:doSubService,dDocName=abc001CHECKIN_NEW_SUB,dDocName=abc0012:Imeta,dID=10810,dDocName=ABC001 at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115) at intradoc.server.Service.buildServiceException(Service.java:2326) at intradoc.server.Service.createServiceExceptionEx(Service.java:2320) at intradoc.server.Service.createServiceException(Service.java:2315) at intradoc.server.ServiceRequestImplementor.handleActionException(ServiceRequestImplementor.java:1766) at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1716) at intradoc.server.Service.doAction(Service.java:547) at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1458) at intradoc.server.Service.doActions(Service.java:542) at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1322) at intradoc.server.Service.executeSubServiceCode(Service.java:4023) at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:1200) at intradoc.server.Service.executeServiceEx(Service.java:4018) at intradoc.server.Service.executeService(Service.java:4002) at intradoc.server.Service.doSubService(Service.java:3912) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86) at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310) at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295) at intradoc.server.Service.doCodeEx(Service.java:620) at intradoc.server.Service.doCode(Service.java:575) at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643) at intradoc.server.Service.doAction(Service.java:547) at intradoc.server.Service.doScriptableAction(Service.java:3964) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at intradoc.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:86) at intradoc.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:310) at intradoc.common.ClassHelperUtils.executeMethod(ClassHelperUtils.java:295) at intradoc.server.Service.doCodeEx(Service.java:620) at intradoc.server.Service.doCode(Service.java:575) at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643) at intradoc.server.Service.doAction(Service.java:547) at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1458) at intradoc.server.Service.doActions(Service.java:542) at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1391) at intradoc.server.Service.executeActions(Service.java:528) at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:737) at intradoc.server.Service.doRequest(Service.java:1956) at intradoc.server.ServiceManager.processCommand(ServiceManager.java:437) at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265) at intradoc.idcwls.IdcServletRequestUtils.doRequest(IdcServletRequestUtils.java:1354) at intradoc.idcwls.IdcServletRequestUtils.processFilterEvent(IdcServletRequestUtils.java:1731) at intradoc.idcwls.IdcIntegrateWrapper.processFilterEvent(IdcIntegrateWrapper.java:222) at sun.reflect.GeneratedMethodAccessor134.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at idcservlet.common.IdcMethodHolder.invokeMethod(IdcMethodHolder.java:87) at idcservlet.common.ClassHelperUtils.executeMethodEx(ClassHelperUtils.java:305) at idcservlet.common.ClassHelperUtils.executeMethodWithArgs(ClassHelperUtils.java:278) at idcservlet.ServletUtils.executeContentServerIntegrateMethodOnConfig(ServletUtils.java:1704) at idcservlet.IdcFilter.doFilter(IdcFilter.java:457) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at java.security.AccessController.doPrivileged(Native Method) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119) at java.security.AccessController.doPrivileged(Native Method) at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315) at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442) at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103) at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:178) Caused by: intradoc.data.DataException: !csDbUnableToExecuteQuery,IdsDocMetaDataDocMeta(INSERT INTO DocMeta(dID\,xComments\,xExternalDataSet\,xIdcProfile\,xPartitionId\,xWebFlag\,xStorageRule\,xIPMSYS_APP_ID\,xIPMSYS_BATCH_ID1\,xIPMSYS_BATCH_SEQ\,xIPMSYS_PARENT_ID\,xIPMSYS_REDACTION\,xIPMSYS_SCKEY\,xIPMSYS_STATUS\,xCollectionID\,xHidden\,xReadOnly\,xInhibitUpdate\,xForceFolderSecurity\,xTrashDeleter\,xTrashDeleteDate\,xTrashDeleteLoc\,xTrashDeleteName\,xTemplateType\,xWCTags\,xWCPageId\,xWCWorkflowAssignment\,xWCWorkflowApproverUserList\,xShort_Description\,xDetailed_Description\,xWebsiteObjectType\,xWebsites\,xDontShowInListsForWebsites\,xWebsiteSection\,xRegionDefinition) VALUES(10810\,''\,''\,''\,''\,''\,'DispByContentId'\,''\,0\,''\,0\,0\,''\,''\,0\,'FALSE'\,'FALSE'\,'FALSE'\,'FALSE'\,''\,null\,0\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''))!$ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE at intradoc.jdbc.JdbcWorkspace.handleSQLException(JdbcWorkspace.java:2546) at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:586) at intradoc.data.IdcDataSource.modData(IdcDataSource.java:891) at intradoc.data.IdcDataSourceQuery.execute(IdcDataSourceQuery.java:143) at intradoc.data.IdcDataSourceUtils.execute(IdcDataSourceUtils.java:99) at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1616) ... 79 more Caused by: java.sql.SQLException: ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462) at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405) at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931) at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481) at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205) at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548) at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:202) at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1110) at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488) at oracle.jdbc.driver.OracleStatement.doScrollExecuteCommon(OracleStatement.java:6518) at oracle.jdbc.driver.OracleStatement.doScrollStmtExecuteQuery(OracleStatement.java:6665) at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:2151) at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:2091) at oracle.jdbc.driver.OracleStatementWrapper.executeUpdate(OracleStatementWrapper.java:320) at weblogic.jdbc.wrapper.Statement.executeUpdate(Statement.java:511) at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:566) ... 83 more 
    Error
    1/13/14 5:37 PM
    Event generated by user 'weblogic' at host '172.21.140.207:16200'. Unable to execute service CHECKIN_NEW_SUB and function Imeta.
    Unable to execute query 'IdsDocMetaDataDocMeta(INSERT INTO DocMeta(dID,xComments,xExternalDataSet,xIdcProfile,xPartitionId,xWebFlag,xStorageRule,xIPMSYS_APP_ID,xIPMSYS_BATCH_ID1,xIPMSYS_BATCH_SEQ,xIPMSYS_PARENT_ID,xIPMSYS_REDACTION,xIPMSYS_SCKEY,xIPMSYS_STATUS,xCollectionID,xHidden,xReadOnly,xInhibitUpdate,xForceFolderSecurity,xTrashDeleter,xTrashDeleteDate,xTrashDeleteLoc,xTrashDeleteName,xTemplateType,xWCTags,xWCPageId,xWCWorkflowAssignment,xWCWorkflowApproverUserList,xShort_Description,xDetailed_Description,xWebsiteObjectType,xWebsites,xDontShowInListsForWebsites,xWebsiteSection,xRegionDefinition) VALUES(10811,'','','','','','DispByContentId','',0,'',0,0,'','',0,'FALSE','FALSE','FALSE','FALSE','',null,0,'','','','','','','','','','','','',''))'. ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE
    java.sql.SQLException: ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE. [ Details ]  An error has occurred. The stack trace below shows more information. !csUserEventMessage,weblogic,172.21.140.207:16200!$!csServiceDataException,CHECKIN_NEW_SUB,Imeta!$!csDbUnableToExecuteQuery,IdsDocMetaDataDocMeta(INSERT INTO DocMeta(dID\,xComments\,xExternalDataSet\,xIdcProfile\,xPartitionId\,xWebFlag\,xStorageRule\,xIPMSYS_APP_ID\,xIPMSYS_BATCH_ID1\,xIPMSYS_BATCH_SEQ\,xIPMSYS_PARENT_ID\,xIPMSYS_REDACTION\,xIPMSYS_SCKEY\,xIPMSYS_STATUS\,xCollectionID\,xHidden\,xReadOnly\,xInhibitUpdate\,xForceFolderSecurity\,xTrashDeleter\,xTrashDeleteDate\,xTrashDeleteLoc\,xTrashDeleteName\,xTemplateType\,xWCTags\,xWCPageId\,xWCWorkflowAssignment\,xWCWorkflowApproverUserList\,xShort_Description\,xDetailed_Description\,xWebsiteObjectType\,xWebsites\,xDontShowInListsForWebsites\,xWebsiteSection\,xRegionDefinition) VALUES(10811\,''\,''\,''\,''\,''\,'DispByContentId'\,''\,0\,''\,0\,0\,''\,''\,0\,'FALSE'\,'FALSE'\,'FALSE'\,'FALSE'\,''\,null\,0\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''\,''))!$ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE<br>!syJavaExceptionWrapper,java.sql.SQLException: ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE<br> intradoc.common.ServiceException: !csServiceDataException,CHECKIN_NEW_SUB,Imeta!$ *ScriptStack CHECKIN_NEW_SUB 3:doScriptableAction,dDocName=vbgfbd3:doSubService,dDocName=vbgfbdCHECKIN_NEW_SUB,dDocName=vbgfbd2:Imeta,dID=10811,dDocName=VBGFBD 
    Caused by: java.sql.SQLException: ORA-29861: domain index is marked LOADING/FAILED/UNUSABLE
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
            at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
            at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
            at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
            at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
            at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:202)
            at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:1110)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1488)
            at oracle.jdbc.driver.OracleStatement.doScrollExecuteCommon(OracleStatement.java:6518)
            at oracle.jdbc.driver.OracleStatement.doScrollStmtExecuteQuery(OracleStatement.java:6665)
            at oracle.jdbc.driver.OracleStatement.executeUpdateInternal(OracleStatement.java:2151)
            at oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java:2091)
            at oracle.jdbc.driver.OracleStatementWrapper.executeUpdate(OracleStatementWrapper.java:320)
            at weblogic.jdbc.wrapper.Statement.executeUpdate(Statement.java:511)
            at intradoc.jdbc.JdbcWorkspace.execute(JdbcWorkspace.java:566)
            ... 83 more
    Regards
    -Arvind

    First of all, I think you are in a wrong forum. This seems to be WebCenter Content
    The list of components is available here: About Site Studio for External Applications - 11g Release 1 (11.1.1)
    However, the error you get states something about indexes. You may have to re-run the Indexer after new components are enabled and the server restarted. See Managing Search Features - 11g Release 1 (11.1.1)

  • Error while uploading SSRS Reports to SharePoint Report Library

    Dear All,
    I am having a SSRS Server running in SharePoint integrated mode and I am running reports in SharePoint successfully, but I am facing issue with one site as shown below.
    I am getting below error while uploading a report to specific path as shown below;
    I can upload to any link but not for the below link shows /departments/ocean
    I checked my ReportServer paths from RS Configuration Manager and I cannot find that defined path there. But I can see all other links are registered()
    Note: Below shows my web applications in SharePoint farm(four web sites). I have define paths(site collections) only in default web application, not in other webs which has a port number.
    I am not sure how the RS Configuration Manager picks thoae Define Manage Path in site collections.
    But I think, it should pick department site collections as well.
    Could you please guide me how to rectify above error?
    ASP.Net, C#.Net, SQL Server ,Win32

    Hi,
    I recommend to check you can connect to the site collection in Report Builder.
    If not, please check if you have permission to access the site collection.
    Please also check if the Report Server Integration Feature is activated in the site collection.
    To narrow the issue scope, I recommend to create a new site collection using the departments path in SharePoint to see if the issue still occurs.
    As a workaround, you can also  save the report to local drive and then upload it to SharePoint library using Upload Document button in the ribbon in SharePoint library.
    In the meanwhile, you can post your question to the forum for SSRS: http://social.technet.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlreportingservices.
    More experts will assist you, then you will get more information relation to SSRS.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Error while uploading Transport request from SAP ECC6.0 EHP4 to SAP ECC 5.0

    Hi friends,
    Error while uploading transport request to the transport directory,
    we downloaded the transport request from one sap system which have a set of developments(contains screen programs)
    for example downloaded all co files and data files
    control file: K900470.SAD and Data file: R900470.SAP from transport directory.
    we are trying to upload the transport to another Sap system
    we have
    Uploaded the controlling file K900470.sad to the location  /usr/sap/transpad/cofiles/
    Uploaded the controlling file R900470.sad to the location  /usr/sap/transpad/data/
    we tried to add in the import queues using TCODE: STMS and trying to import.
    During import we get the below error:
    HALT: unknown dynpro format: d021s_length() returned 0 Please contact the SAP support.
    End with rc : 16
    Please help me on this
    We are trying to copy from ECC 6.0 EHP4 to SAP 5.0 and SAP 4.7EE
    Thanks & Regards
    Murali Papana

    Did you see that you tried to transport to an older release!! You should have expected such a result.
    Before doing such a thing, you should have looked at SAP notes to see SAP recommendations, if any. And you're lucky, there are ones: [Note 1090842 - Composite note: Transport across several releases|http://service.sap.com/sap/support/notes/1090842]. You need to know that ECC6 corresponds to SAP Basis 7.0, and ECC5 corresponds to SAP Basis 6.40.

  • (409) Conflict Error while uploading the file into Sharepoint library

    Getting the below error while uploading the file into Sharepoint library.
    (409) Conflict. at System.Net.HttpWebRequest.GetResponse() at Microsoft.SharePoint.Client.SPWebRequestExecutor.Execute() at Microsoft.SharePoint.Client.File.SaveBinary(ClientContext context, String serverRelativeUrl,
    Stream stream, String etag, Boolean overwriteIfExists
    I have used the below code:
    ClientOM.File.SaveBinaryDirect(clientContext, "/Shared%20Documents/NewDocument.pptx", memoryStream, true);
    Thanks in advance.

    May be issue is with path.
    https://server/ should be there instead of
    subsite path(https://server/path/path)
    in the client context
    Check the below link
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/fbb38b10-1127-48a6-a65f-0301edd766c4/the-remote-server-returned-an-error-409-conflict-error-while-uploading-files-to-sharepoint?forum=sharepointdevelopmentlegacy

  • Error while uploading Template

    Error while uploading Template in Internet Procurement Catalog Administrator responsibility
    I downloaded "Item Price" and i had one item onto spread sheet and tried to upload in above responsibility.
    This is how header level is in the template and line level has item information.
    #ENCODING     Cp1252                                                  
    Language Section*     EN-US                                                  
    Catalog Section     Supplier*      Title                                             
         FEDERAL INDUSTRIES     Test Catalog     
    ***********When i looked into log file i see error message ********************
    [5/20/11 7:58:13 PM] <INFO> Session language altered to AMERICAN
    [5/20/11 7:58:13 PM] <INFO> Session territory altered to AMERICA
    [5/20/11 7:58:13 PM] <INFO> ********** Loader started **********
    [5/20/11 9:35:08 AM] <ERROR> USR:MSG:POM_CAT_MISS_LANG_SEC
    [5/20/11 9:35:08 AM] <ERROR> -> Missing Language Section.
    [5/20/11 9:35:08 AM] <INFO> *********************
    [5/20/11 9:35:08 AM] <ERROR> Failure Message is ::
    [5/20/11 9:35:08 AM] <ERROR> USR:MSG:POM_CAT_MISS_LANG_SEC
    [5/20/11 9:35:08 AM] <INFO> *********************
    [5/20/11 9:35:08 AM] <INFO> Job failed
    [5/20/11 9:35:08 AM] <INFO> ********** Loader stopped **********
    I already had language section in the template as shown above, not sure why it is giving error.
    could you please let me know how to troubleshoot
    Edited by: 855902 on May 20, 2011 5:02 PM

    Hi,
    We believe you are getting this error because of some kind of format issue in the flat file which you are loading..
    You can refer below URL:
    http://appswork.blogspot.com/2009/09/catalog-loader.html
    /S.P DASH

Maybe you are looking for