Required frameworks for running AppleScript apps

Does anyone know what the required frameworks/files are for AppleScript/AppleScript Studio based apps to run properly? Thing is, I have a minimalist install here based on Mac OS X Leopard 10.5.3, however my AppleScript based applications will not run because of the lack of something. If I could find this out that would be great

psydrake wrote:
> I am an administrator of a WebSphere 6 Network
Deployment installation, and I
> have a customer who would like to run her Coldfusion
application in WebSphere.
>
http://livedocs.macromedia.com/coldfusion/6.1/ibmdocs/install_.htm
> instructs to do the following:
> 1. Install the ColdFusion files.
> 2. Deploy the ColdFusion J2EE application.
> 3. Configure ColdFusion in the Configuration and
Migration Wizard.
> 4. Enable specific functionality required by ColdFusion
applications, such
> as the Verity search engine.
>
> Is this a separate application server that must be
installed and run on the
> WebSphere machine, or is everything (e.g. the Coldfusion
libraries) that is
> needed included in the resulting J2EE .ear file that the
developer hands to me?
All the standard Java bits are included in the EAR file.
However,
ColdFusion comes with additional functionality such as Verity
Indexing
and a JDBC-ODBC bridge that run as separate services (and may
be
Windows-only). If your developer uses those, they need to be
installed
as well and that is not part of a standard EAR file
deployment. Your
developer should be able to tell you more about those.
> Would I as a WebSphere administrator be performing all
of this installation and
> configuration, or are these all steps that the developer
performs in the
> process of packaging her J2EE .ear file?
When we deliver an EAR file we perform most of these tasks
when
packaging the EAR file so all that is left for the WebSphere
admin is
step 2 "Deploy the ColdFusion J2EE application.". You need to
consult
your developer to see how much he does and how much you need
to do for him.
Jochem
Jochem van Dieten
Adobe Community Expert for ColdFusion

