Installable location for development Components

Hi All,
I am having lot of trouble in finding the location of various components on the edelivery.
can some body please send me the detail of various components.
I am looking for "GenerateWsdl" component now.
regards,
sapan
Edited by: sapan on Jan 12, 2009 2:47 AM

What you're looking for is actually the "WSDLGenerator" component.
I agree edelivery isn't the most user-friendly, but you can find that (and other components) within the content server package:
1. Search for "Oracle Fusion Middleware"
2. Then click on the 3rd option - Oracle® Enterprise Content Management 10g Release 3 (10.1.3) Media Pack
3. Then download one of the first 8 options, depending on your OS
4. Once you download and unzip, the component are in the "packages/allplatform" directory.

Similar Messages

  • How to find programatically the installation location for Mysql?

    How to find programatically the installation location for Mysql?

    There are thousands of them. Probably hundreds of thousands. If you had a particular one in mind, just ask the person who set it up. There's no point in trying to write code for that, since you only need to ask once and put the location in your code.

  • Programatically determine installation location for InDesign CS3, CS4, CS5, AND CS5.5 (Windows)

    We build plug-ins for all versions of InDesign from CS3 and later, for Windows and Mac.
    To deploy our plug-in(s) on Windows, we use InstallShield, which has a somewhat complicated mechanism to locate InDesign.exe and determine its version so we know which plug-in(s) to install, but basically, the location is determined (via the RegLocator table in InstallShield) based on this registry setting:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\InDesign.exe
    This has been working fine for all versions of InDesign since CS2.  However, that location is apparently no longer set by the InDesign CS5.5 installer.  So, we need to find some other way of programatically locating InDesign CS5.5 with our installer.
    I've searched the registry of a machine with InDesign CS5.5  installed, and there are other registry entries related to InDesign, but those  entries are not set by earlier versions of the InDesign installer.  Ideally, there would be a registry setting, or some other reliable marker we can use to locate the InDesign installation, which is consistent across all versions of InDesign (at least back to CS3).
    Using the registry setting is something we came up with on our own via  trial-and-error, since, as far as I know, there is no documented way to  locate the InDesign  installation folder.  (Our Mac installer uses a simpler mechanism to locate InDesign by the application name and version number.)
    I find the apparent lack of documentation on this a bit ironic, since just about every other aspect of the SDK and the methods for creating InDesign plug-ins is extremely well documented, expect for the last final bit one needs to know to get to the promised land of actually deploying a carefully crafted plug-in to customers' machines.  (This seems to be true of the Acrobat SDK as well.)  However, I could have just missed the relevant documentation, in which case, please point me to it.
    So, is there a recommended way to programatically  locate the InDesign installation location on Windows?  How are other people doing this in their installers?

    Hi Dan,
    this is the InDesign plugins SDK forum, you need the installer forum....
    Just kidding. I use a really hacky piece of VB to install my plugins while I'm developing...
    here's the bit which works out the folder depending on which version I'm compiling for.
    That gives you the gist anyway, and I imagine that most installers are going to do more or less the same thing, except they'll have short cuts ways of getting it.
    There's probably a better way, but this works for me...
        Private Function DiscoverApplicationFolderFromName(ByRef strApplicationName As String) As String
            Dim strApplicationSignature As String
            Dim strDefaultPath As String
            If (g_strCreativeSuiteVersion = CREATIVE_SUITE_5) Then
                ' special case for CS5, because a debug machine might have CS5 or CS5.5 or both installed.
                ' plugins built with the SDK for 5.5 will not run in CS5 apps
                strApplicationSignature = strApplicationName + ".Application." + CREATIVE_SUITE_55
                Dim strInCopyPath = DiscoverApplicationFolderFromSignature(strApplicationSignature, "")
                If (strInCopyPath <> "") Then
                    g_strCreativeSuiteVersion = CREATIVE_SUITE_55
                    Return strInCopyPath
                End If
            End If
            strApplicationSignature = strApplicationName + ".Application." + g_strCreativeSuiteVersion
            strDefaultPath = "C:\Program Files\Adobe\Adobe " + strApplicationName + " " + g_strCreativeSuiteVersion + "\" + strApplicationName + ".exe"
            Return DiscoverApplicationFolderFromSignature(strApplicationSignature, strDefaultPath)
        End Function
        Private Function DiscoverApplicationFolderFromSignature(ByRef strApplicationSignature As String, ByRef strDefaultPath As String) As String
            Dim strApplicationPath As String = DiscoverApplicationPathFromCLSID(strApplicationSignature, strDefaultPath)
            If (strApplicationPath = "") Then
                Return ""
            End If
            Dim strDirectory As String = Path.GetDirectoryName(strApplicationPath)
            ' Get rid of the trailing Debug because this depends on whether we install the Debug or Release version first or second.
            ' It will be added on again if we're using a Debug Configuration
            Dim strDebugTag As String = " Debug"
            If strDirectory.EndsWith(" Debug") Then
                strDirectory = strDirectory.Substring(0, strDirectory.Length - strDebugTag.Length)
            End If
            Return strDirectory
        End Function
        Private Function DiscoverApplicationPathFromCLSID(ByRef strApplicationSignature As String, ByRef strDefaultPath As String) As String
            Dim strApplicationPath As String = strDefaultPath
            Try
                Dim strKey As String = strApplicationSignature + "\CLSID"
                Dim regKey As RegistryKey = Registry.ClassesRoot.OpenSubKey(strKey)
                Dim strGUID As String = regKey.GetValue("")
                regKey.Close()
                If IsRegistryVirualized() Then
                    strKey = "Wow6432Node\CLSID\" + strGUID + "\LocalServer32"
                Else
                    strKey = "CLSID\" + strGUID + "\LocalServer32"
                End If
                regKey = Registry.ClassesRoot.OpenSubKey(strKey)
                strApplicationPath = regKey.GetValue("")
                regKey.Close()
            Catch ex As Exception
                LogMessage("FAILED DiscoverApplicationPathFromCLSID: " + strApplicationSignature)
                strApplicationPath = strDefaultPath
            End Try
            Return strApplicationPath
        End Function

  • How to customize the installation location for Acrobat Reader 11

    My c:\ is a SSD with limited space.  I would like to install Reader 11 to a different drive path, however the installer does not seem to have custom installation location option.

    Download the offline installer from http://get.adobe.com/reader/enterprise/, then click on 'Change Destination Folder' on the first install panel.

  • Custom types for Developing Components

    I am creating the custom component for the LiveCycle and I ran into problems, because there are no sufficient documentation how to define and use a custom data types. I have read your article from the DevNet and you refer to the documentation many times. I was very disappointed, because the documentation isn’t handle the custom data types like you have described it. My problem is how to define the custom data type in the component xml. The structure of the custom data type is
    ScanProperties
    private String virusScanPath
    private Priority priority (Enum type)
    private Action action (Enum type)
    private boolean all
    private boolean allole
    private boolean archive
    private boolean mime
    private boolean mheur
    private boolean pheur
    I will use this custom data type as an input for my service. So my main problem is how I can define the correct set up of the object from the process using the correct editors?
    Posted on behalf of Veijo (last name withheld)

    Usually custom data types (such as the priority and action types you stated) are added to the component.xml file using the data-types element. 
    For example, I have created several custom types (Part, OrderResult, PartsOrdered, Pricing and PartColor) that I want to expose in LiveCycle.  I want the user to be able to select these types from the drop down when they create process variables inside Workbench.  This is done by adding the class’ for each type to the data-types tag:
          <data-types>
                <data-type id="com.adobe.samples.customTypes.Part" title="Part" standard="true">
                </data-type>
                <data-type id="com.adobe.samples.customTypes.OrderResult" title="Part Order Result" standard="true">
                </data-type>
                <data-type id="com.adobe.samples.customTypes.PartsOrdered" title="Parts Ordered" standard="true">
                </data-type>
                <data-type id="com.adobe.samples.customTypes.Pricing" title="Pricing" standard="true">
                </data-type>
                <data-type id="com.adobe.samples.customTypes.PartColor" title="PartColor" standard="true">
                </data-type>
          </data-types>
    The data-type attributes are:
      id - Required. The identifier used to look up a data type globally (across components). Its maximum length is 255.
      title - Short descriptive caption expected to be displayed in any related UI. The title is not defined if id is used in place of title.
      java-class - The underlying Java type for this data type that will be used internally and on the signature of an operation when used as input and output. If java-class is not defined, it is assumed that id is the Java class.
      standard - A Boolean flag specifying whether this data type is a standard data type. If true, it is expected that applications such as Workbench ES will show this data type by default and not require a search across the data type registry. The default is false.
    I also see that you want to use an enumerated type.  I’ll assume that you would like to see a drop down in the properties sheet that allows the user to select from a list of possible values.  To do that you want to use a property-editor with the type Enum in your input parameter section:
    <property-editor editor-id="com.adobe.idp.dsc.propertyeditor.system.Enum" />
    I’ve included a sample component.xml (the same one from my DevNet article) that should supply you with the context of the elements.

  • Default Plant and storage location for components in MFBF

    Hi,
    I have 2 plants 1000-procurement plant and 2000- production plant. I am using special procurement key 70( Withdrawal from alternative plant from 1000 to 2000) for components in Plant 2000. The requirements for the components are transferred from 2000 plant to 1000 plant. The 1000 plant run MRP for the dependent requirements and procure the materials and transferred to the production storage location in Plant 2000.The raw materials are purchased in plant 1000 and transferred to Plant 2000 production storage location based on the manual reservations created with movement type 301. This is fine.
    But when I do backflush in MFBF the plant and storage location for the components issue are displayed as plant 1000 which is the procurement plant  and the production storage location in plant 2000-production plant location. In the BOM the production storage location is production storage location of plant 2000. Since we use the special procurement key system defaults the plant as 1000(procurement  plant) insteadd of 2000(production plant). can we make this plant default to the production plant 2000 as default in the MFBF goods issue screen.
    thanks and regards
    Murugesan

    Hi MURUGESAN !
          Can you give me some information more in Special Procument Configure in plant 2000 like:
              -  Procurement type (maybe F)
              -  Special procurement (Maybe U)
              -  Plant (Maybe 1000).
              - Issuing plant (maybe 2000)
           We will check together.
           Regards,
          Tony

  • Sun Java System Application Server installation location on windows

    Hi there...
    I'm just doing the "Your First Cup: An Introduction to the Java EE Platform" tutorial for the first time. I'm trying to add the Sun Java System Application Server in NetBeans IDE. It's asking me to select the Platform Location, and I have no idea where that is. No help instructions I've found say where it normally gets installed, and I've found now mention of it on the web.
    Can anyone tell me the location where this is supposed to be located? I HAVE installed the Java EE SDK 5 for Windows. The location it offers as a default is "C:\Program Files\glassfish-v2ur2\", but there is a red message at the bottom of the dialog that reads "Provide a valid Application Server Installation Location for 'Sun Java System App...". The Register Local Default Domain drop-down box has not options to select, either.
    I would try and search some more, but I just don't know what to search for. If anyone can offer any insight into this, I appreciate it.
    Thanks a ton!!!
    Orion Carrier

    I`ve posted a shorter version of the question in the hopes of getting a timely answer. Thanks

  • Installation folder for per user

    Hello,
    We use VMware Thinapp to install some programs with a MSI. We have a user collection to deploy the app and therefore install for a user. The SCCM installs the MSI to the APPDATA folder which is the roaming folder in the user profile. We use roaming profiles
    and to prevent big profiles we would like to change the installation directory to LOCALAPPDATA, which is the LOCAL folder in the profile.
    Is there a way to overwrite the standard installation location for a MSI using a command switch?
    Thanks,
    Edy from Switzerland

    ConfigMgr doesn't apply any magic to the installation of a MSI. If the MSI is configured to install in certain directories then there isn't anything that ConfigMgr can do outside the normal MSI command line properties.
    I did a quick search for you and I think something like the following article could be a work around:
    http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2045513
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Development Components

    Hi,
    Can you please tell me answers for foll. questions.
    What are the advantages of creating development components ?
    What are active and inactive development Components ?
    What are the mandatory libraries required for development Components ?
    Thanks in Advance,
    Ravi Kiran

    Hi
    check the links
    http://help.sap.com/saphelp_nw04/helpdata/en/d0/b7fd3a2314fb4992b58c90fd4d4183/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/1c/bca99c220c0e45a1cae3c4cccf4346/frameset.htm
    and for more search in SDN  you would certainly get more doc . and even in the ELEARNING catalogs
    search for the DC creation .
    murali

  • Different installation location?

    I'm trying to install Ps How do I select a different installation location for the program? I don't have enough space on my C: partition. So I need to change the location for the program

    If you are installing Photoshop CC, then try below steps
    Open Creative Could App, Click Gear icon on the top right corner and open preferences.
    Then click Apps tab on preferences, you will be able to locate the option.

  • LabVIEW cannot locate some components necessary to build the installer - looking for "Setup" installer

    Hi,
    I have an application that has been upgraded to LabVIEW 8.  I have previously been able to build the exe and installer but recently the installer part of the build has been failing with the following error message:
    Unable to locate the installer source for "Setup" distribution.
    Locate the distribution and try again
    The dialog includes a file path prompt that is pointing at the Installer\Volume directory where Installer is the target directory for the build.  The installer build is configured to span CD-sized volumes (650MB)
    There are no sources or support files named anything like Setup that I can see.
    The installer includes DaqMX and the LabVIEW 8 runtime engine as additional installers
    The build works ok If I turn off the DaqMX driver installer
    Cheers,
    Brett Percy
    Senior Software Development Engineer
    Certified LabVIEW Architect and LabVIEW Champion

    Hi Andy,
    I've upgraded DAQmx to 8.0.1 and the installer build now works....sometimes.
    And sometimes it gives me a different error:
    CDK_Build_Invoke.vi.ProxyCaller >> CDK_Build_Invoke.vi >> CDK_Engine_Main.vi >> CDK_Engine_Build.vi >> NI_MDF.lvlib:MDFBuildDist_Build.vi
    Loading product deployment information
    Loading product deployment information
    Loading product deployment information
    Loading product deployment information
    Loading product deployment information
    Adding files to installer
    Done adding files
    Preparing to build deployment
    Copying products from distributions
    Copying distribution 'NI-DAQ 8.0.1' from: C:\Documents and Settings\brettper\Desktop\NIDAQ801\8.0.1\ to: C:\Documents and Settings\brettper\My Documents\Work\Deakin University\433 VuPlate Software Upgrade\builds\VUPlate\VuPlate Installer\
    Copying distribution 'Setup' from: C:\Documents and Settings\brettper\My Documents\Work\Deakin University\433 VuPlate Software Upgrade\builds\VUPlate\VuPlate Installer\Volume\ to: C:\Documents and Settings\brettper\My Documents\Work\Deakin University\433 VuPlate Software Upgrade\builds\VUPlate\VuPlate Installer\
    Building deployment
    Copying setup files
    Setting merged database information
    Setting product information
    Setting developer part information
    Starting final build
    Validating...
    *** Error: An internal tool or library returned an error. (Error code -21)
    Error Messages
    Input directory 'C:\Documents and Settings\brettper\My Documents\Work\Deakin University\433 VuPlate Software Upgrade\builds\VUPlate\VuPlate Installer\Volume\bin\p2' not found for part 'palSetupLVRT.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI-PAL for Phar Lap ETS {3263845B-95F2-43C0-817E-B7BF25BCB742}.xml'.
    Input directory 'C:\Documents and Settings\brettper\My Documents\Work\Deakin University\433 VuPlate Software Upgrade\builds\VUPlate\VuPlate Installer\Volume\bin\p3' not found for part 'infInstaller.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI-DAQ INF Files {2146CF1A-5ACD-4A50-8B36-6A7DD095B08C}.xml'.
    -- SNIP --
    Input directory 'C:\Documents and Settings\brettper\My Documents\Work\Deakin University\433 VuPlate Software Upgrade\builds\VUPlate\VuPlate Installer\Volume\bin\p43\nilm' not found for part 'nilm.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI License Manager {FB6DF036-C3A7-4A89-92DA-B4364A8E9373}.xml'.
    Input directory 'C:\Documents and Settings\brettper\My Documents\Work\Deakin University\433 VuPlate Software Upgrade\builds\VUPlate\VuPlate Installer\Volume\bin\p44\LVRealTimeErrorDialog' not found for part 'LVRealTimeErrorDialog.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\NI LabVIEW RT Error Dialog {3DFF45F7-C12C-4A3A-BA9E-1946A4E92424}.xml'.
    Input directory 'C:\Documents and Settings\brettper\My Documents\Work\Deakin University\433 VuPlate Software Upgrade\builds\VUPlate\VuPlate Installer\Volume\bin\p45\LVBrokerAux800' not found for part 'LVBrokerAux80.msi' in product 'C:\Program Files\National Instruments\Shared\MDF\Manifests\Broker Aux 8.0 {88BBB9A9-C034-466E-BB83-8197AFD1669C}.xml'.
    *** End Error Report
    Done building deployment
    And underneath all this (in the Details of the Build Errors dialog) I get
    "Visit the Request Support page at ni.com/ask to learn more about resolving this problem. Use the following information as a reference:"
    followed by nothing...
    So it's sort of working but not entirely reliable.  I think I've seen the path to the DAQmx installer in the Additional Installers tab replaced with the path into the installer build directory I was being prompted with earlier but I haven't been able to replicate this.
    Senior Software Development Engineer
    Certified LabVIEW Architect and LabVIEW Champion
    Attachments:
    Full error listing.txt ‏16 KB

  • Is 1GB ram is enough for the installation of oracle developer suite 10g and database 11g???  And which one to install first developer suite or database????

    Hello everyone,
    I have install windows XP in my existing windows 7 64 bit system using virtualization software. I have allocated 1024 MB of RAM to XP virtual windows.
    Now, M trying to install oracle developer suite 10g and oracle database 11 in the XP windows.
    IS 1GB ram is enough for the installation of oracle developer suite 10g and database 11g???
    And which one to install first developer suite or database????
    Thanks in advance.

    you should check (before installing) requeriments from documentation.
    Oracle Developer Suite Installation Guide 10g (10.1.2.0.2) for Solaris, Windows and Linux x86
    Table 4 Memory Requirements for Oracle Developer Suite Components
    Component
    Memory
    Oracle10g JDeveloper (including Oracle Business Intelligence Beans, and UIX and Bali subcomponents)
    Minimum: 256 MB
    Recommended: 512 MB
    Oracle Reports Developer
    Minimum: 128 MB
    Recommended: 256 MB
    Oracle Forms Developer
    Minimum: 128 MB
    Recommended: 256 MB
    I usually install first database and later DS, I never tried first DS and later database.

  • The version of iOS on does not match any of the versions of iOS supported for development with this installation of the iOS SDK

    Getting this error message as of this morning: The version of iOS on “iPad” does not match any of the versions of iOS supported for development with this installation of the iOS SDK. Please restore the device to a version of the OS listed below, or update to the latest version of the iOS SDK. I've downloaded the latest SDK and gone through the usual turn off and turn on again for iPad and computer, removed and reinstalled the iPad from Organizer and have no idea how to make apps build now. I was prompted to update the iphone too but there's no way I'm updating it if this issue can't be resolved.

    Okay these are the steps I took to solve the problem - they may not be the right ones for you but they've solved the problem and saved time hunting for some other solution. Firstly I changed my MAC system to Lion with the £20 download, then I deleted the old Xcode and installed the new version that is app based and doesn't support Snow Leopard, then all was well. I can now update my xcode via the app which is quicker and more logical and can update my iPhone rather than chug along avoiding updates as I need to update my existing apps on the app store and upload a new one.

  • Short cut for Developer studio & SQL studio is missing after installation

    Hi,
        I have installed Preview SP16 in Windows server 2003.
    After successful installation I don't find a shortcut for Developer Studio n other tools.
    I am not sure why this is happening.
    How to get these shortcuts.
    Cheers,
    Sam

    hello Raj,
              After you are done with your SAP WAS installation, go to programs there you can find the related tools.
    if not there's some problem with your installation.
    Hope its solves your Qn
    Reward with suitable points*
    Regards,
    C

  • "Field ID of Standard Location Structure for Development empty" error?

    Hi there
    I am implementing the land use management enhancement. It allows me to define an object called a "Public Register" which represents a "set" of land objecs (land parcels, rental units, etc) under special circumstances such as hazardous areas.
    Unfortunately it returns two errors on validation/save:
    Field ID of Standard Location Structure for Development empty
    Field ID of Standard Location Structure for Easement Reg empty
    It has no description or reference to any documentation.
    What could this error mean?
    Regards
    Joe

    Hi Joe,
    could you please tell me the ID and number of the error messages.
    Thanks.
    Regards, Franz

Maybe you are looking for

  • Find Topic Doesn't Work for Priorities

    In the Topic List pod I want to Find Topics by priority but it doesn't work. Here's what I'm doing: 1.      Ensure at least one topic has a priority of '1'. 2.      Click on the Find Topic icon and select the Advanced tab. 3.      Enter a string in t

  • Daily orders report (show day wise created, shipped, open orders)

    I have to create crystal report for the following Daily  orders - created, shipped, open (not processed till date) for a previous week (last seven days)                                       Created                   Shipped                  Open Tue

  • Enhancement on MRRL - Create MM ERS Invoice based on Head Office

    Hello Experts, There will be multiple vendors who supply materials.  However, the Invoice should be created only on the Head Office Vendor. This is standard functionality. Supply vendor 1 - Head Office - X Supply vendor 2 - Head Office - X While crea

  • Cardinality in physical and bmm layer.

    Hi, Is it not possible to define cardinality in physical layer. Do we do this only in BMM? Even in BMM why do we do it when it looks for 1:n between tables? Can anyone please expalin this cardinality in both layers?

  • Copying pictures to a floppy disk... how to ??

    I have many pictures in Adobe Photo album. My computer is running out of space and I have a zip file that I can down load them to.. BUT I can't seem to locate where I do that at.