Using FTP with Content DB ni Webcenter Suite

Hi All,
Is it possible to use the FTP protocol in ContentDB version 10.1.3.2 (The one in WebCenter Suite) ?
I'd like to upload files and folders with BPEL 10.1.3.1 into this ContentDB.
I am not able to find the FtpServerConfiguration in the ApplicationServerControl.
Thanx in advance.
Regards
Jørn

Charu,
I found the solution, but not how I wanted it.
It is explained to me that the 10.1.3.2 Webcenter version contains a "stripped" ContentDB version. And as you can imagine FTP is one of thos stripped parts, thus not available in this one.
Therefor I took the step back and installed the seperate ContentDB 10.2.0
With this everything worked fine.
Sorry for the probably disappointing answer ;)
Regards
Jørn

Similar Messages

  • How to send multiple files in parallel using ftp with single connection

    Hi.
    i have written code for file upload manager using ftp..
    it perfectly working with sequence file uploading in single connection..
    And i tried to upload multiple files with parallel processing in a single connection.... but it is not working properly.. i also used thread concept
    but single file only transfered and connection refused...
    my code here...
    //////////////////// main class //////////////////////////////////////////
    ftp.connect();
    ftp.login();
    String [] archivos = new  String[100];
                                      File dir = new File("C:\\Files Uploading\\");
                                       archivos = dir.list();
                                       for (int s=0; s<archivos.length;s++)
         //Start Data Transfer Here
         new DataTransfer(archivos[s]).start();
                                       Thread.sleep(1000);
    /////////////////////// thread class ////////////////////////////////
    class DataTransfer extends Thread
          String FileName="";
          String LocalPath="",RemotePath="";
           public DataTransfer(String fname)
         FileName = fname;
         LocalPath = "C:\\Files Uploading\\" + FileName;
         RemotePath = FileName;
         System.out.println(LocalPath);          
            public void run()
                        System.out.println("DataTransfer Started");
         /File Transfer Here
         try
               FileInputStream input = new FileInputStream(LocalPath);
                               Ftp_Client.storeFile(RemotePath,input);
         System.out.println("Successfully sent : " + RemotePath);
         catch (Exception exc)
              System.out.println(exc.getMessage());
              System.out.println("DataTransfer Ended");
         }otherwise tell me any other alternate way

    And i tried to upload multiple files with
    parallel processing in a single connection....
    but it is not working properly.FTP isn't a multiplexing protocol. How could it work at all?

  • How to use FTP with Time Capsule Gen4

    I am having difficulty setting up FTP with my Time Capsule.  This is the first time I have attempted using FTP on the Time Casule and have read through some documentation and believe I have it set up correctly but could be wrong.  I am using FileZilla and tried to connect but the connection fails therefore my post for assistance.
    If someone could provide me the basics or links for installation/testing and etc.. I would very much appreciate it.  At this point I feel I just need to start over.
    Thanks,
    John

    Port forwarding for FTP is rather more complex than it first seems..
    Ports that need to be open depend on type of FTP.. ie active or passive.
    Read the discussion of ftp through NAT.
    http://slacksite.com/other/ftp.html
    Make sure the firewall on the computer that is running ftp is off.
    And I guess in the end.. if you have a different router give that a go.. it can help identify where the problem is.
    If you are using v6 airport utility.. opening ports is not at all easy either.. definitely recommend you install 5.6 utility.
    If you are still on lion just install it.. http://support.apple.com/kb/DL1482
    If you are on ML tell us as there are ways and means.

  • Using FTP with Seagate BlackArmor NAS 440

    Hey everyone - I need some help regarding OS X being able to log in with a drag and drop ability on my NAS using FTP.
    I believe I have everything set up correctly, because I can log into my NAS at work on a PC using the ftp://user:[email protected] just fine.
    However, if done with a mac, through safari, it just opens the folder for display. I cannot read/write to the NAS.
    Also if I try to "connect to server" it gives me an error.
    I also tried a 3rd party FTP application and that gave me errors as well (I believe it was 550 authentication errors?)
    Like I said, I can do everything just fine with a PC, but as soon as I try it with a Mac it errors and won't connect.
    Currently system is the 2013 15" MBP retina, my guitarist uses a 2011 13" MBP.
    Both are running latest versions of OS X.
    It would be nice to get this resolved as it would be much easier for transferring our recording projects back and forth and backing them up based on either system we are using.
    Any suggestions would be great - thanks for your time!

    Across the internet. Say we record a guitar track at his house, and then we can just upload it to the NAS.
    Then when I am home I can add some synth tracks.. back and forth we can add parts.
    I just tested it this morning to see if I could actually connect to it at work and (I use a PC at work)
    I have no problems here at all drag/drop just fine. But trying to get him connected it fails.

  • Trouble using ftp with utf8

    hi,
    i've got a problem since i use my new notebook (windows 8.1, 64 bit) for ftp sessions. i am not able to edit, up- or download files with umlauts (e.g. "ü, "ä") in file name. i tried 3 ftp-clients (winscp, filezilla, fireftp). in each of them
    i checked the option to use the encoding utf8, but it doesn't work. i also tried everything after changing the ftp mode from passive into active in internet explorer. same result. maybe it's important to say, that i firestly made an update from windows 8 to
    8.1 before i used the notebook. does anyone have a solution?

    It seems that this is designed by default.
    The Windows built-in FTP service doesn't support utf8.

  • Help Downloading a file from a server using FTP with only URL methods

    Hi All
    I have written this code and it is not working I dod not know why the download is not working please help is there anything that's missing?
    * Download the file
    public void download(String fileName, String destination)
           BufferedInputStream bis = null;
           BufferedOutputStream bos = null;
          // File destDir = null;
           try
               String urlString = "ftp://"+userName+":"+password+"@"+hostName+"/"+fileName;
               URL url = new URL(urlString);
               URLConnection conn = url.openConnection();
               conn.setDoOutput(true);
         conn.setDoInput(true);
               conn.connect();
           //set the destination directory
           File destDir = new File("U:\\2004\\"+fileName.trim());
            System.out.print("\n\n");
            System.out.print("Destination set to :" +destDir);
            System.out.print("\n\n");
              bis = new BufferedInputStream( conn.getInputStream() );
              bos = new BufferedOutputStream( new FileOutputStream(destDir.getName()));
              System.out.print("get file name :" +destDir.getName());
              System.out.print("\n\n");
              int i;
              while ((i = bis.read()) != -1)
                 bos.write( i );
              System.out.println("Trying to download...");
              bis.close();
              bos.close();
           catch (IOException ie)
         System.out.println( "Input not available" );
    This is what I get after runing this code.
    get umlcourse.txt U:\2004
    Destination set to :U:\2004\umlcourse.txt
    get file name :umlcourse.txtTrying to download...

    AceV wrote:
         String urlString = "ftp://"+userName+":"+password+"@"+hostName+"/"+fileName;
    You probably need to specify the transfer mode. For example:
    String url = "ftp://sam:spade@ftphost/myfile.txt;type=a";
    // Specify type=i for binary.

  • Posting a File with Date Time using FTP in a BPM scenario

    Hi All,
      I have got a following requirement within the BPM ::-
    Step 1: We receive a file from an external system using FTPS with File Content Conversion Mode. The file is a comma separated file.
    Step 2 : We need to write the same file without any changes in data elements to another File System. The file to be written will be comma separated.
    Step 3 : The data will be mapped to an RFC and there will be a RFC Call to the ECC system.
    Step 4 : On successful call to RFC, the file will be dumped into the SAP File system also.
    The issue here is in Step 2. The additional requirement for Step 2 is to name the file with the following convention -
    ABCDEF_<Date in MMDDYYYY>_<Time in HHMMSS>_<Time in ms>_data.txt
    Can you help me on how to configure this from within the BPM ? I have seen blogs and replies in forum on using UDF's for the same. I am not sure on how to do this in BPM.
    Please help !!!
    Thanks,
    Amit

    Hi,
    I dont think you required BPM in this case,you can achieve this requirement using Multi mapping.
    3 Receive comunication channels
    1)to send file to receive File directory9Content conversion required)
    2)RFC Receiver Communication channel to make a cal to SAP ECC to send RFC..
    3)One more File communication channel to send data to SAP File System.
    refer below blog.
    /people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible
    Regarding r file name use dynam ic configuration UDF or ASMA to chnage file name format to your desired format,if you decided to use UDF then map root nod of receiver file structure in multimapping.
    Regards,
    Raj

  • SSIS 2005 FTP with PPK

    Hello. I would like to automate sending an Excel file to a vendor FTP site with SSIS 2005.  I can see how to use ftp with user name and password options.  However, the twist here is that the vendor says that I need to incorporate a ppk key for
    security reasons. The problem is that I am not finding this on the ftp task bar in the SSIS GUI. Before I get into the weeds on how to set this up, the first question I'm asking is if this can actually be done in SSIS 2005?
    Thanks in advance for comments.
    Brian

    Hi Brian,
    not by using the stock FTP Task. It only is a wrapper around the command line FTP client.
    If you are able to code then it will be a Script Task with some VB or C#, but may be that then defeats the merits of using SSIS
    Arthur My Blog

  • What is the portal that comes with webcenter suite 11g?

    Hello,
    What is the portal that comes with webcenter suite 11g?
    How to retrieve the content from UCM using this portal?
    -Scott

    Scott,
    The JCR adpater can be configured against Oracle Content Server(UCM), file system and Oracle Portal. This gives you only the read feature on the repository. However the web center frame work also provides you the Document Library Task flows with both Read/Write capabilities and other capabilities like recent documents, search etc. The task flows can also customized to suit your UI requirements as well. In addition to this there is a content presenter Task flow available where Business Users can display formatted content from UCM on web center page. This is similar to the content presenter portlet available inside WLP.
    Regards
    Vijay

  • WebCenter Suite installation: Content DB configuration Assistant failed

    Hi Experts,
    I am trying to install Oracle WebCenter 10.1.3.2.0 on Windows 2003 machine. I had installed a DB 10.2.0.1 to serve for the db for content DB repository.
    I chose the Basic Installation type for webcenter suite. The installation is generally successful but the configuration assistant for content DB failed.
    In the contentconfig.log file, I see the following error stack.
    *********** Starting AdminManagerAction_CreateInterMediaMedia ***********
    Next task: CreateMediaLOB InterMediaBlob $$mediaClass $$chunkSize $$lobTablespace $$isIndexed
    Exception while performing task 'CreateMediaLOB InterMediaBlob $$mediaClass $$chunkSize $$lobTablespace $$isIndexed' ; exception is:
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    oracle.ifs.common.IfsException: IFS-32257: SQL error adding content column(s) to media instance table. SQL was ALTER TABLE ODMM_CONTENTSTORE ADD ( InterMediaBlob BLOB, InterMediaBlob_T BLOB ) LOB (INTERMEDIABLOB) STORE AS (CACHE pctversion 20 chunk 32768 tablespace CONTENT_IFS_LOB_M DISABLE STORAGE IN ROW STORAGE (INITIAL 50M NEXT 50M)) LOB (INTERMEDIABLOB_T) STORE AS (CACHE pctversion 20 chunk 32768 tablespace CONTENT_IFS_LOB_M DISABLE STORAGE IN ROW STORAGE (INITIAL 50M NEXT 50M))
    java.sql.SQLException: ORA-01659: unable to allocate MINEXTENTS beyond 14 in tablespace CONTENT_IFS_LOB_M
    I am stuck with this error. This is the second time I did the complete installation and have got this error.
    Can anyone tell what is the cause of the error and what is needed to fix it? Will appreciate any helpful ideas.
    thanks!

    I have a similar problem on installation of Webcenter Suite using Basic installation.
    I have tried creating the table spaces according to the specifications given in oracle documentation, yet the installer complained about the table spaces not having free space left (specially, the WORK_IFS tables space). I also tried giving spaces on average 15MB more then the suggested space for their datafiles, and it still complained about the table space issue.
    When the configuration assistant fails, and you exit out of the Universal Installer, is there any option or way to just rerun the configuration assistant for content db again?
    I see on the EM for WebCenter Suite that all the other components seem to install properly and are up and running yet there is no mention of Content DB. Nor there is any option to try to reconfigure it.
    Can someone please help?
    thanks for your cooperation.
    AMN

  • Can we use WebCenter Sites content store in WebCenter Portal

    Hi,
    Can we use WebCenter Sites Content Store as the default content store in WebCenter Portal?
    I need to create website in WebCenter Sites, all the content will be stored in Sites Content Store. I also need to integrate WebCenter Portal with Sites content store to fetch contents from the store and display it in Portal. I do not wish to purchase WebCenter Content.
    Is this possible?
    Regards,
    Syed Rehan Shah

    Well , as suggested by jiri machotka, you can go for version 11.1.1.8.0 version with proper license.
    However,if you are using earlier versions than I must say that-
    It's going to be very very complex and cumbersome development process al-together . (at least for me) .Because why I am telling this is -
    The content repository structure of (webcenter site's CA server )is completely different from UCM (webcenter content server and preferred cms for portal).
    In previous threads ,lot of things are being discussed about this issue.
    In my opinion,you can very well integrate sites content to portal pages via REST API. Documentation is available.
    http://docs.oracle.com/cd/E29495_01/doc.1111/webcenter_sites_11gr1_wem_rest_api_resource_ref.pdf
    Apart from it, you can also do -
    1. Gadgets - You can consume Gadgets from WebCenter Portal, some examples with Google Gadgets are available in OTN.
    2. Widgets - You can build HMTL + Javascript widgets with Sites and embed in WebCenter Portal pages.
    Hope this info helps you out.
    Regards,
    Hoque

  • Writing timestamp on the content of file (not the filename) using FTP Adapt

    Hi Experts,
    Is it possible to write a timestamp (from the source server) to a target logfile if I'll use FTP Adapter?
    Here the scenario:
    Source:
    source.log -> the contents is AAAA (the timestamp base from the server is [06/09/10 10:00])
    - basically the source.log file is overwritten with the same content but the timestamp is changed so that's would be scenario
    it will checked by the FTP adapter....
    Target:
    target.log -> the content of the file is 06/09/10 10:00
    so probably if i have a target logfile I'll just have to append the file as this
    06/09/10 10:00
    06/09/10 10:02
    06/09/10 10:04
    06/09/10 10:06
    06/09/10 10:08
    06/09/10 10:10
    If it's possible, how will I do this? Do I need script? or just normal settings of the FTP adapter?
    R-jay

    Yes, is posibble. if i not wrong, you can do this ussing Dynamic configuration.
    see those links
    /people/ryan.crosby/blog/2009/02/27/file-xi-proxy-scenario--moving-binary-files-with-accompanying-filename-attribute-in-converted-xstring-format
    http://help.sap.com/saphelp_nw04/helpdata/en/43/03612cdecc6e76e10000000a422035/frameset.htm
    Thanks
    RP

  • Webcenter suite products installation with image file

    Hi,
    I am looking for any easy installation of webcenter suite for learning purpose which includes installation and default configuration of webcenter portal server, spaces, Oracle content server, OAM, DB with required schemas etc. Is there any image file available which gives pre-configured environment?

    I am looking for hardware configuration. Please refer the below thread for details.
    Required hardware configuration for Webcenter suite installation.
    Edited by: Chandramouli on 11 Jun, 2012 12:22 AM

  • Issue with using SSXA region templates with Content Presenter.

    I am using Content Presenter taskflow in Webcenter Portal. When i try to use the SSXA region template with content presenter, it doesnot render the html markup. But if i use normal UCM region templates(hscp), its rendering the html markup properly.
    Http Server acts as a proxy for both webcenter and ucm. Enabled SiteStudio, SiteStudioforExternalApplications, Webcenter Configure and other required features in Webcenter. Can any one tell me, if i missed any step?
    All i am getting the output as
    ${data.body}
    Taskflow binding
    <taskFlow id="doclibcontentpresenter1"
    taskFlowId="/oracle/webcenter/doclib/view/jsf/taskflows/presenter/contentPresenter.xml#doclib-content-presenter"
    activation="deferred"
    xmlns="http://xmlns.oracle.com/adf/controller/binding">
    <parameters>
    <parameter id="taskFlowInstId"
    value="${'23a55c99-abdd-4dea-a24a-1e04a68aa0bf'}"/>
    <parameter id="datasourceType" value="${'dsTypeSingleNode'}"/>
    <parameter id="datasource"
    value="${'UCM#dDocName:JLR_WYSIWYG_DATA'}"/>
    <parameter id="templateCategory" value="${''}"/>
    <parameter id="templateView" value="${'WYSIWYG_BLOCK_1_RGT'}"/>
    <parameter id="regionTemplate" value="${true}"/>
    <parameter id="maxResults" value="${''}"/>
    </parameters>
    </taskFlow>
    region template:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:wcm="http://www.oracle.com/jsp/wcm">
         <wcm:dataFile var="data"/>
         ${data.body}
    </jsp:root>
    This uses one region definition containing WYSIWYG element. I am able to edit and could type the html markup or data in WYSIWYG editor at contribution mode, but when i click save and close, all i am getting output as ${data.body}
    I manually verified the data file in UCM, and i could see the information stored (the data entered in contribution mode)

    Prasath,
    I'm not 100% sure but i believe that WebCenter does not support everything from the WCM tags. You can read the topic on SSXA on the WebCenter EMG:
    https://groups.google.com/group/webcenter-emg/browse_thread/thread/2ef9cca0252a0ae3
    Just a quote:
    "With the 11.1.1.4 release, WebCenter is very much targeted at the type of sites that would have previously been done using the WCM components (eg. Extranet, Internet sites). By surfacing the site studio region templates (and allowing in place editing of the documents) many of the use cases can be met. The question now is not whether,or not, the native templating + region support is sufficient for your needs (WebCenter does not support all the WCM artefacts as yet). "
    Regards
    Yannick

  • Re: Problem with transferring of data to non sap by using FTP funtion modul

    Hi all,
             I am doing program of creating excise invoice details and those are transfering to non sap.and I am successfully passing text file to that non sap by using FTP connection.
    like FTP_CONNECT
    FTP_COMMAND
    FTP_R3_TO_CLIENT
    FTP_DISCONNECT
    But text file details are coming like this
    means even line items are all displaying in one row.means continously all line items are coming just like this.
    0001000264,070914,,,1000,Steel (pune) Plant,
    Retail Outlet 1,0001000265,070914,,,1000,Steel (hyderabad) Plant,Retail Outlet 1
    Actually here problem is text file data is continously coming with ','
    means actually those values has to come as
             0001000264,070914,,,1000,ESSAR Steel (Hazira) Plant,Retail Outlet 1
            0001000264,070914,,,1000,ESSAR Steel (Hazira) Plant,Retail Outlet 1
    How to split those records when sending the text file.
    This is very big issue.I am unable to complete this issue.
    Please if any one knows the solution please guide me.
    please help me.
    Thanks & Regards,
    J.Goud

    Hi all,
             I am doing program of creating excise invoice details and those are transfering to non sap.and I am successfully passing text file to that non sap by using FTP connection.
    like FTP_CONNECT
    FTP_COMMAND
    FTP_R3_TO_CLIENT
    FTP_DISCONNECT
    But text file details are coming like this
    means even line items are all displaying in one row.means continously all line items are coming just like this.
    0001000264,070914,,,1000,Steel (pune) Plant,
    Retail Outlet 1,0001000265,070914,,,1000,Steel (hyderabad) Plant,Retail Outlet 1
    Actually here problem is text file data is continously coming with ','
    means actually those values has to come as
             0001000264,070914,,,1000,ESSAR Steel (Hazira) Plant,Retail Outlet 1
            0001000264,070914,,,1000,ESSAR Steel (Hazira) Plant,Retail Outlet 1
    How to split those records when sending the text file.
    This is very big issue.I am unable to complete this issue.
    Please if any one knows the solution please guide me.
    please help me.
    Thanks & Regards,
    J.Goud

Maybe you are looking for

  • Could not find "Attachment" class (DeliveryManager)

    Hello, I was trying to send email using Delivery Manager (java program) but getting error compiling the source code when adding sample line "Attachment m = new Attachment();". Below is an excerpt of the source code. I could not add "Attachment" funct

  • My iphone 4S is not connecting to the wifi!!

    all the my other devices are connecting but not my iphone!!it tells me that no networks found!! I've tried restoring the network setting and reseting the phone but nth have worked!

  • Embedded Youtube videos not working in Chrome or Firefox?

    I have embedded some YouTube videos into Lightbox widgets and they play fine on IE and Safari but not on Chrome or Firefox. The poster of video shows but you can't click on it. Didn't know if Java Script was required but have it enabled on all Browse

  • Cage Warriors No Longer Available On Demand on BT ...

    Is it still being shown or has it stopped ? The last show still hasn't been put on.

  • Elements 9 - Crashes when entering 'Create' tab

    I don't know what to do; but each time that I try to enter 'Create' on the top right hand tab, Elements crashes. I am running a well configured XP machine and I am having no problems with Lightroom nor any other applications which I use daily.  As th