Similar Messages

  • Selection of a mobile framework - for enterprise mobility app.

    There have been many plethora of mobility frameworks (e.g Kony, HTML5 based  frameworks) that have same features as Cordova - write your code once and run it on multiple platforms. Some are free,others are not. Having recently implemented enterprise mobility app (integrating with ECC, CRM) using one such framework, there are a certain I would like to consider before choosing a framework:
    a) How easy it to build security into the app (the login module)?
    b) How do I know that the requests for my data is an authenticated source?
    c) How good is the vendor support with plugins, upgrades to SDK?
    d) For frameworks that are free, do vendors really pay attention to issues that you are facing during (very specific to) your implementation.
    e) Scalability of the framework to support the app with newer mobile OSs, mobility sets (Motorola, Micromax, Blackberry), tabs.
    f) All mobile sets have limited memory at most to 2GB (or little more). How will the framework help in viewing huge amount of data that is there in SAP?
    From my experience, I would say it is big pain, implementing a enterprise mobility app with open framework adhering with the go live dates.
    SAP products are more easy to handle. A lot of featues comes inbuilt. Mobile apps comes as pre-packaged apps. One needs to customize it according to it needs. Product support from SAP is remarkable. Implementing and going live with such product becomes automatically easy adhering to the timelines. So is the maintenance. But of course comes the licensing price for SAP.

    Sukanta Rudra,
    I love to work with SAP products and so i m in SAP. Having worked on several other mobile applications before , i can clearly see the ease in development of Enterprise applications using SAP products portfolio.
    Often I have seem blogs in SCN, advocating for frameworks other than that of SAP. No harm
    Please mention the blogs as a reference for more understanding. I can always only see Cordova / appcelerator being the recommended platforms by SAP for cross platforms development.
    SAP Partners with Adobe-Cordova/phonegap , Appcelerator, Sencha (the three big players in cross platform development)
    Developer Announcement: Third Party Tools
    SAP Drives Openness and Choice for Millions of Mobile App Developers
    More over i have worked mostly on all the three for a while and have experienced the ease in development with cordova.
    Also the HWC (Hybrid Web Container ) - the former way for developing hybrid applications on SAP Mobile Platform till 2.x has Cordova/phonegap plugins inbuilt in it. Literally it followed the approch of Cordova and ui framework was of Jquery Mobile .
    But Now with the release of SMP 3.X things are completely under the control of developer. There are no restrictions to use a particular framework for development and developers are free to use their choice for development (SMP 3.x highlights BYOT - Bring Your Own Tools for Developers).
    Adding to above , just would like to mention there are few products mainly focused and developed on cordova technology (KAPSEL plugins, Appbuilder, Fiori Client , River RDE in future integrating Kapsel plugins)
    SMP 3.x is all open for developers , we are free to use any platform as per our requirements and convenience now.
    PLease have a look at these videos on how SMP 3.x strategy stands for
    My experience has been using Kony-SKY framework for developing the mobility apps (not mobile web). SKY plugins has been certified by SAP, to be used for developing mobility applications. (SAP does embrace other vendors). My questions pointed out above, was out of the struggles we had while implementing the project. Many at times, I felt I was reinventing the same tools while integrating into the SAP backends.
    I am not a Kony guy, but will surely look into this and would check if i can help you.But out of my experience with Cordova /HWC/ Kapsel , it was satisfactory.
    I presume you might have used/using SAP's Fiori apps, SAPUI5, mobile architecture and would like to gather some more information very specific to SAP's environment. I have no experience now on delivering apps using SAP's products. Maybe three months from now, I would get deep with 'SAP Fiori UX and SAP Screen Personas'. Maybe you could throw some light on few more queries.
    Yeah , thanks to SAP for Fiori being out of License now and UI5 an Opensource. I have had the opportunity to also work and implement Fiori transnational applications and also develop Custom UI5 applications .
    Note : Personas is really a good product , but on the down side is n't responsive in nature , so might not be a best fit for mobile devices
    How are builds generated for different platforms? (Android uses.apk, Blackberry uses .cod, iPhone uses .ipa)
    I can help you understand this with an Android Phone Gap project example
    Typically Native Android apps are developed using Core Java.
    Initially all the Core libraries of Android and java are loaded with import command
    import android.os.Bundle;
    Now Cordova libraries are added to existing libraries
    import android.os.Bundle;
    import org.apache.cordova.*;
    and Android uses the concept activities and layout for screen navigation and designing.
    and by default any android project should have an activity and layout for launching the application, for which the code looks something similar to this
    setContentView(R.layout.main);
    so , a Relative layout is initially launched as main view.
    As mentioned in the blog in  " How does it actually work section " cordova loads web views instead of the native layouts /activities
    How Does it actually work ?
    Technically the User Interface of a Cordova Application is effectively a WebView that occupies the complete screen and runs in the native Container. So , it is the same web view that is used by the Native  Operating systems. This purely means that only the Native Containers changes according to the OS and internally the web pages remain the same. (Since the browser rendering of webpages are different for each operating systems)
    For       IOS it is UIWebView class
                 Android it is in  android.webkit.webview
                 Windows it is WebViewClass and the similar goes to other OS .
    This line of code is responsible for that
    super.loadUrl("file:///android_asset/www/index.html");
    our developed web applications should reside in the above mentioned location to access as any native web view
    also few other hacks are to be done at
    public class [appname]Activity extends Activity {
    to
    public class [appname] Activity extends DroidGap {
    and to the android manifest file accordingly to get the permissions
    Now internally the android applications works just like any native applications but accessing the web applications files in the web view. and just generates the .apk accordingly to the application.
    Say a query is executed from a mobility app, say the result set is some 1000 rows, how does the data fetch mechanism work. Do you use some delta data fetch mechanism?
    if i were to handle this , would try to filter this out to sections. Lets imagine huge PO s are resulted upon a query, i would try to create some sections/categories for Unreleased/Open/Approved /... and again try to perform some dynamic filter operations on each category selection/ or make use of pagination property to move across the items/records
    Also user would not be interested to scroll and search for his item from a huge collection of items.
    More over for handling of huge records Native approach is preferred to Hybrid/mobile web.
    When a mobility connection snaps while the user is using the app, does the app stop immediately? Or rather how is user informed about non availability of the network connection?
    Lets assume two cases here
    1) Complete Online application
    2) Online Offline Application
    1) If user is trying to access the data from the application , since this being an online application , a proper network connectivity id to be checked properly before making any request .
    for phone gap/cordova , Network Object helps us to check if network connectivity is available to make any request. else throw an alert to check the connectivity/ turn on the connectivity.
    Similarly a Connectivity manager API exists for Android . Here is an example. Same would apply for other OS also.
    2) For online - offline application . user wouldn't be able to read records from back end , but can perform other necessary operations on the device, and once the device gets connected to network, can sync with the back end . An alert should be thrown to inform the user about the loss in network connectivity and the limitations in accessing the data .
    Build/release mechanism and subsequent tracking for mobility apps for periodic release of apps  - say there would regular fixes to bugs, upgrades to framework SDK, device OSs might get upgraded - Is there a tool for tracking all these, etc
    Yes. MDM tools are perfect fit for these. Afaria and Mocana are doing well now.
    And, anything that you would like to share, related to SAPs environment, that makes implementation easier.
    SAP Mobility is really booming and will grow , dominate in enterprise mobility in future.
    For our understanding:
    Let us know for more.
    Edit :
    IG is a part of SMP 3 but not a separate component as NWG
    Regards
    Virinchy
    Message was edited by: Virinchy P

  • Necessity of IE for running WD app in ABAP

    hi to all,
        this is sasikumar.i am fresher,now i am learning wd abap.i want to know,
    1.what the necessity of InternerExplorer for running the WD Application in ABAP.
    2.Can i run WD application with out EI.
    thanks...
    sasi.
    Edited by: sasikumar d on Apr 18, 2008 7:22 AM

    Hi Sasi,
    You can run Abap Web Dynpro applications without browser by using a SAP Web Dynpro Client. This will give you an extra tabpage in the SAPlogon which you can use to start applications.
    You can download this from https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f941800e-0701-0010-29ba-b29c5caa8eeb. It is possible that there are more current releases, just do a search on "Web Dynpro Client".
    Succes,
    Richard

  • I'm unable to run AppleScript.app after upgrading to Mavericks, is this as it should be, and is there a replacement for AppleScript?

    When I navigate to the Applications/Utiilities folder, and attempt to open the AppleScript editor I get an error popup with:
         The document "AppleScript Editor.app" could not be opened.
    Has AppleScript gone away, or is my OS Installation broken?
    Thanks,
    CraigP
    Ok, so it's broken.  Any idea how to un-break it?  For example, is there Installation Media for Mavericks that I can burn and attempt a re-install with?

    Your installation is broken.

  • Options for running Windows Apps

    Here goes - I'm a pc user. Developer to be specific, so I need to be able to run SQL Server 2005/2000 Visual Studio 2003/2005, and other Windows related apps to support my job. However, I'm interested in purchasing an Apple to support my hobbies (photography, etc). They're elegant in design/architecture, etc.
    I was really excited about the new MacBook Pro on an Intel platform - with dreams of "dual booting" Windows. Unfortunately, it does not appear that Windows (currently) supports the BIOS of the MacBook Pro - and I'm not interested in "hacking" a solution out. I need this thing to run, and run well.
    I've also heard about the VM and have used VM to support development work. However, I've found it to be clunky at best - and would rather pursue alternatives.
    So, ultimately my questions are - am I ultimately restricted to having multiple machines if I want a MacBook Pro? Is there any reality to the claim that Vista will be able to support the BIOS standard used by Apple? Should I just forget about it - and purchase another antiquated pc.
    Thanks in advance for any useful information. Sean

    It is possible that Microsoft will release a Virtual PC for Intel Mac, but that may be some time in the future.
    Currently you can obtain a boot loader that will instal Win XP on an Intel Mac. It is fairly straightforward but assumes that you are not a new computer user.
    Please be advised: This solution is not supported by Apple. Apple is not preventing people from instaling Windows, however they will not troubleshoot your problems. Furthermore you may wish to consider waiting a bit because the current instal does not contain fan drivers which means that while in Windows you run the chance of overheating your MacBook Pro. Given time this is likely to be fixed.
    http://download.onmac.net/
    In the long run it is better to only run OS X, however if you are forced to run Windows the least we Mac users can do is buy Apple hardware and software and dual boot our computers when required to. If I were in your situation I too would rather have a product made by Apple than any other manufacturer.

  • Running Applescript apps...

    Hello.
    I have an Applescript that copies a png from a server and sets it as the current clients desktop picture. When I run it on my test systems it runs fine, when I copy and run it over ARD however, the client asks permission to open the app and then tries to install it instead of running it. Any ideas?

    Thanks, but sadly I still get the install error. I think I'll just do everything with Unix instead of using Applescript, it's simpler.

  • Mail.app - Rule runs AppleScript, App crashes

    I have a very simple AppleScript that extracts some information from the content of a message and is eventually supposed to do something with it. However, I have hit a snag:
    I can get the data from the content and I can tell Mail to 'display dialog' with that data. That works fine the first time I run the script, but if I put in a loop to go thru multiple messages or if I simply run the script again on the same message I get a blank dialog box, a bit of whirring and Mail crashes.
    Any ideas? I suspect this is some corruption somewhere, but I am really not too sure where to start...

    I decided on the good old 'repair permissions' route after other apps started to behave strangely - crashes all over the place. Not only did that fix the stability, but Mail has started to behave as expected now.

  • Launchd to run Applescript app. only when an iWorks program is running

    How can I make launchd load an applescript application (that autosaves documents) only when an iWorks program (Pages, Numbers) is running?
    I am using Launchd Editor or Lingon to right the plist file.

    There isn't a launchd trigger I'm aware of that will do this.
    The best you can do with launchd is a StartInterval which launches your application every n seconds and have the script perform the check to see if one of the target applications is running.

  • ActionScript 3 frameworks for smart device apps

    Hi there,
    I have had a look at two frameworks (FeathersUI and MadComponents) that are designed for mobile and smart device application development.  However, I don't have much experience in choosing the one that is more optimised for smart devices and don't know about what the pros and cons of each are.
    I would greatly appreciate someone who's used them and knows a lot about the frameworks regardless of the one  they're in favor of.  I would like to know the differences in terms of performance, speed, limitations, what you can and can not do with each, how close each one is to native UI of iOS and Android. Last but not least, what do you rate each on a scale of 10?
    Thank you.

    Two things to look at are:
    The mobile capabilities of ADF Faces.
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/index.html
    Which has components that will render automatically on mobile devices and HTML browsers adjusting themselfs.
    Also you might be interested in the JWE extension to JDeveloper for Wireless development.
    http://otn.oracle.com/tech/wireless/tools/index.html

  • Is autoconfig required to be run for apps password change

    Is autoconfig required to be run for apps password change -- We are only changing APPS and APPLSYS passwords.
    How to Change Applications Passwords using Applications Schema Password Change Utility (FNDCPASS or AFPASSWD) [ID 437260.1] -- does not mention anything about autoconfig.
    Please clarify.
    Thanks

    It's mentioned in the document twice
    1. For APPLSYSPUB/GUEST as you mentioned
    2. Under "Verify the new password" which cover the apps/applsys passwords
    If you search the doc for "AutoConfig" you will find it there.
    Thanks,
    Hussein

  • Minimum Requirements for Computer to run an App Express Application

    What should I be telling my application users about the kind of computer power they need to run my App Express application?
    Thanks,
    Gregory
    Message was edited by:
    Canis Polaris

    Gregory,
    The same hardware requirements you would give them to run a "modern" web browser such as Firefox, Mozilla, Netscape 7.x or Internet Explorer 6+
    Sergio

  • Running  applescript in background (as a standalone app or iTunes script)

    Hiya,
    I'm working on making an Apple script that syncs my currently playing track with Twitter, Facebook, and Last.fm. I have the syncing portion worked out, but the method in which the program receives information is not ideal.
    I was wondering if there exist a set of commands that allows my program to work in the backhround, monitoring itunes for track-changes. Once a track changes, the syncing process will begin. Once the process ends, the program will once again become a background processes. This also beckons the question: is there a command for my program to launch when iTunes launches. I know Last.FM's official client has an option that allows the program to launch when iTunes launch. I would like to know if that's easy to implement.
    Ideally, if anyone can point me to a page/book for tutorials on how to futz around with iTunes commands and background processes, I would be greatful!
    Thanks!

    The background element of your request is fairly straightforward - use an 'idle' handler.
    In this case you want your idle handler to periodically check the state of iTunes and perform whatever actions you like once you know it's open.
    The other element - having your script open when iTunes opens, is not so easy. iTunes doesn't have the option to run a script or perform any action when it's opened. Therefore there's no easy way to achieve this - at least not via AppleScript. The typical way of doing it is to write a daemon process that sits in the background, but this isn't easy in AppleScript, or write a plug-in (which also isn't possible in AppleScript).
    As a result your best option may be to have an AppleScript app that's always running (e.g. launched at login) which sits around checking for iTunes, and kicking in once it detects iTunes has launched.
    Something like:
    -- variable to keep track of iTunes state last time we checked:
    global iTunesWasRunning
    on run
      set iTunesWasRunning to false
    end run
    on idle
      if application "iTunes" is running then
        -- it's running now, was it running before?
        if iTunesWasRunning then
          -- code here for checking track changes
        else
          -- it's just been launched, so do whatever you need on app launch
        end if
      end if
      -- remember the current app state for the next iteration
      set iTunesWasRunning to (application "iTunes" is running)
      -- check again in 10 seconds time
      return 10
    end idle
    Now you have three places you can run code - iTunes is still running, iTunes has just been launched, and itunes isn't running at all. From here you should be able to insert the relevant code for what you're trying to achieve.

  • HT4623 Now that iOS is consistently being updated.  Will the 1st Generation IPad be stuck with IOS 5?  Eventually my IPad will be good for nothing as Apps start requiring the updated software.

    Now that iOS is consistently being updated.  Will the 1st Generation IPad be stuck with IOS 5?  Eventually my IPad will be good for nothing as Apps start requiring the updated software.

    The iPad 1 can only be updated to iOS 5.1.1. This is unlikely to change.
    The apps you have will continue to work and there are still many apps which run on iOS 5 (or even earlier iOS levels).

  • I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    I am using Iphone 3G and running with ios version 4.2.1 .I am looking for to run whatsup apps.Can you guide me which IOS version should i download wherein,it will support whatsup apps

    with an iphone 3G the most up to date ios is 4.2.1 so you have a problem because whatsapp requires a higher version.  If you saved an earlier version of whatsapp you could install that otherwise you cannot use the app.  You will need to get a more up to date phone

  • Clean Install done but still showing updates required for previous owners apps needing apple id?

    Hi All,
    First time post and newbe to Macbooks so be gentle please... :-)
    I have bought a second hand macbook pro retina, the previous owner had removed all his data but not reformatted. I was having issues that some apps updates were showing that i couldn't update, as it kept asking for the previous owners ID. I thought the best thing to do was to reformat and start again to get a frsh machine...
    First issue after wiping the drive was that when i went to install the OS, it came up saying i didn't own a copy, as it was the provious owner who had installed the OS.... so after buying Mountain Lion under my account (still not sure if i needed to???) i was then able to install a new OS. Went through all the new user screens to set time and keyboard etc so i assumed i now had in effect a new machine.
    Again though, when i went to update the software, the previous users apps, that no longer appear on the machine, were showing as needing an update, and again were asking for the previous owners apple id to update????
    How do i get this sorted so i have a new machine without the history of a previous user, his apps and the required updates?
    I was also worried that after the fresh install i seem to have lost iPhoto, garage etc... i thought these came as standard, am i going to have to buy these also?
    Hope someone can help, desperate to get myself properly up and running and enjoying my new toy!
    Rob

    Selling Macs has become rather messy what with the different license requirements.....
    if the Mac had ML preinstalled, then the owner is allowed to make a one time transfer of the OS license; however, he needs to wipe the drive and use internet recovery to reinstall the system without using an Apple ID
    If, however, the Mac came with something other than ML (SL or Lion), then the seller needs to wipe the drive and reinstall the original system because any license obtained from MAS is NOT transferable.
    So, if it did come with ML originally and unless you wish to contact the seller, try internet recovery - pressing Command + Option + R while restarting ( a slightly different process than recovery) , wipe the drive in Disk Utility and download the OS. It should work - if not, I'd suggest a quick visit to the nearest Genius Bar and ask for help (reminding them that the license does allow a one time transfer).
    As for any other apps, you will need to purchase them (such as iLife, iWork, etc) - none of those licenses are transferable. If you encounter a problem doing so, you might want to address that issue at the Genius Bar as well; you do need to buy them again, but in some instances, someone testing that scenario was not able to, so just be aware that there might be a glitch.
    Edit: In order to do an internet recovery, you will also need to make sure that you are connected only via WiFi.

