Do we actually need Webcenter to use CMIS with ECM 11g ?

Does anyone know if it is possible to work with the CMIS standard without using Webcenter; So only using ECM 11g and WLS ?

I don't think that's possible...
If i am correct the CMIS uses JSR168 portlets and therefore you need webcenter...
You can have integration within a normal ADF application without needing a webcenter license and that's by using the RIDC API. This way you can easily integrate content from UCM to your custom applications.

Similar Messages

  • Need help on Using Oracle Acces Manager 11g

    Hi
    I Need help on Using Oracle Acces Manager Admin console to configure for SSO.
    I am new to Identity Management
    I have installed OAM 11g and configured for OAM in new weblogic domain
    Please help to proceed forward.
    Thanks
    Swapnil

    Hi
    Thanks for your reply
    I am able to login to the console
    I am unable to login the the weblogic server from another machine but abl eto do so from the machine where all this is installed
    What i feel is there needs to be some configurataion maybe policy or Agent
    IDMDomainAgent is configured and so is the OAM server configured .
    Please advice some books or link how to do achieve logging into the weblogic em/console from a remote machine
    Thanks in Advance

  • Need Info about using Strut with WL 7.0

    I want to find out how to use it with WL 7.0. Would anyone give me any info about it? :) Thanks
              

    You could download and deploy "struts-example.war" from apache website.
              [That Struts 1.0.2 I think.]
              ---Nam
              Jordy wrote:
              > I want to find out how to use it with WL 7.0. Would anyone give me any info about it? :) Thanks
              And God said
              Let there be numbers
              And there were numbers.
              Odd and even created he them,
              He said to them be fruitful and multiply,
              And he commanded them to keep the laws of induction.
              [Bill Taylor [email protected]]
              [nam_nguyen.vcf]
              

  • I need documentation to use HDF with POI??

    On the site of POI, there's no explanation on hdf!
    If someone can give me some doc to start my appli, it would be nice.
    (I try to read a MS Word document)!
    thanks

    Did it two days ago. No shizerat.
    You'll need to download the hdf code from
    the "scratch section" of the poi site- which is how I got it to work.
    import java.io.*;
    import org.apache.poi.hpsf.*;
    import org.apache.poi.poifs.eventfilesystem.*;
    public class PoiTest {
    public static void main(String[] args)
    throws IOException
    final String filename = args[0];
    POIFSReader r = new POIFSReader();
    r.registerListener(new MyPOIFSReaderListener(),
    "\005SummaryInformation");
    r.read(new FileInputStream(filename));
    // create temp file of content
    String curDir=System.getProperty("user.dir");
    String pathSep=System.getProperty("file.separator");
    String tempF=curDir+pathSep+"temp.txt";
    testDoc td=new testDoc(filename, tempF);
    td.getText();
    } // end of class PoiTest
    -----------Shizzy code, I know - but it worked for me----
    ----this is my docTest class I wrote to make it easy--
    to get word into a text file---------------------------------------
    import org.apache.poi.hdf.extractor.util.*;
    import org.apache.poi.hdf.extractor.data.*;
    import org.apache.poi.hdf.extractor.*;
    import java.util.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import org.apache.poi.poifs.filesystem.POIFSFileSystem;
    import org.apache.poi.poifs.filesystem.POIFSDocument;
    import org.apache.poi.poifs.filesystem.DocumentEntry;
    import org.apache.poi.util.LittleEndian;
    class testDoc {
    String origFileName;
    String tempFile;
    WordDocument wd;
    testDoc(String origFileName, String tempFile) {
    this.tempFile=tempFile;
    this.origFileName=origFileName;
    public void getText() {
    try {
    wd = new WordDocument(origFileName);
    Writer out = new BufferedWriter(new FileWriter(tempFile));
    wd.writeAllText(out);
    out.flush();
    out.close();
    catch (Exception eN) {
    System.out.println("Error reading document:"+origFileName+"\n"+eN.toString());
    } // end for getText
    } // end of class

  • Need help on using Tuxedo with Oracle 8

    Hi friends,
    I wrote a simple tuxedo server with embedded sql that has only the task to insert
    a string passed by the client into a table in oracle DB.
    The Server is logged on to the database correctly during tmboot. When I start the
    client the service function will be invoked and it returns TPSUCCESS. But somehow
    my sql statements are ignored. No record is added to the table and I got no sql errors.
    Here is my service function (AUTOTRAN=Y):
    void INSERT(TPSVCINFO *msg){
    EXEC SQL insert into ABC values ('some data');
    EXEC SQL COMMIT WORK;
    if (SQLCODE != SQL_OK){
    tpreturn(TPFAIL, 0, msg->data, 0L, 0);
    tpreturn(TPSUCCESS, 0, msg->data, 0L, 0);
    Thanks in advance.
    Kevin

    Thanks for your help.
    Kevin
    "Manoj SASIDHARAN" <[email protected]> wrote:
    >
    Hi Kevin,
    Oracle Docs has the following to say abt SQL Error -36:
    ORA-00036 maximum number of recursive SQL levels (string)
    exceeded
    Cause: An attempt was made to go more than the specified
    number
    of recursive SQL levels.
    Action: Remove the recursive SQL, possibly a recursive
    trigger.
    Pl check if u have some triggers on the table... and also
    determine
    the level of their nesting... That shld probably solve
    ur probs.
    Good Luck
    MS
    "Kevin" <[email protected]> wrote:
    Hi, thanks for your answer.
    But I am not sure of the error message...is the error
    code what
    I got an ORA error code or something else (e.g. why -36
    and not
    36)?
    Please have a look to my source code.
    Hope you can give me more information.
    Thanks in advance
    Kevin
    #include <stdio.h> /*operation system*/
    #include <Uunix.h> /*Tuxedo*/
    #include <errno.h> /*operation system*/
    #include <atmi.h> /*TPSVCINFO, TPFAIL, TPSUCCESS,
    etc.*/
    #include <sqlcode.h> /*SQL related*/
    #include <sqlca.h>
    void
    #if defined(__STDC__) || defined(__cplusplus)
    MSK2MANTA(TPSVCINFO *msg)
    #else
    MSK2MANTA(msg)
    TPSVCINFO *msg;
    #endif
    printf("MSK2MANTA Service started\n");
    if(msg->data == NULL){
    printf("received message is NULL!\n");
    tpreturn(TPFAIL, 0, msg->data, 0L, 0);
    printf("Transaction-Status = %d\n", tpgetlev());
    EXEC SQL insert into BUF values ('sysdate', 'msk2manta
    data');
    if ((sqlca.sqlcode != 0) || (SQLCODE != SQL_OK)){
    printf("Failed to insert! SQLCODE1 = %d\n", SQLCODE);
    printf("Failed to insert! sqlca.sqlcode = %d\n",sqlca.sqlcode);
    printf("Failed to insert! sqlca.sqlerrm.sqlerrmc=
    %s\n", sqlca.sqlerrm.sqlerrmc);
    tpreturn(TPFAIL, 0, msg->data, 0L, 0);
    EXEC SQL COMMIT WORK;
    if (SQLCODE != SQL_OK){
    printf("Failed to commit! SQLCODE2 = %d\n", SQLCODE);
    tpreturn(TPFAIL, 0, msg->data, 0L, 0);
    tpreturn(TPSUCCESS, 0, msg->data, 0L, 0);
    Output: tpgetlev()=1, SQLCODE=-36, sqlca.sqlcode=0, sqlerrmc=""
    Scott Holland <[email protected]> wrote:
    Also... print out the remainder of the sqlca structure.
    You will have
    error text in that structure describing what the actual
    error is.
    sdh
    Kevin wrote:
    Hi Manoj,
    thanks for your answer.
    I added an extra SQLCODE check after the insert andget following
    error:
    "SQLCODE = -36"
    Do you know how to find out what the error is stangfor?
    Thanks
    Kevin
    "Manoj SASIDHARAN" <[email protected]>
    wrote:
    Hi Kevin,
    Could u pl put an extra SQLCODE (or sqlca.sqlcode)check
    after the INSERT statement
    as shown in the modified code and try...
    Currently the check verifies the sqlcode of the COMMIT
    statement and not the INSERT
    statement executed just before.
    HTH
    Regards
    /MS
    "Kevin" <[email protected]> wrote:
    Hi friends,
    I wrote a simple tuxedo server with embedded sql
    that
    has only the task
    to insert
    a string passed by the client into a table in oracleDB.
    The Server is logged on to the database correctly
    during
    tmboot. When I
    start the
    client the service function will be invoked and
    it
    returns
    TPSUCCESS. But
    somehow
    my sql statements are ignored. No record is added
    to
    the table and I got
    no sql errors.
    Here is my service function (AUTOTRAN=Y):
    void INSERT(TPSVCINFO *msg){
    EXEC SQL insert into ABC values ('some data');
    //// MS CHANGES - START
    printf("SQLCODE = %ld", sqlca.sqlcode);
    if (sqlca.sqlcode != 0) {
    ////// Handle the case
    //// MS CHANGES - STOP
    EXEC SQL COMMIT WORK;
    if (SQLCODE != SQL_OK){
    tpreturn(TPFAIL, 0, msg->data, 0L, 0);
    tpreturn(TPSUCCESS, 0, msg->data, 0L, 0);
    Thanks in advance.
    Kevin

  • How to use ant with Jdeveloper 11g

    Hello, as we develop our app with ADF Faces & EJB 3.0 we are using tomcat 6.x + openEJB 3.0 as a sort of app server. So we need to build application archive 2 differrent methods (collapsed war for tomcat and ear for Jdev's integrated WLS). Besides, some xml files need to be modificated depending on target server. So we are going to use ant to build archives.
    My questions:
    - Where should I copy built archive for deployment on integrated WLS (should I copy it in ant's target or Jdev can do it for me)? Or there is another way to do the following: when one presses Run button on a page ant builds an archive for local WLS and then app is deployed and the page is opened in a new browser tab (just like default Jdev behaviour)?
    - Where can I find tutorial on integration of Jdev & ant?

    Here is a good example [http://biemond.blogspot.com/2009/04/weblogic-jdeveloper-ant-tasks.html]

  • Using TimesTen with Oracle 11g

    In documentation I didn't find any information about supporting by Timesten connects to Oracle 11g. So is Timesten can be connected to Oracle 11g or not? Now I've connected it but I'm not sure in proper work of this pair.

    TimesTen 7.0.3 Cache Connect to Oracle supports Oracle 11g on Linux x86 (32-bit).
    Additional platforms will be certified in upcoming maintenance release.
    What platform are you using?
    - Susan

  • Need BPEL Designer to integrate with jDEV 11g

    I am using jDeveloper 11g:
    Oracle JDeveloper 11g 11.1.1.0.0
    Studio Edition Version 11.1.1.0.0
    I have BPEL Process manager 10.1.3.1 but it did not come bundled with BPEL Designer. I am unable to use jDev 11g as the designer for BPEL Process Manager. I tried to install this extension: Update for the Oracle BPEL Designer and related Integration Tier components. Build:
    PCBPEL_MAIN_GENERIC_070328.0800. But the install errors out:
    oracle.bam
    Error: Not loaded: Missing dependencies: oracle.bpm.modeler
    oracle.bpm.ess
    Warning: Classpath entry C:\Oracle\Middleware\jdeveloper\lib\xmlparserv2.jar not found.
    Warning: Classpath entry C:\Oracle\Middleware\jdeveloper\j2ee\home\lib\scheduler.jar not found.
    oracle.bpm.modeler
    Error: Not loaded: Missing dependencies: oracle.sca.modeler
    oracle.bpm.rules
    Warning: Classpath entry C:\Oracle\Middleware\jdeveloper\lib\java\api\jaxb-api.jar not found.
    and so on.
    How do I go about sucessfully loading BPEL Designer on jDEV 11g?
    Please provide your input. Thanks.

    Are you an Oracle Employee using internal JDeveloper MAIN builds? If so please use the internal forums and not the external ones.
    http://myforums.oracle.com/

  • Help using -replace with wildcard characters, specifically braces

    Hello all,
    Needing help in using -replace with literal wildcard characters, specifically the braces characters. From reading old posts online this seems to have been a notorious shortcoming of PowerShell, but not sure if it's been resolved or not. My simple
    code tries to remove the braces as follows (would like to keep the foreach loop and everything as is if possible):
    $string = "test[]"
    $braces = @("``[","``]")
    Foreach($brace in $braces){
    If($string -like "*$brace*"){
    $string = $string -replace ($brace,"")
    write-host $string
    This code gives an error at the -replace line, saying "The regular expression pattern `] is not valid." I'm not sure how to pass the literal brace characters to the -replace parameter? Can this be done?

    -like is a wildcard operator (it recognized wildcard patterns like * ,? and [a-z].
    For a regular expression you use the -match operator.  
    Wildcard patterns and regular expressions are not interchangeable.
    See:
    get-help about_wildcards
    get-help about_regular_expressions
    for an explanation and examples of each one, and 
    get-help about_comparison_operators
    for examples of using -like and -match.
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • HT1449 How do I find out which file iTunes actually needs/uses?

    I have recently transferred my iTunes libary to an external hard drive (Migration Assistant didn't work, so I dragged and dropped the whole iTunes folder from my other, Windows, external hard drive straight to the new external hard drive, and added the other file that does playlists etc by e-mailing the library file to myself, and 'importing playlist' on the new mac... I still don't have ratings, but that's not a biggie). This is to use as a central library for all users. Works ok, both users face it, all ok... However, the total size of my music library is some 40gb, according to my old laptop and itunes on the new Mac... but on the external hard drive, there is now some 139gb of data (the only other stuff is about 80 pictures, so not much in data terms). This isn't a pressing need as the new external drive is 2tb, backing up to a 2tb Time Capsule, so still plenty of storage left for my wife to add her photos and her music.
    So how do I know what to delete? There's each album listed separately, and some old temp files (have deleted the latter), but I'm scared of deleting things I do actually need. I'm at work now, so can't give exact descriptions. Anyone have any clues?

    Have read up a bit more, and I think I've found a solution... my wife's music is very much smaller than mine, and I'd like to preserve the ratings on my collection. She's not bothered.
    So here's the plan: broadly following iTunes: How to move your music to a new computer, using external drive.
    1. delete the iTunes folder previously placed on the new, Mac ext HD (what will be the joint library). No media hopefully now on this machine.
    2. copy her iTunes folder from the old ext HD to the desktop of the new Mac. This was consolidated before copying to the ext HD. This will essentially become the backed-up 'previous content' to add back in later.
    3. Delete her iTunes folder from the old ext HD to avoid confusion.
    4. Copy my old laptop's iTunes folder to the old ext HD
    5. Drag the itunes folder from the old ext HD to the new mac ext HD, both showing on the desktop (which should preserve rating etc, right?)
    6. add back in the itunes folder on the desktop that I placed there earlier, using file> add to library in iTunes. (ratings not preserved)
    Both users iTunes are already instructed to face the new ext HD for their library.
    Will this work? Why is one set of ratings etc preserved but not the other?

  • How to POST (create) a folder using CMIS REST in Webcenter

    Has anyone tried to create a new folder using CMIS REST/Atom calls in Webcenter ?
    Here's what I try to do:
    http://172.31.100.150:7001/cmisrestprelim/cmis/children/MyContentServer ==>POST (using the REST client plug-in in Firefox)
    Content-Type=application/atom+xml
    <?xml version="1.0" encoding="utf-8"?>
    <entry xmlns="http://www.w3.org/2005/Atom"
    xmlns:cmisra="http://docs.oasis-open.org/ns/cmis/restatom/200908/"
    xmlns:cmis="http://docs.oasis-open.org/ns/cmis/core/200908/">
    <title>mytestfolder</title>
    <cmisra:object>
    <cmis:properties>
    <cmis:propertyId propertyDefinitionId="cmis:objectTypeId"><cmis:value>cmis:folder</cmis:value></cmis:propertyId>
    </cmis:properties>
    </cmisra:object>
    </entry>
    This piece of code should create a folder called "mytestfolder" in the root directory.
    When I POST this, I get the following internal server error:
    <pre>javax.servlet.ServletException: com.sun.jersey.api.container.MappableContainerException: com.bea.content.RepositoryException: Please specify a valid ID object. Make sure the repository name is not null.
         at com.sun.jersey.spi.container.servlet.WebComponent.service(WebComponent.java:310)
         at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:314)
         at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:239)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.bea.content.manager.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:178)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
    Anyone has an idea how to solve this ?

    I must admit that I'm fairly new to all the CMIS and REST-things....
    So there are a couple of things in your answer that are a bit hazy to me.
    It looks like you are more familiar with all this.
    How do I find a creatable folder ? And what should be the URI to POST a new folder ?
    I try to POST a new folder using this URI:
    http://172.31.100.150:7001/cmisrestprelim/cmis/children/MyContentServer/IDC:Folder%2F13
    (IDC:Folder%2F13 is the /Contribution Folders/Documents folder in my repository)
    This POST keeps me giving the following internal server error:
    <pre>javax.servlet.ServletException: com.sun.jersey.api.container.MappableContainerException: com.bea.content.RepositoryException: Please specify a valid ID object. Make sure the repository name is not null.
         at com.sun.jersey.spi.container.servlet.WebComponent.service(WebComponent.java:310)
         at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:314)
         at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:239)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at com.bea.content.manager.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:178)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
    Thanks for helping me out.

  • Using Excel with Visual C++ 6.0 (need a graph control that behaves as much like the one in CVI as possible)

    I hate to beat this to death but I was unable to find a
    clear answer to this question.  Does NI provide Excel control from within
    Visual C++ 6.0? 
    I read that NI supports the ANSI-C library only for Visual C++ 6.0 users:
    Thread : "Re: Benifits of using measurment
    studio for VC++ 6.0?"
    NI REP : drohacek
    Quote  : "we made the decision to support Visual
    C++ 6.0 users only through the ANSI-C interface and not through the Measurement
    Studio MFC-based class libraries."
    If there is a suggested way of controlling Excel from within Measurement Studio
    for Visual C++ 6.0 then I’d love to know it. 
    If not, can a plain statement be made basically stating that if you want
    to control Excel you can’t use a Visual C++ 6.0 environment even with Measurement
    Studio support?
    With .NET of course you can just decide to have Excel support added during
    project creation.  CVI can act as an ActiveX server and easily control
    Excel just by building off the examples shipped with CVI.  I see that
    there is support, using the Measurement Studio for Visual C++ 6.0 Project Wizard,
    for taking existing CVI projects and converting them to Visual C++ 6.0 projects
    or for calling CVI libraries from a .dll from within Visual C++ 6.0.  I suppose I could do the work
    in CVI and then convert the project but I'm so deeply tied into all my MFC calls that I don't see
    how I can cleanly include the CVI libraries into my existing VC++ 6.0 projects.
    What I'm really after here is a visual graph control like the one in CVI that I
    can use from Visual C++ 6.0.  I purchased a 3rd party graph control for use
    in VC++ 6.0 that works well but isn't really visual.  I mean you can't
    enter any values in it until you run the program and fill it out programmatically. 
    Then you can see which columns are two narrow, quit the program, adjust the
    column width of your now empty control, and repeat, until you get the thing
    looking the way you want.  If I could call into Excel from within Visual
    C++ 6.0  the way I do from within .NET
    then I could use Excel to hold the table and just read in the values into my table
    control at run time.  Basically I'd use Excel as a visual development tool
    for all my tables.
    I do all my coding from within CVI and Measurement Studio for Visual C++
    6.0.  I'd use CVI for everything if I didn't depend so heavily on certain
    outside controlled C++ .dll's.  Could you please suggest then what I can
    do to get Excel support for Visual C++ 6.0?
    Last question :
    Is there any plan to ever have a NI table control like the CVI table control for
    use in Visual Studio?  One that you can
    completely set up before you do any compiling? 
    I imagine that the way Microsoft sets up their environment makes this idea impossible.  Otherwise someone would
    have come up with a truly “visual” table control before now.
    Thanks,
    Grant
    Grant M. Johnson
    Project Engineer
    LECO Corporation

    Hello Grant
    You can most certainly use Excel with VC++ 6.0. Measurement Studio won't provided you with any classes to talk to Excel in VC++ 6.0. This is because Excel allows control via Automation and you can use its automation API to do anything you need with Excel. This is what CVI uses as well.
    You can see this MSDN article on how to set this up. This mentions VC.NET, but it should work the same way.
    Here is one that talks about VC 6.0 and Excel.
    Here is a code project article about this.
    Even with .NET, you have to do thru the Excel Automation support. Excel started shipping with Primary Interop Assemblies (PIA) which are .NET wrappers about the Excel Automation object model. C++ Automation is definetely not as nice as .NET, BTW
    See this document for more information about the Excel object model.
    I would not recommend using the CVI Excel libraries if all you want to use them for is Excel automation. You will end up creating un-necessary dependencies and go through extra layers that way. You can make calls straight to Excel from VC++ without requiring CVI.
    One quick observation about your excel approach. If you decide to use Excel as your table, you might be requiring everyone who uses your application to have Excel installed on their machines. Just wanted to make sure this was acceptable to you.
    Have you looked at the Datagrid Activex control, which is one of the common controls that ships with Visual Studio? You can add it to Visual Studio by right-clicking and picking it from the list of installed activex control. If you have not already, you should check it out.
    Microsoft has made significant improvements in the number of controls they provide with .NET. They have a Datagrid control that seems to be what you need.
    Measurement Studio did add some high level classes for Excel and Word Automation that simplify some common tasks, but these exists for VS 2003 C++ and VS 2005 C++, not for VC 6.0. Underneath, we end up using the same Excel automation classes, so you can easily setup something similar for VC 6.0. Plus you can find alot of references online on how to use the Excel Automation object model with C++.
    We currently have no plans in Measurement Studio to create a table control unfortunately. I am assuming when you said graph, you actually meant table, since Measurement Studio already  provides a ActiveX graph controls for VC++ 6.0 that is very similar to the CVI graph.
    On a side note, VC++ 6.0 is really really old. Have you considered upgrading?
    To summarize
    - Yes, you can use Excel with Vc++ 6.0 without mstudio.
    - Try using the Datagrid Activex control if you just need a table.
    - Measurement Studio provides high-level excel and word classes for VC++ 6.0
    - Measurement Studio provides a graph control for VC++ 6.0 which is very similar to the CVI graph.
    - Measuremnt Studio does not have a table control.
    - VC++ 6.0 is really really old. Have you considered upgrading?
    Bilal Durrani
    NI

  • Windows 7 Pro SP1 ships with IE11. I need IE8 that used to run on Win7 - what choices do I have?

    Hi all,
    The reason for this post is our need for IE8 for compliance with company requirements (web apps of a big and cumbersome company that will only run on IE8).
    We received a non hand manageable number of brand new dell aio 9020 machines with Win7 Pro SP1 and need to downgrade to IE8.
    The official microsoft download site features IE8 for Vista, Server 2008, XP and not for Win 7. None works on Win 7.
    I would like an official IE8 setup that runs on Win7 as it used to
    in the initial versions for sure. Other requirement is that it should be in italian localization, but though important I consider it secondary.
    The expensive solutions are to reinstall machines with Win7 off an old version of Win 7 (where to find old Win7 setup disc, how to use current license shipped with the PC's?)
    A creative idea I had was to try to extract IE8 form "Internet Explorer Application Compatibility VPC Image" by pulling any dependency / dll ecc but I assume the result might not work. How, if viable is yet a question and it would only be in english.
    I am here asking anyone or better official MS people, what solutions there are.
    The end result must be an actual IE8 running.
    Grateful for help - even pointing to another section or place to ask for this kind of support,
    GG
    PS happy new year!

    Hi all,
    I found a solution that I will share in case someone else is seeking this answer.
    I did not try the solution provided here http://support.microsoft.com/kb/2579295
    I instead disabled the windows functionality (not sure wether necessary, will test and edit this)
    Dism /online /disable-feature /FeatureName:"Internet-Explorer-Optional-amd64"
    ;FYI dism /online /get-features - for a list of windows features to enable or disable
    Probably unnecessary to disable anyway but worth sharing dism for other potentially interested users.
    Then I uninstalled updates of IE and from IE11 I found IE8 (the base of Win7)
    ; FYI dism /online /get-packages /format:table > updates.txt - then read IE related and uninstall as follows
    DISM.exe /Online /Remove-Package /PackageName:Microsoft-Windows-IE-Hyphenation-Parent-Package-English~31bf3856ad364e35~~~11.2.9412.0 /quiet /norestart
    DISM.exe /Online /Remove-Package /PackageName:Microsoft-Windows-IE-Spelling-Parent-Package-English~31bf3856ad364e35~~~11.2.9412.0 /quiet /norestart
    DISM.exe /Online /Remove-Package /PackageName:Microsoft-Windows-InternetExplorer-LanguagePack~31bf3856ad364e35~amd64~de-DE~11.2.9600.16428 /quiet /norestart
    DISM.exe /Online /Remove-Package /PackageName:Microsoft-Windows-InternetExplorer-LanguagePack~31bf3856ad364e35~amd64~fr-FR~11.2.9600.16428 /quiet /norestart
    DISM.exe /Online /Remove-Package /PackageName:Microsoft-Windows-InternetExplorer-LanguagePack~31bf3856ad364e35~amd64~it-IT~11.2.9600.16428 /quiet /norestart
    DISM.exe /Online /Remove-Package /PackageName:Microsoft-Windows-InternetExplorer-LanguagePack~31bf3856ad364e35~amd64~nl-NL~11.2.9600.16428 /quiet /norestart
    DISM.exe /Online /Remove-Package /PackageName:Microsoft-Windows-InternetExplorer-Package-TopLevel~31bf3856ad364e35~amd64~~11.2.9600.16428 /quiet /norestart
    Restart and find IE8 :-)
    For other debloaters or second hand customizers (sysprep is an option, not on all scenarios like OEM installs and no specific concerns)
    @echo Clean up PC - wmic product get name to know names of other packages
    wmic product where name="Dell Digital Delivery" call uninstall /nointeractive
    wmic product where name="Adobe Reader XI  MUI" call uninstall /nointeractive
    wmic product where name="Dell Protected Workspace" call uninstall /nointeractive
    wmic product where name="DELL OSD" call uninstall /nointeractive
    I also had some McAfee unrequested software the command line of which I intercepted through procexp
    ;remove McAfee SecurityCenter Manually - will integrate with more automated way
    "C:\Program Files\McAfee\MSC\mcuihost.exe" /body:misp://MSCJsRes.dll::uninstall.html /id:uninstall
    ;mcafee shared c runtime
    MsiExec.exe /x {EF79C448-6946-4D71-8134-03407888C054} /qn

  • Asynchronous, but need Ack without using BPM and IDocs.

    Hi Experts,
                     I would like to do a scenario i.e., "Asynchronous communication, but need Acknowledgement without using BPM and also without using IDocs whether it is sender side or receiver side". Please help me.
    Thanks in advance
    Srihari.

    Without using BPM will be little longer process. But the alternative way is to add one more receiver in the receiver determination and send some file to that location with the actual mapping getting executed for the actual receiver. and in the second interface you can get the file created at second receiver back to the source location. But this will be little long as compared to synchronous scenarios.
    Flow:
    Source
              Receiver 1--> Actual mapping as per requirement
              Receiver 2(For Ack)--> Create a mapping with blank file sent to Receiver
    Receiver 2-->File Adapter--> Source through 2nd mapping/interface and keep the File adapter pooling interval around 5 sec or less so that you can get the file back to source location.
    Regards
    Anand

  • I would like make my iphone 4S simfree in order to use it with my current service provider. I don`t know where to ask it; and need help. Thank you.

    Hello everyone.
    I`m a apple user from Turkey. Lately I have bought an iphone 4S in U.S.A and brought it back to my country. My problem is I can`t use it with my local service provider; because I can`t activate my iphone 4S with the sim kart which I have.
    I need help; and asking you what can I do ?
    Thank you all for your attention.

    Actually I had a friend of me to buy it for me. When I got the iphone 4s there were a At&t sim kart in it already.
    I can make it unlocked for free ?
    Thank you both for your attention.

Maybe you are looking for

  • Suppress embedded field blank lines in Crystal Reports XI is not working

    Hi, We have a text box in a Crytal Reports XI report which has address information in it as follows: These are individual fields from the database. We check the  "suppress embedded field blank lines" option for the text box and preview it in the desi

  • 16:9 Apple TV export playing with incorrect aspect ratio in iTunes.

    Hi, I've exported a 16:9 PAL movie from FCP using 'Export for Apple TV' which plays fine in Quicktime (1024x576 m4v file), my problem is when I import it into iTunes it changes the aspect ratio to 720x576. If I 'show in Finder' and play the iTunes im

  • Java VM hangs when I start Derby Server

    Hey everyone, Help will be much appreciated so cheers in advance. I've made a desktop app through Netbeans that runs fine within the IDE but can't get it to work from outside (unless I've connected to the server from within Netbeans first so guessing

  • How to disable security warning while printing(Silent Print) from Javascript?

    We have a webapplication through which, we are creating a pdf document and trying to print it sliently ("Silent Print"). Users who are having latest Adobe version, were getting javascript warning message. However, those with older versions able to "S

  • Workflow version changes

    Hi Experts, I have made changes in workflow,generated version and transported to production system.In production system,workflow which are already initiated prior to changes are not working as per new transported version which is creating problem. Is