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

Similar Messages

  • Problem with Image file

    Hi,
    Iam facing with one problem.I have one swing interface through which I can upload files(back end servlet programme).Now I can upload all types of file but problem with image file it uploading perfectly that means size of the uploaded file is ok but its format damaged.It can not be open.My backend servlet programme is ok coz i tested it with html form it is working perfectly.Problem with swing interface.Plz guide me where I done a mistake.Below r my codes:-
    ImageIcon Upload=new ImageIcon("images/Upload.gif");
         Button=new JButton(Upload);
         Button.setToolTipText("Upload");
    Button.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
              int returnVal = fc.showOpenDialog(ActionDemo4.this);
              if (returnVal == JFileChooser.APPROVE_OPTION) {
              File file = fc.getSelectedFile();
    String aa=file.getAbsolutePath();
              textArea3.append(aa);
                   textArea2.append("Local URL:");
    long l=file.length();
              try
              byte buff[]=new byte[(int)file.length()];
              InputStream fileIn=new FileInputStream(aa);
              int i=fileIn.read(buff);
              String conffile=new String(buff);
              String str1=textArea10.getText();
    url = new URL ("http://127.0.0.1:7001/servletUpload?x="+str1);
         urlConn = url.openConnection();
         urlConn.setDoInput (true);
         urlConn.setDoOutput (true);
         urlConn.setUseCaches (false);
         urlConn.setRequestProperty("Content-Type","multipart/form-data;boundry=-----------------------------7d11e410e500f2");
         printout = new DataOutputStream (urlConn.getOutputStream ());
    String content ="-----------------------------7d11e410e500f2\r\n"+"Content-Disposition: form-data;"+"name=\"upload\"; filename=\""+aa+"\"\r\n"+"Content-Type: application/octet-strem\r\n\r\n\r\n"+conffile+"-----------------------------7d11e410e500f2--\r\n";
    printout.writeBytes(content);
    printout.flush ();
    printout.close ();
    Best Regards
    Bikash

    The errors are here:
              byte buff[]=new byte[(int)file.length()];
              InputStream fileIn=new FileInputStream(aa);
              int i=fileIn.read(buff);
              String conffile=new String(buff); (conffile is a String object containing the image)
    and here:
    String content ="-----------------------------7d11e410e500f2\r\n"+"Con
    ent-Disposition: form-data;"+"name=\"upload\";
    filename=\""+aa+"\"\r\n"+"Content-Type:
    application/octet-strem\r\n\r\n\r\n"+conffile+"--------
    --------------------7d11e410e500f2--\r\n";
    printout.writeBytes(content);conffie is sent to the server but
    it's non possible to treat binary data as String!
    Image files must be sent as byte[] NOT as String ......

  • Problem with Image File in Encore CS5

    I made a 6 GB Image File in order to make BluRay discs without having to open Encore each time.  I can't seem to find software that will allow me to use the file to burn the disc.  Simple copy/paste doesn't work either.  The problem may be that the image file has no file extension.  Checking properties in Windows 7, where the file extension is usually displayed, it just says "file". Can anyone explain why Encore is exporting a file with no file extension (like .iso, for example), and how to get around this issue?
    Thanks.
    Steve Siegel
    [email protected]

    Encore creates a bluray image with an iso extension. I wonder if you have windows explorer set to show no extension.
    You may not have "iso" associated with a program on your computer.
    Also, you cannot burn the "file" to a BD and have it play. You need a program to take the image and burn it in the correct bluray format onto the disk.
    Most of us love imgburn:
    http://www.imgburn.com/

  • Can Packagemaker create installer with content files outside the bundle?

    I'm trying to create an installer with Packagemaker, but the content files need to be outside the final bundle because they're shared with a Windows installer.
    I thought I could create a symbolic link to the external folder, but instead of linking from the installer, it copied the files into the bundle. Any idea how to do this, or if it's even possible? I need to be able to do this on 10.3+, if that's relevant.
    (I can give a more specific scenario if this isn't clear enough)
    Thanks!

    zekel wrote:
    The main issue I'd be worried about is that the external files (which are quite large) won't have the appropriate progress bar. The external files are around 1GB, while the internal files are in the 30MB range.
    How about installing a secondary installer with progress bar that copies these files from the correct location. Your postflight script can just kick off the newly installed file copier.
    How's this sound for a hack...
    Have a launcher script copy the installer to /tmp, then modify the package to point my files. (I'm installing from read-only media.) It would then open the modified installer which would pull my files from the DVD. This would probably work better (read: at all) if the files aren't compressed inside the package. Do you know if that's an option?
    No, sorry. The internals of a package are quite specific. You need PackageMaker itself to build them.
    Things like the receipts are non-essential at this point, only because if I can't get this to work then we will continue to use our terrible installer which leaves none of those things. Those shouldn't be too much trouble if I can get the rest to work.
    There are some 3rd party installers like Installer VISE. The sad part is that they tend to make the MacOS X Installer look good.
    If the guy responsible for that is interested I'll show him Inno Setup, but we have a working Windows installer, so he probably won't want to mess with it.
    I agree, but tell him about it anyway. The next time you have to build a Windows installer, he could use Inno Setup and get it done in a couple of hours and then have time to help with the mess that is software deployment on MacOS X.

  • Problem with image file (URGENT!!!!!!!!!!)

    Hi all,
    I'm using oracle 6i and in my program I use an activeX for generating barcodes..
    the activeX genrate an image file and i need to store it in db(oracle 9i) or at least show the generated image through my form...the problem I encounter is that the read_image_file built in does not read the barcode images while it reads and shows other pictures with the same type (ex. tif or jpg)...
    here is my code (in case if it is useful) :
    declare
    application ole2.obj_type;
    begin
    application := ole2.create_obj('IDAuto.BarCode.1');
    ----DataToEncode :this is the data that is to be encoded in the barcode
    ole2.set_property(application,'DataToEncode',:txt);
    IDAuto_IBarCode.SetPixelsXY(application,2048,1024);
    ----this method save the image file
    IDAuto_IBarCode.SaveEnhWMF(application,'d:\TEST.tif');
    :system.message_level := '25';
    Read_Image_File(,'d:\TEST.tif','TIFF', 'control.itm_image');
    :system.message_level := '0';
    end;

    The errors are here:
              byte buff[]=new byte[(int)file.length()];
              InputStream fileIn=new FileInputStream(aa);
              int i=fileIn.read(buff);
              String conffile=new String(buff); (conffile is a String object containing the image)
    and here:
    String content ="-----------------------------7d11e410e500f2\r\n"+"Con
    ent-Disposition: form-data;"+"name=\"upload\";
    filename=\""+aa+"\"\r\n"+"Content-Type:
    application/octet-strem\r\n\r\n\r\n"+conffile+"--------
    --------------------7d11e410e500f2--\r\n";
    printout.writeBytes(content);conffie is sent to the server but
    it's non possible to treat binary data as String!
    Image files must be sent as byte[] NOT as String ......

  • Ant help - building a jar with image files.

    I have a jar that contains a handful of image files in a "resources" folder. I used the following command:
    jar -cf resources.jar resources/Now I need to make ANT do the same thing. I tried the following, with no success:
    <property name="build" location="bin"/>
    <property name="dist" location="jars"/>
    <jar jarfile="${dist}/resources.jar" basedir="${build}">
      <arg value="-cf" />
    </jar>In the above example, the "bin" directory contains the "resources" directory that I want to put into the jar. Basically, I need to know how to specify the "-cf" args, and how to specify the target directory as "resources." Can anyone tell me how this is done?
    Thanks.

    Hi micah,
    I can just give you an hint:
    With Ant each tasks has its own properties wich are described in xml. So for your jar generation you should look for the possibilities in the description of the ant task in.
    http://ant.apache.org/manual/index.html
    I guess you need some <include> elements in your <jar> target.
    Regards,
    Martin

  • WebCenter suite 11g Installation

    Hi,
    I am installing WebCenter Suite 11g. In the first time I install oracle 11g in a VM since the oracle 10.2.0.2 is running in my machine and it cannot be stopped.
    The VM is in my machine.
    In the DB of VM, I create a user named user2 for testing and connect it via SQL developer.
    username: test2
    password: test2
    Host name: 192.168.222.222
    Port: 1521
    SID: orcl
    It works.
    Then, I install the RCU in my machine (not in VM). The rcu need me to key in the DB information.
    Host name: 192.168.222.222
    Prot: 1521
    Service name: orcl
    username: sys
    passord:********
    Role: SYSDBA
    However, it shows error messages:
    Unable to connect to the database useing the provided details.
    Please enter a valid hostname and port or check if the listener is up and running

    It works now. But I cannot install RCU.
    It shows errors of RCU 6107 and 6092
    RCU-6083:Failed - Check prerequisites requirement for selected component:WEBCENTER
    Please refer to RCU log at E:\WebCenterSuite11\ofm_wc_generic_11.1.1.1.0_disk1_1of1\RCU\ofm_rcu_win32_11.1.1.1.0_disk1_1of1\rcuHome\rcu\log\logdir.2009-07-21_11-23\rcu.log for details.
    RCU-6107:DB Init Param Prerequisite failure for: PROCESSES
    Required Value = 300, Current Value = 150, Comparison Operator: ">="
    RCU-6092:Component Selection validation failed. Please refer to log at E:\WebCenterSuite11\ofm_wc_generic_11.1.1.1.0_disk1_1of1\RCU\ofm_rcu_win32_11.1.1.1.0_disk1_1of1\rcuHome\rcu\log\logdir.2009-07-21_11-23\rcu.log for details.

  • Help with image file names when using Import Word document feature

    Hello,
    I am using File >> Import >> Word document into an HTML template.  If the Word document contains images, the images are written to the directory specified in my Site Default Image Folder.  Here is my question: As I was teaching myself the Import function, one time the images were automatically named to match the page name.  So for example, if my page is named Create.html, the images would be named Create_image001.jpg, Create_image002.jpg, etc.  I can't remember how I enabled this feature (or maybe I was dreaming) but if anyone knows how to control the name of the images imported from MS Word, please let me know.  I've searched and Googled for hours and can't find a way to control the image file names.
    Thanks in advance,
    Shellie

    I was hoping that this would be fixed in the 10.8.2 upgrade but it has not.  Anyone have any luck?  Earlier today I was trying to write a paper and navigating between 10 pdfs was a nightmare without being able to hover my mouse for the titles like I used to. 

  • WebCenter Suite 11g installation: protal

    I am installing webcenter suite 11g. It is in the step of creating repository creation utility - create.
    However, in the step of creating portal process, it has been used 30min. Is it normal?

    It passes.

  • Unattended cucm installation with answers file

    Hello guys,
    I'm trying to understand how to master the CUCM answer files as well as the ASG tool. I didn't find any thorough docs around so I'm gonna ask here:
    1) In my opinion it should be possibile to have a cluster setup Pub+Sub without adding the second node to the PUB first through the web interface. Is it enough to enable the Dynamic Cluster Config option in the answer file in order to have the second node joining the first one?
    2)What if during the installation I also want to apply a patch? In my opinion should be supported using the following section of the xml file:
    <ParamNameText>Install or upgrade type</ParamNameText>
    <ParamDefaultValue>basic</ParamDefaultValue>
    <ParamValue>Basic Install</ParamValue>
    </InstallType>
    Changing the param value to: Applying a Patch but I cannot manage when to mount the floppy image because if you mount it too early it will proceed with the installation without upgrading even if you choose the skip button in the wizard and click on I want to install a patch
    3)Last but not least: how should I use the clusterConfig.xml? W/ o w/out platformConfig.xml?
    4)It's clear to me how to create the .vfd image. I already went through the CUCM official guides without success as well as the help associated with the AWG tool.
    Look forward to your answers, thanks for your time!
    Lorenz

    Hi,
    If an unsigned or invalid boot-critical device driver is installed on an x64-based computer, the computer will not boot. The unsigned or invalid boot-critical device driver
    will cause a Stop error.
    If you trust this driver and trying to install this unsigned driver, use /ForceUnsigned to override the requirement that drivers installed on X64-based computers must have
    a digital signature. For example,
    Dism /Image:C:\test\offline /Add-Driver /Driver:C:\drivers\mydriver.INF /ForceUnsigned
    The related KB:
    Understanding Device Drivers and Deployment
    http://technet.microsoft.com/en-us/library/dd744517(v=ws.10).aspx
    Signing Device Driver Packages
    http://technet.microsoft.com/en-us/library/cc771511(v=ws.10).aspx
    Add and Remove Drivers Offline
    http://technet.microsoft.com/en-us/library/dd744355(v=ws.10).aspx
    More information:
    Cross-Certificates for Kernel Mode Code Signing
    http://msdn.microsoft.com/en-us/library/windows/hardware/dn170454(v=vs.85).aspx
    Hope this helps.
    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.

  • Size limit of access database with image files stored outside database

    I have read 2GB limit on size of Access database.  We are using Access 2013 database with fields that are data type attachment and storing attached images outside the database.  Does the size of the folder that is holding these images count
    in any way toward 2GB size limit?

    Hi,
    As far as I know, Access database limit size 2GB based on itself, not related to the folder size.  Attachment data
    type is similar to attaching files to e-mail messages. We need to control the Access database size is smaller then 2GB.
    When a field is defined with the attachment data type, you can store one or more files for each record in it.
    Attachments can dramatically increase the size of the database, but since the attached file is stored as a part of the dabatbase, you are not dependent on network drives being available as you would be if you inculded a hyperlink to the file. As a matter of
    fact, feel free to backup the origainal file to other disk after you attach it to the database.
    Regards,
    George Zhao
    TechNet Community Support

  • Create installer with source files

    Hello
    I have a word search game and i have a dictionary and  the VI create one file with "last scores". I want to creat installer which indclude this files when im setup in another computer without labview. 
    Thank you!
    Solved!
    Go to Solution.
    Attachments:
    kotprog v1.1.vi ‏2864 KB

    First of all, you need to be using a project.  The project should include any source files and any other files you will want to include in your installer.
    Then you create a build specification for an executable.  Once that is built, make a build spec for the installer.  The installer should include any NI compenents you may need to run your program (like the Run-Time Engine).  You can also specify where files will be installed..
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Workflow with images,file names and full captions.

    I am working on my mother's memoirs, which will include a block of photo pages.  Those pages will be laid out by a friend.  I would like to use a contct sheet of some kind as a reference to what is to be included with what caption but am discovering just how difficult PE8 Organizer is to work with.
    First I tried the obvious print contact sheet and discoverd that captions are truncated if they run wider than the image itself.
    Secondly I tried a photo book and found that large images do not automatically resize to fit the picture placeholders. Seemed to pick up full caption but I have too many pictures to manually fit.
    Third I tried a web page output but then captions can't be copy and pasted for inclusion into group caption panels!
    Then it occurred to me that even just a list of file names and captions would be sufficient ... but even that is too much for an Adobe catalog to give up!
    All I want is a reference to images and captions, ideally grouped 4 at a time per page as they will be shown in those picture pages.
    Any suggestions would be welcomed.

    I can see two ways to do what you want.
    The first one is to divide you workflow in two steps. Install the free software FastStone image resizer, which can do a batch to resize and put your caption where you want. Batch process the files in a new folder while renaming them with something like 'old name'+ 'resized'. This is to avoid duplicate names. Import them into the organizer. Create an album with all those files, and put them in the correct printing order. Select all and export 'as new files' renaming them with 'common base name', in original format. That should keep the custom order of your project.
    There are also batch renaming and resizing with the affordable Elements+ add-on, but I suppose the first solution will be easier.

  • Exporting keywords with image files

    Using LR1.2 under Windows XP I now do most of my initial processing of scans and digital imports in LR before exporting the selected images for final batch processing and refined tuning in PS CS2. However, having completed copious key wording in LR, my exported files when viewed in Bridge do not contain my keywords. I have searched and found that it is possible to export metadata but that does not naturally link them with the appropriate pictures. Short of cutting and pasting chunks of keywords from LR, how can I arrange Bridge to incorporate keywords which were integral with the images exported from LR?
    Thanks in advance to wiser heads than mine.
    DA

    >I do not have a 'cache' purge' option
    I was talking about Bridge. Bridge's cache might be bad. The save metadata part in LR 1.3 is in the exact same location as in 1.2. I have never seen keywords not get written starting from LR 1.0. I know because I put lots of my images in online galleries and they always pick up my keywords.
    >As I suffered catalogue problems with my last LR upgrade
    Perhaps this is the problem. You should try with a new fresh catalog, import a few images, tag em and export them and see if you get metadata written that way. Perhaps your main catalog is still corrupt.

  • Build Installer with include file 2009

    Does LV 2009 let you include files, i.e. *.doc or *.txt, in the installer build? I almost certain this was possible in LV 8.*. I don't see where I can add files outside of source code. I can only add directories...
    Solved!
    Go to Solution.

    Oh gee thanks, stupid me. I'll try that....
    Thanks

Maybe you are looking for