Maybe you are looking for

  • Windows Vista System download timeout error

    Hi, Every Adobe Reader download i've tried keeps giving me a download timeout error. I have removed all Adobe programs Adobe Reader X (10.1.3) Adobe Air Acrobat.com Adobe Reader 9 AcroRead.msi then i re-started my laptop and tried to re-install Adobe

  • APEX_COLLECTION and JDBC

    I want my APEX application to process a large amount of data (up to about 20,000 rows) obtained using a JDBC query. I cannot return a REF CURSOR since the database is remote and I cannot populate a global temporary table because its APEX. Is there a

  • Problems with my HP PSC 1510 All-In-One Printer

    I was wondering if someone could help me with a problem that I've been having. I just bought a new computer and had to upgrade my printer to Windows 7.   I had no trouble with the installation process, but ever since I've downloaded the update, EVERY

  • Battery Death!

    My battery seems to work for about 15 minutes, after being fully charged, then the computer just shuts down! Cycle count is 213, and it says "check battery" instead of reading "normal". What does this mean? Do I need to buy a new battery? I have had

  • PC Hierarchy & CC Hierarchy: Transport Request?

    Experts, Please tell, Is transport request required for Profit Center Hierarchy/ Profit Center Group and Cost Center Hierarchy/ Cost Center Group? or else we need to maintain them individualy in Development, Quality and Production servers? - Nilesh