Deleting WebLogic Configuration Template

Hi All
I want to delete a Configuration Template that I created on my Windows desktop. We have procedures to create templates and I could not find the same for deleting templates. Is there any specific way to delete a template? I guess deleting the Executable Jar under C:\Oracle\Middleware\user_templates is not the solution
Please let me know. Thanks in advance
chrs0302

Hi chrs0302,
I believe by deleting the jar file which had been created in should be the solution. However do let us know if you are facing any issues after doing that.
Regards,
Ravish Mody
http://middlewaremagic.com/weblogic/
Come, Join Us and Experience The Magic…

Similar Messages

  • Configuration Template Builder WL8.1 does not work

    Hello,
         After spending nearly 2 days now trying to get a Configuration Template
    built, I've concluded this simply does not work. Has anyone used the
    Config Template builder to package a semi-complex application on top of WLI?
         I'm trying to have 2 of my applications, the JMS and JDBC resources,
    and a WLI event generator packaged up for easy deployment to someone
    else's server configuration. The problem with this is that there are
    required resources for WLI, namely a database. The Pointbase database
    included for WLI does not get included in the template automatically.
    There are also some flat-out bugs:
    If you choose to include a resource adapter "application", such as
    jms-xa-adp.rar, the template builder does not bundle this in the
    template and deploy it correctly. The template builder restricts you to
    putting applications in the relative path starting at ./
    For jms-xa-adp.rar, its original location is in $WL_HOME/server/lib, and
    the template builder defaults to put it in ./lib of your template.
    However, when you create a domain with the template, jms-xa-adp.rar does
    not get placed in your ./lib directory. This causes you to then go and
    manually edit your config.xml to point back at $WL_HOME/server/lib or to
    manually copy jms-xa-adp.rar into your ./lib directory (which the
    template mechanism should do for you).
    Relative paths in the config.xml file require you to execute the config
    builder from the directory of the domain you are making a template for.
    The template builder should instead be smart enough to realize that
    relative paths in the config.xml file are relative to the directory that
    the config.xml is in, not the one you are running the template builder
    from. You'll get an error when trying to create the template cause it
    won't find the resources if you're not in that directory.
    If anyone has successfully used this to package a WLI application in a
    template, please share your experiences and how to do so. In the
    meantime, I'm claiming there is no way to nicely package up a server
    configuration for a WLI app in Weblogic, and this is a big shortcoming.
    Weblogic needs a simple transferrable way of creating server
    configurations (it tries to do this with the template, but that is
    failing). With JBoss, for example, you simply copy your server directory
    into another installation. This doesn't work with Weblogic unfortunately
    because it puts hard-coded paths in the config.xml file.
    Thanks

    Russ,
         Thank you for the detailed responses. The only one I'm currently
    struggling with still is the #5, with the scripts between the two. One
    of the major benefits of using a J2EE App Server is supposed to be the
    portability between servers. I find it disconcerting that BEA Weblogic
    restricts me to the platform I created the domain on by creating
    platform-specific startup/shutdown scripts for only the platform created
    on. It's understandable that a script converter would be difficult, but
    at least both the .sh/.cmd files should be created from the first time
    you make a domain. If the user only wants one or the other, they can
    delete the appropriate one. It's also understandable that the
    users/deployers shouldn't have to manually convert a startup/shutdown
    script to take the domain to a different box.
         JBoss clearly has BEA beat on ease of deployment here. Their model is
    the concept I'm thinking of: you have some generic startup/shutdown
    scripts that can load a platform-independent server configuration. You
    truly can copy directories as-is between JBoss installations.
         I was hoping to package up a server domain for use on any of the
    supported platforms, but since I don't have the time to manually convert
    the startup/shutdown scripts, I'm going to have to tell people it's only
    for Solaris now.
         Hopefully BEA can fix this in a future SP. There's no need for this
    platform-dependency. Also, if the Windows version can generate both
    scripts at creation time, then the Solaris should be able to do this as
    well (or at least give you the option).
    Thanks again for the replies
    russ wrote:
    Hi Steven,
    I have several comments and questions about your last two posts. I will try to
    address them in order.
    1) "The Pointbase database included for WLI does not get included in the template
    automatically."
         By default the template builder only includes the *.cmd and *.sh files in the
    template from your domain directory. If you begin building with an existing
    domain template all files that were in the template will get included. This was
    done because there is no way for the builder to automatically determine all the
    files that are required by your template/domain and we steered away from recursively
    including all files from the directory so that unused files were not needlessly
    included. We can extrapolate some files based on the application paths in the
    config.xml, but the rest is left up to the template builder to be aware of what
    is needed for their domain to run. So, if you need the Pointbase *.dbn and *.wal
    files included in your template just select these files on the ?Add Files? panel
    of the template builder and add them to the ?Domain Directory?.
    2) ?If you choose to include a resource adapter "application", such as jms-xa-adp.rar,
    the template builder does not bundle this in the template and deploy it correctly.?
         The template builder considers application files to be in two categories: Imported
    or Internal. When you are at the ?Add Applications? panel of the builder you
    will see a checklist of all the applications that are in the domain you selected.
    On the right hand side there are two text fields. The top one displays the application
    path as it is currently set in the config.xml of that domain. The bottom field
    will be different depending on what category the application falls into. As you
    click on each application in the list, you may notice that the bottom field may
    change from an editable field titled ?Imported Application Path? to a non-editable
    field titled ?Internal Application Path?. The difference between the two categories
    is that an ?Imported? application?s files will be included in the template jar.
    An ?Internal? application?s files will not be included in the template jar because
    they are considered internal to the weblogic installation. The jms-xa-adp.rar
    should fall into the internal category and should not get included in your template.
         From what you are describing it sounds like the builder attempted to import that
    application when it should not have. In an attempt to recreate the problem you
    are seeing I deployed that Connector Module through the WLS console and ended
    up with an application path of ?C:\bea\weblogic81\server\lib? where ?C:\bea\weblogic81?
    is my WL_HOME (a.k.a. USER_INSTALL_DIR). If I then attempt to build a template
    from this domain, the builder recognizes this as an internal path and does not
    include it inside my template. If the current application path you had looks
    different from the one above, that may explain why the builder was attempting
    to import it. What was the value of the ?Current Application Path? for that application
    deployment?
    3) ?Relative paths in the config.xml file require you to execute the config builder
    from the directory of the domain you are making a template for.?
         The builder is ?smart? enough to determine relative paths. You should not have
    to invoke it from the domain directory you are working with. There is a known
    bug in the WebLogic Platform 8.1.1.0 release of the template builder that will
    cause it to not find files with relative paths in your domain directory if the
    application path in the config.xml is just a ?.?. If this is the case, you should
    see a FileNotFoundException when you attempt to create the template. This will
    be fixed in SP2 and you can work around this problem by changing those paths to
    ?./? instead. If this was not the case, what was the path the wizard choked
    on?
    4) ?Looking through the config file, it seems that it's all of the WLI components
    that have absolute paths in the config file. In addition, BEA_WLS_DBMS_ADK has
    an absolute path, not sure if that is WLI or WLS. ?
         BEA_WLS_DBMS_ADK is an integration application. If you created the original
    domain using the configuration wizard most of the applications in an integration
    enabled domain will reference paths inside of you installation directory or ?internal?
    paths. For instance, I used the wizard to create a ?Basic WebLogic Integration
    Domain?. The path for that application in this domain is: ?C:\bea\weblogic81/integration/adapters/dbms/lib/BEA_WLS_DBMS_ADK.ear?
    where ?C:\bea\weblogic81? is my WL_HOME or USER_INSTALL_DIR. When I load this
    domain into the builder it shows this application as ?internal? and the ?Internal
    Application Path? is "$USER_INSTALL_DIR$/integration/adapters/dbms/lib/BEA_WLS_DBMS_ADK.ear".
    This will be set as the path value of this application in the config.xml that
    will be included in the template you build. When you later use the Configuration
    Wizard on this template it will substitute the $USER_INSTALL_DIR$ to the value
    of the installation directory of the machine you are creating it on.
         If you were to Change these to relative paths, as Mark previously suggested,
    it will only work if you copy the domain directory to the same location relative
    to your installation directory on the target machine. Also, if you copy the domain
    in this manner you will more than likely run into problems with your start/stop
    scripts and be forced to hand modify all the paths contained within. The configuration
    wizard tries to alleviate these problems and make the configuration entirely portable.
    This gives the user who creates the domain from your template the ability to
    put it anywhere they want regardless of the paths in the config.xml.
    5) ?However, there is another major problem with the Template Builder: it only
    includes the startup/shutdown script for the platform you create the template
    on. ???I built the template on Solaris with the UNIX scripts. However, I tried
    to create a new config on Windows with this template, and the scripts were not
    converted to .bat files!?
         As I stated previously, the builder will only include *.cmd and *.sh scripts
    into your template by default. If you created the domain on a unix platform using
    the configuration wizard it will not extract the *.cmd files since these aren?t
    considered to be useful on unix. If you were then to attempt building a template
    from this domain and take it onto a windows platform, it will obviously be missing
    any windows scripts. Conversely, the wizard will extract *.sh scripts on windows
    because they can still be useful if a user has an MKS or Cygwin type environment
    installed. The config wizard and template builder do not have the ability to convert
    scripts. The builder will only include existing scripts that are in your domain
    directory and automatically determine any necessary string substitutions that
    will be needed. Please note that since WebLogic is only supported on the NT/2K/XP
    versions of windows you will find that the wizards use ?.cmd? files and not ?.bat?
    files since these are more commonly associated with Win 95/98/ME.
         I will be happy to answer any more questions you may have and would also like
    to take a look at your domain configuration to try and get a better understanding
    of the problems you are encountering.
    thanx,
    russ

  • Was advised to delete system configuration file from hard drive and now computer will not start - any help would be appreciated.

    Downloaded Yosemite and since then cannot connect to internet or bluetooth mouse - was advised to delete system configuration file from the hard drive and since then cannot start up computer. Any help would be appreciated - cheers.

    Boot the MBP with the OPTION+COMMAND+R keys down.  The result should be a display showing a revolving globe.  By following the instructions, you will be able to reinstall the original OSX.  Then you may reinstall Yosemite.
    A solid Internet connection will be required.
    Ciao.

  • How can I delete an unwanted template from 'My Templates'?

    How can I delete an unwanted template from 'My Templates'? I created this in error and cannot find a way to remove it. Thanks for all help.

    Pages stores those you created & saved as templates in (your account) > Library > Application Support > iWork > Pages > Templates > My Templates. The user's Library is hidden in Lion but it is easy to open. In Finder, hold down the Option key while clicking on the Go menu & your users Library will appear about halfway down the list.
    I suggest you update your profile to show your current version of OS X. Click on "Your Stuff" at the top right of this page & choose profile (bottom of the list) then click edit.

  • Is it Possible to delete the configuration from a Material Variant?

    Hi,
    Can you delete the configuration from a Material Variant and then reconfigure the part in MM02?

    Hi
    Once we created variant we can't delete it,
    Regards,
    srihari

  • I would like to know how to to deleta a custom template in Pages

    I would like to know how to to delete a custom template in Pages

    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=215&highlight=delete +template&mforum=iworktipsntrick
    Peter

  • Where's the My Templates folder in Yosemite, or How to delete a Numbers template.

    I have Numbers 3.5.2 - where'd the My Templates folder go? I don't see it in Library/Application Support. .... In other words, I'm trying to delete unwanted templates. Could it be that it's now easier to find than in earlier iWorks, but I'm missing the obvious???

    When in doubt, check HELP. (duh).............
    Rename or delete a custom template
    After you install a template, it appears in the My Templates category in the template chooser.
    In the template chooser, Control-click the template name, then choose Rename or Delete.
    If you’re renaming, type a new name, then press Return.
    You can’t rearrange templates; they always appear in the order in which they were added.

  • BPM Configuration Error on Weblogic Configuration

    Hi,
    I try to configure BPM Directory and always get error on wlst.sh command
    weblogic.common.resourcepool.ResourceSystemException: Cannot load driver class: weblogic.jdbcx.oracle.OracleDataSource
    My system spec:
    - Solaris SPARC 64
    - Weblogic 10.3.0.0 using JRockit 1.6.0_16
    - BPM 10gR3
    The configuration error in weblogic configuration.
    Really need help here..
    Thanks
    Regards,
    Eric Wijaya

    Hi Eric,
    Just checking: Are you using BPM 10.3.2?
    Do you mean the BPM Directory Configuration?Yes, I'm talking about the directory configuration and the engine configuration too.
    I've configure the BPM Directory to use BPM's Oracle Driver Version:10,11 which is selected by default by the BPM Configuration Wizard but still got the jdbc driver error. If you are using 10.3.2, you will see that there is another driver called: "Oracle Driver Version:10,11" (without BPM!!). You must use that driver. (if you install the latest 10.3.2 HF, that driver is the default one).
    If you don't have that driver, then you are using an older version than 10.3.2. Please migrate to 10.3.2.
    Hope this helps,
    Ariel

  • How can I delete a mini-template and a template?

    Hi, guys.
    Today I created some mini-templates and assigned them to a template for Sale area .
    I am going to delete them now.
    when I tried to delete the template, System mentioned " some mini-template have been assign to this template..."
    when I tired to delete to mini-template, System mentioned" the mini-template has been assigned to ...template"
    Could somebody tell me how to delete them, please?

    Hello Michael,
    Please refer to the following SCN discussion.
    http://scn.sap.com/thread/1263262
    As the template is in use you cannot delete it.
    Try deleting the assigned sales area from template to BP and then delete the template.
    Thanks,
    Best regards,
    Julin

  • Deleting a Custom Template

         In my quest to master (???) this program, i created a "Custom Template" which I thought i could use over & over & replace the data for what i wanted further use for; an ongoing monthly spreadsheet (Table) the first row with all my labels for each column. I know this is redimentary, but i still don't get the Header Footer thing & not sure I'm heading up the spreadsheet (Table) correctly, but it didn't work out the way i wanted; so i want to deplete it but can't find it!
         I looked up 'Help" and it states that,
    "To delete a custom template, in the Finder navigate to the folder in which you saved the template, and drag the template to the Trash".
    "The template is saved in your home folder in the following subfolder structure: Library/Application Support/iWork/Numbers/Templates/My Templates/."
         When i follow that path in my computer, the only folders in "iNumbers Folder" are two folders labeled "Content" & "Frameworks."
    They do come up when i choose Custom Templates and the path at the bottom of the window shows, Macintoch > My Templates > then that template, but won't let me delete.
         All i want to do is delete them so i can start over when i'm ready to create a custom template & know (have a better idea) what i'm doing.
    don

    Pages stores those you created & saved as templates in (your account) > Library > Application Support > iWork > Pages > Templates > My Templates. Numbers templates are in the same path. Access to the user's Library is hidden in Lion but it is easy to open. In Finder, hold down the Option key while clicking on the Go menu & your users Library will appear about halfway down the list.

  • Copy AP Configuration Templates-WCS 7.0.172.0

    I am wondering if anyone has seen a way to copy an AP configuration template. We have several distribution centers and the templates are essentially identical other than the Template name and the AP Group VLAN (different for each DC). We set up a new template for each new DC. Being able to copy a template, rename it and change the Group VLAN setting would save a lot of time.

    I haven't been able to make it work like it was in prior versions.  I have found you can initiate the session from monitor-->access points--->ap name and selecting the radio type.  802.11b/g/n, or 802.11a/n.  The icon is under cleanair management operation.

  • PLD Document Configuration Template

    Hi All,
    Can anyone please let me share any of the PLD Document Configuration Templates. This is for requirement documentation. Based on this we would like to design the SBO outputs for all the marketing and other documents. Any help would be of great value.
    Thanks & Regards
    Shiva

    Documentation can found in this link:
    https://websmp206.sap-ag.de/smb/sbocustomer

  • App-V: A Configuration Template for Deploying to Stateless RDS Clients on Citrix Published Desktops with Citrix UPM for Profile Management

    Please Vote if you find this to be helpful!
    App-V:  A Configuration Template for Deploying to Stateless RDS Clients on Citrix Published Desktops with Citrix UPM for Profile Management
    Just posted this to the wiki:
    http://social.technet.microsoft.com/wiki/contents/articles/25318.app-v-a-configuration-template-for-deploying-to-stateless-rds-clients-on-citrix-published-desktops-with-citrix-upm-for-profile-management.aspx

    I would not recommend this and keep the package cache and the client on the same non-persistent drive and enable the Shared Content Store. If you separate the cache and the App-V client they could get out of sync and strange behaviour can occur. 
    You can use a temporary local profile with Citrix UPM or UE-V and specify what to roam/save.
    You can use the Shared Content Store so packages will stream over the network. When the user logs on there is a publishing phase where shortcuts etc are created for the user, this will take some time.
    Are you using the App-V full infrastructure?
    Are you using a boot disk, partition or PXE in combination with PVS?

  • Deleting a Configuration Scenario in Dev

    Hello,
    When we decide to rearchitect interfaces in PI, and are faced with deleting configuration scenarios in Development, how do those deletes "transport" up into QA and Production when there is nothing to "export" in the source system (because it was deleted?
    It is not a best practice to directly change QA or Prod, so we are assuming that carrying deletes through the PI landscape must have a transport mechanism.
    Thank you.

    Hi,
    If you are using File transfer mode for exporting Configuration objects, then you have a option Include Deleted Objects which you can tick and then your deleted objects will be deleted in PI QA or PRD system when you import this file in these systems.............
    If you are using CTS+ for exporting objects, then when you delete your configuration scenario in ID and activate it, then you can right-click your change list having the deleted object and release it for transfer...... then a transport request will be created for it which you can import in QA or PRD system and then your configuration scenario will be deleted in your these systems.
    Regards,
    Rajeev Gupta

  • How does one delete VPN configurations in the settings list not used any more?

    How does one delete VPN configurations in the settings list not used any more?

    Sorted found profiles and delete from there

Maybe you are looking for

  • USBOTG and Charge Simultaneously on Stream 8

    To keep this thread as efficient and productive as possible for all those who it will be useful to: Unless you have in front of you1. A schematic of the Stream 8 USB port (USB port and battery power circuit etc)2. Source code of the BIOS firmware and

  • Bridge won't open within Photoshop CS6

    I have no problem opening bridge on its own, or if I right-click on an image in my folder, but if Photoshop is open and I click on the "Launch Bridge' button at the bottom, I see "Waiting for bridge to open" forever. And then if I launch bridge on it

  • SoundChannel behavior without audio driver

    Hi, I'm not sure if it's AS3 or Air /FB4 forum I should ask this: I'm testing my air app on older notebook without sound drivers and problem is when I want to call SoundChannel.stop() function. Well I don't know what is the problem, I only managed to

  • Why do I have 2 photos libraries?

    Hi, After updating to OS X 10.10.3, my iPhoto library seemed to have converted without any hick-ups into its Photos counterpart. But inside my Users/~/Pictures folder I now have 2 separate Photos libraries. One named "Photos Library.photoslibrary" th

  • IDOC - XI - HTTP/MAIL (How to get the http response and send an email?)

    Hi David! If you are able to send any Http message in reference to message from XI (eg. with Idoc number or msg-id) there is no problem to process it in your scenario (even if comunication is asynchronous). Regards, Radek