projectname overlaps the workspace location: workspacename

I have a folder structure:
...\dev
...\dev\shared
...\dev\clients
...\dev\clients\clientA
...\dev\clients\clientB
I created a workspace pointed at \dev.
I created a Project "shared", pointed at ...\dev\shared, no
problem.
But when I tried to create a "ClientA" project in the dev
workspace pointed to the ...\dev\clients\clientA folder I got the
error in the subject line.
Sure it overlaps, it is IN that folder.
What am I missing?
Tracy

If you create a project *inside* a workspace folder, it has
to conform to 2 rules:
- the project folder must be directly inside the workspace
folder (not nested inside other folders)
- the project folder must have the same name as the project
These rules are built into Eclipse, which is the open-source
framework that FlexBuilder is built on.
I'm sure there is a good reason for these rules, but I don't
know exactly what the reasons are. At
the moment there is nothing we can do to change them.
I have filed a Usability bug to the FlexBuilder team; maybe
we can improve the error message, or in
the long term find a way to remove these restrictions.
Mark Shepherd
FlexBuilder Engineering
ntsiii wrote:
> I have a folder structure:
> ...\dev
> ...\dev\shared
> ...\dev\clients
> ...\dev\clients\clientA
> ...\dev\clients\clientB
>
> I created a workspace pointed at \dev.
> I created a Project "shared", pointed at ...\dev\shared,
no problem.
>
> But when I tried to create a "ClientA" project in the
dev workspace pointed to
> the ...\dev\clients\clientA folder I got the error in
the subject line.
>
> Sure it overlaps, it is IN that folder.
>
> What am I missing?
>
> Tracy
>

