Ant deployESBSuitcase - Is it possible to override created zip location?

I am trying to create a CD based ESB deployment process so you can run Ant and deploy ESB projects from the CD to the application server. However using the Ant task deployESBSuitcase it creates a zip file for each project and then deletes it. This clearly isn't going to work from a CD as I can't write to it. Using a staging area will get round this but if I don't have this option what else can I do?
It doesn't appear possible to specify a different location for the zip file as it appears to use the same location as the sourceDirectory parameter of deployESBSuitcase which is on the CD.
I'm using Oracle SOA Suite 10.1.3.4.0
Any ideas?
Regards
Alistair
Edited by: user2000 on Mar 16, 2010 1:11 PM

I think I have done it.
This may not be the best way of achieving a resolution, but it seems to be working - for now...
1. I opened the Accounts.plst file located in:
users>myname>library>Mail>V2>MailData
2. Find and Replace all path references that pointed to my boot drive. These were changed to the new path location on the secondary drive. I saved and closed the updated accounts.plist file.
3. Moved the mailbox folders (pertaining to my email accounts) to the new folder. Created aliases for each folder and placed them in the original file location. (Probably unnecessary, but useful for my reference).
4. Deleted the original mailbox folder.
5. Restarted Mail and hey presto!

Similar Messages

  • Override the last location of the dw.browseForFolderURL

    Hi all,
    Is it possible to override the last location of the
    dw.browseForFolderURL()? So that when I call the
    dw.browseForFileURL() function would the open select dialog box at
    the folder I set via “myVar_Override”.
    So the user would not have to browse for the right folder it
    just opens in the right location set via my
    “myVar_Override” they choose the file and its done.
    example ?
    “MMLastFolderLocation” = myVar_Override

    Hello envision3d,
    Thank your for the reply.
    It's not setting the
    "dreamweaver.browseForFolderURL()function I have an issue with.
    It's once someone selects a folder with the above function
    the dw.browseForFileURL() will start at the last location
    where the dreamweaver.browseForFolderURL() was called last
    and thats fine in most cases but I have a special need to be able
    to set the dw.browseForFileURL() starting point which does not have
    the parameter as does the "dreamweaver.browseForFolderURL()"
    function.
    But I know the DW has to have the Location store in memory or
    in a file somewhere. I'd like to write a new location to the
    variable holding that information.

  • Is it possible to override the built-in PDF format handler with a custom IFilter for PDF?

    Hi,
    SharePoint 2013 comes with a built-in "format handler" for PDF now, so it can index PDF files out of the box. This is great for most users, as it now no longer is necessary to install a third-party IFilter for crawling PDF documents.
    My question is, is it possible to override the built-in format handler for PDF with a custom IFilter for PDF? I played with the Set-SPEnterpriseSearchFileFormatState and Remove-SPEnterpriseSearchFileFormat cmdlets. While it is possible to deactivate
    the built-in format handler, I was not able to remove it and to create a new one that activates a custom IFilter for PDF files.
    Background of the question: While the new built-in format handler for PDF will probably be sufficient for many SharePoint users, some need additional capabilities regarding indexing if PDF documents, e.g. extraction of custom metadata from PDF's document
    information dictionary and embedded XMP metadata. PDFlib GmbH, the company I work form, sells an IFilter for PDF, and of course we would like to continue to offer this for SharePoint 2013.
    Thanks
    Stephan

    You should be able to replace it with any ifilter you want, this is the procedure for installing it:
    Install PDF iFilter 9.0 (64 bit) from
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025 (http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025)
    Download PDF icon picture from Adobe web site
    http://www.adobe.com/misc/linking.html (http://www.adobe.com/misc/linking.html)  and copy to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\IMAGES\
    Add the following entry in docIcon.xml file, which can be found at: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\XML
    <Mapping Key="pdf" Value="pdficon_small.png" />
    Add pdf file type on the File Type page under Search Service Application
    Open regedit
    Navigate to the following location:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\15.0\Search\Setup\ContentIndexCommon\Filters\Extension
    Right-click > Click New > Key to create a new key for .pdf
    Add the following GUID in the default value
    {E8978DA6-047F-4E3D-9C78-CDBE46041603}
    •Restart the SharePoint Server Search 15
    •Reboot the SharePoint servers in Farm
    •Create a Test site (with any out-of-box site template) and create a document library upload any sample PDF document(s).
    •Perform FULL Crawl to get search result.
    Once the crawl is completed we will get search results.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Is it possible to override built-in forms procedures like call_form?

    hi, is it possible to override built-in forms procedures like call_form? i want to override an existing built-in procedure so i don't need to change all my .fmbs. thanks in advice

    Hi,
    You cannot override them. However, you can create a procedure within the package with the name call_form and use it as package_name.call_form instead of call_form (use the search and replace functionality to replace the call_form with package_name.call_form).
    -Arun

  • Not possible to open/create a new connection within BT manager on Satellite M40

    Bluetooh manager is open and present in system bar.
    However it is never possible to open/create a new connection within bluetooth manager as it always say "bluetooh is not ready". Troubleshooting is required but no clear indication is available; button for wireless link is active and I am able to have wifi internet access at the same time.
    It is never possible to open access to a PDA or mobile phone for file transfer through bluetooth.
    Do i have to reload completely the bluetooth stack or is there another way to troubleshoot the bluetooh system?
    Thanks you for replying if possible.

    Remove the Bluetooth Monitor software if it is installed. Download the latest BT-stack v5.10.06 here:
    http://aps.toshiba-tro.de/bluetooth/redirect.php?page=pages/download.php
    and install it. Ensure that the wireless switch is turned on and the suitable antenna is selected.
    Press Fn+F8 key to select BT antenna. Selection menu only appears if WLAN and BT is inside.
    Read the following if you should still have some problems:
    http://aps.toshiba-tro.de/bluetooth/redirect.php?page=pages/faq/bluetoothnotworking.html

  • Is it possible to override super class constructor?

    Is it possible to override super class constructor form subclass?

    However, you can achieve do something that looks similar to overriding.
    class Parent {
      Parent(int i, String s) {
        // do stuff
    class Child extends Parent {
      Child(int i, String s) {
        super(i, s);
        // do Child stuff here
    new Parent(1, "abc");
    new Child(2, "xyz");Although that's not overriding, it sort of looks similar. Is this what you were talking about?

  • Is it possible, automatically, to create a border when a text is inserted.

    Is it possible, automatically, to create a border when a text is inserted.
    Example:
    List with subjects is:
    Name:
    address:
    etcetera...
    When the first subject (Name) is typed then a border will appear around the whole text
    Is this possible in Indesgn?
    Hans

    No. Indesign can't draw borders around text during an interaction. You can either set a border for a text frame or draw an unfilled rectangle around text, which then is an overlaying object, but this can't be automated.
    For an interactive PDF with forms, you can assign actions to a form field, but none to make a frame visible, a frame that would surround the text or show a border on one side.

  • Is it possible to dynamically create xml nodes?

    Hi,
    Is it possible to dynamically create child nodes of an xml
    file with flash??
    Im what i want to do is save a users name etc in an xml file
    without having to manually add nodes in.
    So when a user clicks a button to save their details a new
    node is created.
    Thnx

    Yes.
    Look
    at XML.appendChild as a starting point.

  • Is it possible to RE-CREATE table

    is it possible to re-create a table in indesign and insert same data by reading  data in another table using plugin.if their is a table with data exist as indesign document,can we create new table by inserting data that was already their in the previous table using c++ plugin.

    It sounds like you're an InDesign developer. Questions of that kind should be asked here:
    InDesign SDK

  • Is it possible to automatically create file names?

    If i do a set of measurements and i want to save each measurement in own file is it possible to automatically create filenames? For example XXX1.vi XXX2.vi ... XXXn.vi

    Is the n in XXXn a counter or a test number? See my attached example Create Report File from Serial Number. It creates a report file name starting with the serial number of the UUT and then appending a counter. You don't have to save the counter: the program looks for the next available filename on disk.
    Your question shows file names ending in .vi. You may not have intended it, but don't use .vi for data files: save that extension for real VIs. If each measurement has its own VI and you want to name the datafile based on the name of the calling VI, see my attached example Create Report File from Calling VI. It gets the name of the calling VI and creates a .txt file with the same name as the caller (with the new extension .txt).
    Attachments:
    Create_Report_File_from_Serial_Number.vi ‏58 KB
    Create_Report_File_from_Calling_VI.vi ‏46 KB

  • Is Scheduling is possible manually while creating a production order?

    When creating a production order (co01), Scheduling carried out automatically.
    Is Scheduling is possible manually while creating a production order? If yes how?

    Hi,
    Please check in transaction OPKP (Prodn scheduling profile), deselect automatic scheduling check box.
    From then production order screen enter the dates & click scheduling icon, scheduling takes place.
    Regards,
    Senthilkumar

  • Is it possible to Override Flex Default behaviour of loading Images on mouse scroll over ??

    Hi ,
    I am displaying Images on to a DataGrid .
    This works fine .
    My question is that  ,  Flex 3 is not loading all the Images at once , its loading Sometimes on mouse scroll down on a
    browser and sometimes on Mouse down .
    I dont want to have this behaviour , is it possible to override such behaviour and load all the Images at once ??

    Hi,
    What has been going wrong with your post ? You can use external USB sound card for your laptop. Here are few of them:
      http://www.shopbot.com.au/external-sound-card-usb/​price/australia/582295
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Is it possible I can create an iOS app for free???

    Is it possible I can create an iOS app for free??? I don't care what site, I just wanna know and how to add the new app to the App Store.....

    You need to pay a yearly fee of $99 dollars (US) in order to be able to test the apps on your ipod and post to the app store. Other than that creating apps are "free".

  • Sql developer 3.0: could be possible to avoid creating connections

    Hi, when connecting from oracle forms, you don't have to create a connection, in the same way I don't know if could be possible to avoid creating connections when you are using a tnsnames.ora archive.
    simple to choose the connection as in oracle forms, and the posibility to save the password.
    thank you

    As stated in the forum announcement, you can request this at the SQL Developer Exchange, so other users can vote and add weight for possible future implementation.
    Regards,
    K.

  • Is it possible to override authorative reverse DNS lookups?

    Hello,
    I am part of collaborative workgroup which has a group of networked computers that are installed at each others sites. This means that often a server has two names - a "site name", which is the name in DNS, such as BigFoot.yale.edu at X.X.X.5 and a "workgroup name", the name used by the group for distributed processes, such as YaleBigFoot.workgroup.net also at X.X.X.5 in our /etc/hosts file.
    We are trying to use globus and GSI authentication in between the servers which requires valid reverse dns lookups, such that a CN=host/ .
    On unix'y servers, this requires setting up a rather comples /etc/hosts and editing /etc/nsswitch so that /etc/hosts is used authoritively for all lookups.
    I have been trying to replicate this behavior for our Mac users, and I'm running into problems. I have read all the "reverse dns" documentation I can - and it appears that my problem is different.
    I have setup a /etc/hosts file and a /etc/lookupd/hosts configuration file and a /etc/named.conf section for workgroup.net and a /var/named/workgroup.net.zone file.
    However I still get the following output:
    $ host yale-bigfoot.workgroup.net
    yale-bigfoot.workgroup.net has address X.X.X.5
    $ host X.X.X.5
    X.X.X.5.in-addr.arpa domain name pointer workgroup-router-node.net.yale.edu.
    Is it possible to override the authorative reverse lookups?
    Thank you in advance,
    Brendan
    PS: names and address are not actual
    17' SuperDrive Powerbook G4   Mac OS X (10.4.6)  

    However, you can achieve do something that looks similar to overriding.
    class Parent {
      Parent(int i, String s) {
        // do stuff
    class Child extends Parent {
      Child(int i, String s) {
        super(i, s);
        // do Child stuff here
    new Parent(1, "abc");
    new Child(2, "xyz");Although that's not overriding, it sort of looks similar. Is this what you were talking about?

Maybe you are looking for

  • Virtual cube with services - internal table I_TH_SFC

    I have a BCS virtual cube w/services. The function module of the virtual cube has an import parameter I_TH_SFC Which contains mappings of characteristics in query drilldown. Example: CHANM = 0BCS_CGPCTR, CHAALIAS=K____896 I want to simulated a drilld

  • XI_J2EE_ADAPTER_FILE  PROCESSING_ERROR

    Hi All My scenario is R/3 --> XI --> thirparty( file) the messages are coming from SAP to XI successfully, but failing to reach third party from XI. and i am unable to see these messages from SXMB_MONI, But i am able see these messages from Runtime w

  • IO operations using ActiveX with Windows 8 64bit and IE 11 not working

    We are using ActiveX for downloading file from the server, It works well with Windows 7 and XP but there is issue with Windows 8 and IE 11.It doesn't give any error for downloading files using ActiveX but file not downloaded and even does not generat

  • Strange square box on right side of bookmarks bar

    Dear Mozilla Support The other day a strange long square box appeared on the right side of my bookmarks bar. The bookmarks bar I refer to starts on the left with the words "most Visited" "Start" etc, etc, with all my bookmark links icons displayed go

  • Static File in Exploded Application

    I am trying to read a gif from an exploded application. The exploded application is recognized ( I can view it's index.html page. ), but I can not view a gif that is part of the app. Any suggestions? Is there some special configuration that is necess