Compile project for different env

Good morning every one,
   Just a quick question.  I am developing on Mac OS X, with CF 8 and Flex 4 (as eclipse plugin).  I have one staging server also Mac OS X with CF 8 and a production server which is Linux with CF 8.
     As of now, I am taking the compiled output and just copying it over to my staging area, when verified same codebase is copied over to the production area.  This was working fine until last nights update to production area. I started getting Java.nullpointer exception when Flex tried to communicate with CF.
     I am wondering if it has anything to do with the way Flex project has been compiled with --services flag. The location of CF 8 services-config.xml is different on Linux v. Mac.  Or is it that everything is encapsulated in the compiled swf and it does not matter as long as CF version are same? and error is related to something else?
Thanks
Jay

What exact error are you getting? Have to tried to enable robust error info in cold fusion?
-Gaurav
http://www.gauravj.com/blog

Similar Messages

  • Best way to preview AIR for Android projects for different devices?

    So if I am developing an AIR for Android app, is there a good, simple way to preview the app on any android device? I have installed it on my phone of course, but is there a simulator/emulator of some sort available so we can see how it would look on both an Android phone and a tablet? Thanks in advance to anyone who can help!

    DPI aside, you can just set your resolution on the project to the target devices resolution to preview how it will look. While vectors will render much smoother on the device (higher DPI), it's a very easy way to target various resolutions for testing.
    If you have the full CC suite you might want to consider using Flash Builder 4.7 which has many different device presets and allows you to create your own presets to mimic tablets and phones. It really depends how complex your project is to move over to FB.

  • Cannot compile dylib for different platform then local machine

    Hello,
    I have to compile a dylib that uses two other dylibs in chain but I have some problems when I try to compile for i386 arch.
    I am using mac os x 10.6 and the default arch for g++ is x86_64.
    If I wanna compile for this arch (x86_64) everything works ok but if I change the arch I get some "had not been declared errors"
    The other two dylibs that I am using are compiled for both architectures.

    I am using makefiles. More exactly there are some modified makefiles created with eclipse CDT.
    What is strange is the fact that the same sources can be compiled on mac os x 10.5 i386 but from an 10.6 using 10.5 sdk for i386 arch I'm having problems.

  • How to use the same UI Project for differents HumanTask's in BPM 11gR1

    When I define a User interaction activity in my Oracle BPM 11gR1 Process and associate a Human Task to it. It generates a new project to hold all my forms. Anyone knows if it's possible to use this same project for different Human Task's ?

    After you generate the UI project for your first human task, you can right click on the project in JDeveloper and select "New", click on the "All Technologies Tab", then "JSF" -> "ADF Task Flow Based on Human Task". Then browse to the .task file from your BPMN/composite project.

  • How to process for an ECC 6.0 upgrade for different objects (RICEF)?

    Hi eaxperts,
    I am new to upgrad project. Can anyone pls. tell me in details things that need to be undertaken in an ECC upgrade project for different objects e.g. RICEF and How should I process for the same?
    Please also tell me the important T-codes for the same and how to use them.
    Thanks a lot in advance,
    Sandy

    Hi,
    Please read below lines.I think u can get some knowledge about UPGRADE.
    u2022     System preparation and stack level patch upgrade u2013 Basis Team
    First of all, the basis team installs the Latest SAP version on the hardware and they apply all the general patches up to the latest stack level. All the stack levels of various patches u2013 Basis, ABAP, XI etc should be brought up to the latest level by the basis team. In case, all the stack levels are not the latest, it might create problems like new objects coming into the SPAU during the upgrade or thereafter u2013 these will be explained in sections below.. So it is a good practice to get the system to the latest stack level.
    u2022     SPDD Phase u2013 ABAP and Functionals
    This transaction code SPDD is the core step in an upgrade project. The system compares all the dictionary objects u2013 data elements, database tables and structures of the latest system (say ECC) with the previous or the old system (Say 4.6c). These all elements are present under two nodes u2013 with modification assistant and without modification assistant. Objects present under with modification assistant have the modification assistant u2018ONu2019 and we can see the modification logs.
    u2022     Up gradation of the system u2013 Basis Team
    After the SPDD phase is complete, the basis team prepares the system for an UPGRADE u2013 i.e. the old system would be replaced by the new system. In this phase, the system asks for the SPDD request u2013 the single request which generates and activate all the dictionary objects present in SPDD phase in the new system u2013 ECC. If the request do not contains the same objects which were present in SPDD, the system shows a danger alarm u2013 stating that this SDPP request do not contains all the desired objects and it might make the system unstable. In case any other objects are missing, there and then it should be put in the SPDD request.
    u2022     SPAU Phase u2013 ABAP and Functionals
    The SPAU transaction contains the objects u2013 Programs, Reports, Screens, Messages, Notes, Function Modules etc. which have difference in the Latest SAP request and the previous ones. This SPAU phase can be done either just after SPDD or after the Up gradation of the system by the Basis team.

  • Command Line Compilation of  a Project with different packages

    Hi,
    I am trying to compile a project through command line, which has different packages with many classes in it. Now If I try to compile package by package It's complaining about other referenced classes of different packages. So I created .bat file, which includes all the packages, but it's complaining input line is too long.
    D:\jdk1.3.1\bin>app.bat
    My bat file is
    javac -d d:\Application\build d:\Application\source\com\ibc\rules\login\*.java d:\Application\source\com\ibc\rules\lookup\*.java .................d:\Application\source\com\ibc\wid\events\*.java d:\Application\source\com\ibc\wid\frames\cust\*.java ...
    and so on............
    Is there any solution for this problem?
    Thanks in advance....

    I think the prefered and more elegant way to compile project including packages should be writing makefiles including their compilation, installation, deploying - rules ..
    Make is really powerful, the maybe only weak-point is that there are some distribution of them, gnu-make, microsoft nmake .. which are slightly different, that made porting among platforms difficult.
    The jakarta-ant was a new approach to this which uses xml parser to proof the dependencies, etc ..
    Because I'm not familiar yet with xml & ant and as a in-blooded unix user, "make" is still my prefered way to do roject.
    The easiest way to get unix environment required for using make in Windows platforms is to download the "unxutils". It includes make, bzip2, diff, ... and other unix-tools. Refer to this (found from search by google) :
    http://www.weihenstephan.de/~syring/win32/
    http://www.weihenstephan.de/~syring/win32/UnxUtils.zip
    http://sourceforge.net/projects/unxutils/
    For more documentation on how to write makefile, use make -tool, see
    http://www.gnu.org/manual/
    http://www.gnu.org/manual/make-3.79.1/html_mono/make.html

  • Different zoom levels for different clips in the same project?

    Hi
    I am making a movie with videos from two different cameras. As a result some of the clips are cut down in size to a small portion of the screen. This can be solved if it is possible to use different zoom levels for different clips in the same project. I have not been able to do this. Is it possible?
    kind regards
    Soren

    You can scale the small clips up to the same size of the larger one... but you will get a quality loss.
    Using Motion or Scale to Frame Size commands
    Better to scale the large ones down to a Sequence that matches the smaller clip dimensions.

  • Need to do projects for CP C++ course , have team viewer, bought Parallels, but were told there's no need to buy anthing since Mac can code.  Do I need a compiler then, which one?  Thanks.

    Need to do projects for CP C++ course , have team viewer, Xcode, bought Parallels, but were told there's no need to buy anthing since Mac can code.  Do I need a compiler then, which one?  Thanks.

    Xcode. Download it for free from the Mac App Store.

  • Seperate server log for different projects on same domain

    Hi All,
    Could someone help me initiate code to seperate server log of domain for different projects running on the domain.
    For example, If I have two projects 1,2 in the same domain, then I should get two server log files for each project.
    Regards,
    SunnyPhani

    iCal Server sends invitations to internal users too if you remove the email addresses of your internal users under "Info" in Workgroup Manager.
    So the Open Directory does not have an entry for the users with your internal domain, which makes iCal Server see the user as an external one.

  • Different settings for different projects

    Hi,
    I'm wondering why it is that Final Cut Pro cannot keep different AV setups and scratch disks for different projects. I am working with several different projects on my computer. Some in PAL, some in NTSC, some capturing from Betacam, others from DV, and all having different capture settings, including different scratch disks.
    Every time I open a different project, I have to reset every one of these things...you'd think it was an incredibly basic thing to have these things "remembered" by project, so that you didn't have to reconfigure everything every time you switched (even with making an Easy Setup it's a pain). Or maybe it IS incredibly basic and I'm just missing something?
    Thanks in advance for shedding light on this subject!
    Nayeli
    17 PowerBook G4   Mac OS X (10.4.4)   1GB RAM
    17 PowerBook G4   Mac OS X (10.3.9)   1GB RAM

    Thanks for the response...that is a good suggestion, I might try that if it turns out to be quicker to switch user than to switch settings each time.... I'll have to think through the implications, like permissions and such, to make sure I don't dig the hole deeper. But I like the idea because I do need to digitize to different drives as they get disconnected from my system and travel to different places, heheh...
    This is something I've hated about FCP for years and years...today I was thinking about it and thought, it can't be, it's just such a basic thing, available in so many applications...I must be wrong and there must be a way to do it that I don't know about! I mean, for me it's enough to want to take the Pro off the end of Final Cut Pro. For people who use this tool in the industry I'd say it's almost a must-have. I mean, you can work without it, but it IS a big pain!
    In any case, thanks for your help!
    17 PowerBook G4   Mac OS X (10.4)   1GB RAM

  • How do you open a project started in Muse, Dreamweaver, or other to tweak for different screen sizes

    How do you open a project started in Muse, Dreamweaver, or other design program to tweak for different screen sizes?

    Hi. As of now HTML import is not plan of record for Reflow 1.0.  See this FAQ for a bit more info - http://forums.adobe.com/message/5071510#5071510.
    -C

  • In Cover Flow, a compilation album shows different covers for each song.  How do I make it show one cover for the whole album?

    In Cover Flow, a compilation album shows different covers for each song.  How do I make it show one cover for the whole album?

    Also in the first page of Get Info for all tracks set the Album Artist to be Various Artists.
    If you select all the tracks and right click to get info then you can do all the tracks in one go

  • DBAShell - New Open Source Project for Oracle DBA's

    I'd like to have this project included in the Open Source Oracle tools list at: http://www.oracle.com/technology/community/opensource_projects.html
    I’'ve been an Oracle DBA for quite some time (since 7.0.13) and a developer for many years. One of the things I'’ve always wished for was an easier way to set up environment variables for different Oracle Home’s and a way to provide passwords to scripts without embedding them in plain-view.
    About 3 years ago, I started a set of functions and scripts at my company that did exactly just that and provided many more functions for things like checking database status, running scripts quietly unless errors are detected, running actions in parallel (like fast shutdowns at once, or multiple analyzes), restarting databases in a guaranteed fashion, aliases to common folder locations, etc..
    About a month ago, after putting all this time and effort into these scripts and using them in production all this time, I realized I wanted more out of the scripts like support for other databases and thought that it would be best if I gave it new life as an Open Source project.
    So that is how http://sourceforge.net/projects/dbashell/ was started. Now it’s in a second release (DBAShell 0.85) that is more modular and would allow other people to easily add support for other OS’s, other Shells, and other Databases.
    Here is a description of the project from the latest news item:
    DBAShell is a project based around Shell functions and scripts designed to make it easy for DBA's to use Databases in a command line environment. Currently supported is Oracle with ksh and bash on AIX, Solaris, Linux. The code base itself is 3 years old and has been in use in Production environments all of that time.
    Features include:
    * Automatic setting of all environment variables based on SID requested.
    * Manage PATH's and other path like variables for each ORACLE_HOME needed.
    * Run scripts with stored passwords (no more hard-coding of passwords!!)
    * Automatically set SID based on Script location (makes it easier to share scripts between SID's)
    * manage temporary script output and check for oracle errors in output
    * check database status and versions from scripts
    * stop/start databases in parallel (faster startup)
    * compile all database objects
    * analyze objects in parallel (Faster analyzes)
    * set aliases and variables for common SID areas, etc..
    * many helpful commands for common Oracle tasks
    Over a thousand people have already downloaded the prior release and more are downloading every hour.
    I'm seeking feedback from anybody that would be willing to take a look at the project, trying it out, give me any feedback you have on it, and perhaps even direct me to where I could best promote this project.
    I wrote a tutorial that shows at a glance some of the more useful features of DBAShell:
    http://sourceforge.net/docman/display_doc.php?docid=34041&group_id=170224
    Main site:
    http://sourceforge.net/projects/dbashell/
    Documentation: http://sourceforge.net/docman/display_doc.php?docid=33704&group_id=170224
    Download:
    http://prdownloads.sourceforge.net/dbashell/dbashell-0.85.tar.gz?download

    Always glad to have people thinking about the poor DBA's. Usually, the developers get most of the attention in open source.

  • DBAShell - Open Source project for Oracle DBA's

    I’ve been an Oracle DBA for quite some time (since 7.0.13) and a developer for many years. One of the things I’ve always wished for was an easier way to set up environment variables for different Oracle Home’s and a way to provide passwords to scripts without embedding them in plain-view.
    About 3 years ago, I started a set of functions and scripts at my company that did exactly just that and provided many more functions for things like checking database status, running scripts quietly unless errors are detected, running actions in parallel (like fast shutdowns at once, or multiple analyzes), restarting databases in a guaranteed fashion, aliases to common folder locations, etc..
    About a month ago, after putting all this time and effort into these scripts and using them in production all this time, I realized I wanted more out of the scripts like support for other databases and thought that it would be best if I gave it new life as an Open Source project.
    So that is how http://sourceforge.net/projects/dbashell/ was started. Now it’s in a second release (DBAShell 0.85) that is more modular and would allow other people to easily add support for other OS’s, other Shells, and other Databases.
    Here is a description of the project from the latest news item:
    DBAShell is a project based around Shell functions and scripts designed to make it easy for DBA's to use Databases in a command line environment. Currently supported is Oracle with ksh and bash on AIX, Solaris, Linux. The code base itself is 3 years old and has been in use in Production environments all of that time.
    Features include:
    * Automatic setting of all environment variables based on SID requested.
    * Manage PATH's and other path like variables for each ORACLE_HOME needed.
    * Run scripts with stored passwords (no more hard-coding of passwords!!)
    * Automatically set SID based on Script location (makes it easier to share scripts between SID's)
    * manage temporary script output and check for oracle errors in output
    * check database status and versions from scripts
    * stop/start databases in parallel (faster startup)
    * compile all database objects
    * analyze objects in parallel (Faster analyzes)
    * set aliases and variables for common SID areas, etc..
    * many helpful commands for common Oracle tasks
    Over a thousand people have already downloaded the prior release and more are downloading every hour.
    I'm seeking feedback from anybody that would be willing to take a look at the project, trying it out, give me any feedback you have on it, and perhaps even direct me to where I could best promote this project.
    I wrote a tutorial that shows at a glance some of the more useful features of DBAShell:
    http://sourceforge.net/docman/display_doc.php?docid=34041&group_id=170224
    Main site:
    http://sourceforge.net/projects/dbashell/
    Documentation: http://sourceforge.net/docman/display_doc.php?docid=33704&group_id=170224
    Download:
    http://prdownloads.sourceforge.net/dbashell/dbashell-0.85.tar.gz?download

    Always glad to have people thinking about the poor DBA's. Usually, the developers get most of the attention in open source.

  • Dynamic reports for different access levels

    <p> </p><p>I want to create a report using Hyperion Report which will showthe data dynamically.</p><p>I have certain hierarchy in my dimesions and there are differentusers associated with different hierarchy levels.</p><p>E.g. Person1 can access only Level 0 data. Person 2 can accesslevel 1 and level 0 data. Person3 can access level 2, level 1 andlevel 0 data. Basically any user can access data of all itsdescendants.  </p><p> </p><p>All this needs to be done using same report becuase they areviewing same kind of reports , but just the different levels ofdata.</p><p> </p><p>Please guide me, how to implement this using Hyperion Reports.It would be a great help.</p><p> </p><p>Thank you.</p>

    Hi again
    Well, here's the way it may work for a compiled .CHM setup.
    If you are using compiled .CHM files, I'm guessing your software is
    modular. Meaning that at the time it is installed, the user has
    options of choosing between the following modules:
    Module 1
    Module 2 - 9
    Module 10
    In this setup, you would create help that is generic that all
    modules would need. That one would be the Master. Then you would
    create separate projects for the remaining modules. You would then
    provide it all to the person that handles the installation program
    for your application. That person would then handle configuring the
    installer application so that only help for the actually installed
    modules is installed. If a module has been excluded, help is not
    installed for that module and doesn't appear and is not available
    to the user.
    Hopefully that makes sense to you. If not, ping back and I or
    someone else will take a stab at another explanation.
    Cheers... Rick

Maybe you are looking for