Similar Messages

  • Is there a way to display the file location in iTunes?

    I have several external hard drives connected to my windows PC.   Over time, I have copied my music files (some I have ripped from CD's, and some I have copied from a friend's external drive) to 3 or 4 different locations, each of which is on a separate external drive.   Now, iTunes has gone out and pulled all of those files into my music.   As a result, I have 3 or more copies of many songs.  
    The only way I can see where they are located, as far as I know, is to right click on each song, go to Get Info, and look at the "WHERE" box at the bottom of the window.
    Is there a way for me to set the file location up as a field in iTunes?  What I want to do now is to move all of my music to one location, then delete duplicates, before backing the entire library up.
    Thanks in advance for any help you can give me!

    I use CoderPlus workspace & tabbed panels.  For me, the file url is on the far right side. See screenshot. 
    If you click the "Page Icon" in upper right corner to tile, the URL shows on the left side.
    Nancy O.

  • How do I export the workspace I set up in CS6 32 bit to the 64 bit version?

    I've grown to accept that workspaces can't be simply exported from a previous version of AI and imported into the next one. So I painstakingly set up my workspace in the 32 bit version of Illustrator CS6, all the panels laid up over 2 screens in the way I use them most eficiently to suit my personal workflow, thinking that the 64 bit version would also have the same workspace available once I start it. Silly me! Why should I have thought things could be so straightforward? Well OK, they don't share workspaces - so how do I export my workspace that I saved in the 32 bit AI to the 64 bit version? That must be do-able surely - if we need to switch versions obviously we want to maintain consistency. But I just can't figure out how. Please help.

    You need to copy your workspace file manually from the 32 bit version into the 64 bit version.
    This is the mac  CS5 location (I am at work), and the PC location should be similar. Or do a search of your drive for the workspace name.
    You will need to restart for this to take effect. Wou will also probably have to export 32 bit actions, and load them in your 64 bit version along with changing popular setting like paste remembers layers.

  • How to deploy the Workspace Agent Services as a Window Service!

    Hi all,
    does anyone know how to install the Workspace Agent Service back as a Windows Service after i re-installed an reconfigured the workspace completly i do not see the Agent anymore in my Windows Services. I sure would like to avoid to have to uninstall and set it up completely again.
    The agent start file is located in common\workspacert\9.5.0.0\bin.
    Your help is much appreciated
    Cheers
    André

    I hit the same problem after reinstalling workspace.
    It seems that the config tool does not create the workspace agent service on subsequent configurations.
    A quick search of the configtool.log from the original installation/configuration yields the following:
    com.hyperion.avalanche.config.CoreService, INFO, Running command: D:\Hyperion\common\workspacert\9.5.0.0\bin\wksagent.exe -RegService -Auto -Name HyS9Core1 -DisplayName Hyperion Workspace - Agent Service -Description HyS9Core1, Provides service infrastructure to run services locally
    Dropping the above line at the command prompt fixed the issue for me.
    Cheers,
    Aaron
    Edited by: user8871938 on 15-Feb-2010 06:56

  • Re: DW CC The usual choices for the Workspace Layout are missing. How can I restore them?

    The usual choices for the Workspace Layout are missing. How can I restore them?The usual choices for the Workspace Layout are missing. How can I restore them?

    The Insert panel has been reworked pretty significantly in DWCC (Spry has been dead for over a year now, so it no longer appears for instance), but can still be opened via Window > Insert then dragged to the toolbar location (to get the tabs back) by clicking and dragging the Insert tab up to the top of the application frame until it highlights. Once you drop it, it will then appear as a toolbar.
    Not all of the tools will be visible at all times. DWCC knows when certain things can't technically be used and it won't display them if they can't be inserted.
    EDIT: Oops, forgot to add this. Here is a link talking about what has changed in the Insert panel: http://helpx.adobe.com/dreamweaver/using/changes-insert-options-creative-cloud.html

  • Can we change the bound location of an operator using OMB?

    Hi,
    I'm trying to change the location of an table operator using the following code:
    OMBALTER MAPPING 'MAP_NAME' MODIFY OPERATOR 'TABLE_TEST' SET PROPERTIES (database_link) VALUES ('PROJECT1/SOURCE1/TEMP_TABLE3')
    OMBCOMMIT
    OMBPlus tells me that the command ran successfully. But if i take a look on the design center, the change didn't occur. The old location for the operator remains.
    Am i using the right property type? database_link?
    Thank You!
    Filipe

    What you've run only change the link location. It doesn't change the bound location.
    I've write an OMB scripts to automate the changing of bound location within different project .
    set OMBPROMPT ON
    OMBDCC
    OMBCC '/'
    set projects [OMBLIST PROJECTS]
    puts -nonewline "Please enter the Project Name ($projects): "
    gets stdin projectName
    set path [lindex [OMBDCC] 1]
    OMBCC '$projectName'
    set modules [OMBLIST ORACLE_MODULES]
    puts -nonewline "Please enter the Module Name ($modules): "
    gets stdin moduleName
    puts "================"
    puts "Finding on Module $moduleName"
    set path [lindex [OMBDCC] 1]
    set no_mod 1
    OMBCC '$path/$moduleName'
    set no_map 1
    puts "Find $moduleName"
    foreach mapname [OMBLIST MAPPINGS] {
    foreach klname [OMBRETRIEVE MAPPING '$mapname' GET OPERATORS] {
    set bname [lindex [OMBRETRIEVE MAPPING '$mapname' OPERATOR '$klname' GET BOUND_OBJECT] 1]
    set oname [lindex [OMBRETRIEVE MAPPING '$mapname' OPERATOR '$klname' GET BOUND_OBJECT] 0]
    # PTI_DW_TST is the name of project orig bound
    # PTI_DW is the name of project destination bound
    set result [regexp {^(/PTI_DW_TST)+} $bname match]
    if { $result == 1 } {
    set myresult [regsub {^(/PTI_DW_TST)+} $bname "/PTI_DW" new_bname]
    #puts "$klname ($oname) : $bname => $new_bname"
    OMBRECONCILE $oname '$new_bname' TO MAPPING '$mapname' OPERATOR '$klname' USE (RECONCILE_STRATEGY 'REPLACE', MATCHING_STRATEGY 'MATCH_BY_OBJECT_NAME')
    puts "Reconcile Mapping $mapname change $bname to $new_bname for operator $klname with type $oname"
    incr no_map
    OMBCC '/'

  • Where are AE CS3 Workspaces located on Macintosh?

    I want to copy a workspace from my Mac to a co-workers Mac.
    Where is it located on my Mac?
    Thanks for any help,
    Mike
    OSX 10.5.8
    AE CS3 Pro
    2.8 GHz Quad-Core Intel Xeon
    6 GB RAM

    Custom workspace data for After Effects CS3 is stored in:
    \Users\username\Library\Preferences\Adobe\After Effects\8.0\ModifiedWorkspaces
    Same general path for CS4 and CS5, just substitute 9.0 or 10.0 for the version folder.  Windows users can find the folder under C:\Users\username\AppData\Roaming\Adobe\After Effects.  (Windows XP: C:\Documents and Settings\username\Application  Data\Adobe\After Effects\)
    The UserWorkspace#.xml files represent the different workspaces you've created.  Open the file and inspect the UserName value (at the bottom) if you need to know which workspace it is.  Note that if you haven't explicitly given your workspace a name (via the Workspace menu > New Workspace), the UserName value may be a duplicate of the last workspace you were working in.  ie., Standard, Animation, etc.

  • When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder". How can i fix this?

    When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder. How can i fix this problem?

    Anyone can help to advice how to solve this issue ?

  • Error while running the financial report in the workspace.

    Hi,
    Im getting the below error while running the financial report in the workspace in HTML mode.
    *"Required application module reporting.HRRunDlg is not configured. Please contact your administrator".*
    And im not able to login to the Hyperion Financial Reporting as well.. i get the below error
    *"You are not authorized to use this functionality. Contact your administrator"*
    Can someone let me know how to resolve this error.

    You don't mention the version, what app server or web server you are using, etc.. That information might be helpful, but in general, you can try the following:
    1. Make sure you have gone through the FR Web App deployment steps and verify the settings entered in the Config Tool.
    2. For version 11.1.1.x and 9.3.1.x, try opening the report in FR Studio and running it via the FR Studio Print Preview (*bold*not*bold* Web Preview.) If the report runs/processes, then the back-end FR Services are functioning and the issue is confined to the web interface. Verify the FR Web App is up and listening on the designated port (8200, by default), check the FR Web App logs and the App Server (WebLogic, WebSphere, Tomcat, OAS) logs for errors/issues.
    If the report fails to process in FR Studio Print Preview, then there is a problem with the FR Reporting Server Service. Check to make sure the service is up/functioning and check the FR Report Server logs for errors.
    3. Test access to other FR functionality in workspace (ex: Files->Preferences->Financial Reporting or Explore->Tools->Database Connection Manager?) If these don't work, then try to connect to the following URLs:
    http://workspaceServer:19000/hr/status.jsp
    http://frWebAppServer:8200/hr/status.jsp
    Note: The URLs above assume standard/default ports. You may need to adjust them for your environment.
    If the first URL fails, but the second URL works, there is a problem with the HTTP redirect settings on the Web Server (Apache, IIS, etc.) Run through the Workspace deployment and make sure the Web Server Config settings point to the right ports/servers.

  • I lost my phone and use the IPHone locater, Now that i got my phone back it is disabled and I don't know how to fix it. It had asked for a code but I have no idea what it is so I tried several things but to no avail

    I lost my phone and used the iphone locater to find it. Now that it has been returned to me, it is disabled and says connect to ITUNES. Can you help me ?

    Does the link below help?
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support

  • Update 27.0 causes downloads to go to the wrong location

    I want downloads to go to my RAMdisk (not surprisingly, R:\), but since the update to v27, all downloads go to C:\Users\Me\Downloads. My Options are set correctly, I've double-checked my Profile location (I:\Firefox\Profiles), and all Bookmarks and Extensions are perfectly fine - it's just the download location that is messed up.
    Is this a universal issue with v27 (unlikely) or has a fix been found (hopefully)?

    "regression" is right. I can see not wanting to download to the root of a system disk, but a logical drive... Unfortunate.
    But your solution is 100% accurate, and I thank you both for your time and speedy replies!
    ** Read the bug report, and this says it all:
    The bug is present on Firefox 27 final.
    Firefox 27 cannot save files to any root directory by default, except for Windows drive root directory.
    '''Firefox 26 and earlier could. Lots of people will find out the hard way about this bug starting today.''' I hope it gets fixed and 27.0.1 gets released as soon as possible with this bug fixed in it.
    Yup [;-)

  • I-tunes was saving my music to the wrong location.

    If I choose the option to have i-tunes organize my media and consolidate my collection, can I delete the files in the original location safely? As I understand it is now copying them to the correct location and I can't afford the space in the area (partition) where it was saving them in error....
    And will it now save any new files in the right location?
    Thanks in advance for your help!

    To answer the second question first, iTunes uses the folder specified in Edit > Preferences > Advanced as the iTunes Media Folder. Any file added (by purchasing from the iTunes Store, ripping from CD, using the conversion process, added as result of the "Copy..." parameter, or by means of the Automatically Add folder) will go there.  So, yes.
    And about Consolidate:  it goes thru your library, and any library entry whose track is not already in the designated folder will have a copy placed there.  After it is done, iTunes does not need the other files.

  • How to select the download location? its automatically downloading to users folder in c drive. i wanna change it..plz help me out......

    how to select the download location? its automatically downloading to users folder in c drive.. i wanna change to my desktop...plz help me out...

    Tools -> Options -> Save files to -> Click browse button and browse for folder where you want to save the file.

  • Lightroom 5 is tied to my photos in a folder on my computer, if I move that folder to a hard drive, how to I connect Lightroom to the new location on the hard drive vs my computer?

    Lightroom 5 is tied to my photos in a folder on my computer, if I move that folder to a hard drive, how to I connect Lightroom to the new location on the hard drive vs my computer?

    How to recreate iTunes Library
    No content shows up in iTunes after updating

  • Downloads just disappear from the specified location such as "Desktop" or "My Documents".They are untraceable afterwards.Why does this happen?And because of this I have uninstalled Firefox and now use Chrome.

    I have been using Firefox for almost a year now,and had upgraded to Version 7 recently.
    My problem started with the downloads.
    1) When a download is to be commenced,a box appears with two options,namely "SAVE" and "CANCEL".
    Even when I click on "SAVE",the the box shows it as 'cancelled'.When I right click on the box,another dialogue box appears with a number of choices ,the top one reads 'RETRY'.
    When I click this option the download starts and it is shown in the chosen location until 99% is completed,bu the moment the download is complete,the item i.e. the downloaded item just disappears from the chosen location and is not traceable thereafter.This has happened to me repeatedly over the past week or so and I am so disgusted that I have been compelled to uninstall Firefox,and have started using Chrome.
    Please help,as I would like to get back to using Firefox again but without the above problems.

    Understood.  However, the point that I'm trying to make is that it's not the WiFi access point's security that's in question, it's having your phone's WiFi in an always-on mode that's in question.  It's simple: if your phone's WiFi is on, then it is both discoverable and hackable... even when it's not connected to a WiFi network or access point.  Here's an article about a drone in London that was created to hack smartphone WiFi signals (and hackers have been doing what this drone does for years):
    http://money.cnn.com/2014/03/20/technology/security/drone-phone/
    The point is that it's not  secure to have your phone's WiFi in an always-on mode.  It would be better for privacy and security if Apple made WiFi location aware so that it is only enabled when you are at a trusted location (e.g. your home or office).  Or, at least give us the option of location aware WiFi so that each user can determine the best mode for their phone:
    (1) Always-On (current default - not secure and many privacy issues).
    (2) Trusted mode (only on at trusted locations).
    (3) Off.

Maybe you are looking for