Question about BlazeDS on a remote machine

So, i am running BlazeDS on my windows machine because that is where i have my Java stuff all setup and entrenched.
However, i develop Flex on my mac because i like how it works, and i have Flash Builder on Mac.
I want to set up a BlazeDS project, but it's asking for the root installation folder. How can i do this if it is on a remote machine?
The first answer that comes to mind is to map the Tomcat folder on my mac, but i don't know if that will work right.
any ideas/suggestions?
thanks

bumpity bump....

Similar Messages

  • Question about the "iPod radio remote"

    I assume the "radio remote" is the same for every country and is under software control. I want to buy in Canada but use in UK and Canada.
    Has anyone got one and seen the RDS work, in the UK almost every FM channel is RDS. Do they have RDS in Canada (Toronto) can anyone confirm?
    And of course it says FM so this again I assume no AM, not that I need AM it was just an interest in if it could do it.
    What happens about headphones, you can plug a pair into the remote, can you still plug into the bottom of the iPod or does the remote connector get in the way.
    What is the story with "line out" I use this all the time as I amp my headphones. So I assume you cant use line out? or is the remote a line out also.
    And I assume the remote cable and you headphones act as the aerial, how is the quality? Is it any good indoors, some little FM radios I have used drop to mono indoors. Does this Apple one frop to mono if the signal is weak?
    Someone that has one can perhaps answer
    Cheers
    Ray

    I can at least answer some of the questions.
    The RDS function on this radio/remote is poor in the
    UK. You have to set the radio function on the iPod
    to "Europe" and when you do this RDS info is not
    displayed on almost all radio stations such as
    Virgin, XFM, Capital, GLR, etc. It does display on
    Radio 2 however. At least, this is my finding. So
    it's unpredictable at best. Setting the radio to
    "USA" on the iPod increases the likelihood of getting
    the RDS to display, but the downside is that you can
    then only tune the radio in increments of 2mhz which
    is a bit awkward if your looking for 89.1mhz!
    There are three settings for the radio which you
    choose via the iPod. They are USA/Europe/Japan. No
    setting for Canada, although I'm sure you will still
    be able to use it over there as I can still use mine
    here in the UK even if it's set to USA.
    No, there is no AM radio.
    You can plug headphones into the remote or the
    headphone jack on the iPod, or both at the same time.
    I'm not sure I understand your question about the
    bottom of the iPod. The radio plugs into the iPod
    via the dock connector.
    There is no 'line out' on the iPod. If you mean the
    one on the dock, then no you can't use it as you
    cannot place the iPod into the dock whilst the
    radio/remote is connected as they use the same
    connector.
    Yes the cable of the remote acts as the aerial.
    Reception is surprisingly good where I am, but it
    will of course depend on where you use it. I've
    used it indoors without any drop in signal or it
    dropping to mono.
    Lastly, you need to update the software for both the
    nano or the 5th generation for the radio to work
    (after you do this a radio function appears in the
    menu), and some users have found that doing this
    screws up the iPod. I have mine working on both the
    nano and the 5th gen without any problems.
    There is a review of the radio/remote here. I like
    mine and consider it a worthwhile accessory, but of
    course there will be those who disagree.
    iPod
    Radio/Remote Review.
    Thank you for the reply.
    Think your right USA or Europe will work in Canada.
    Yes I mean the line out via the dock, I just wondered if the remote become a line out socket (I also use a pocket dock for line out for headphone amp as I use a pair of Sennheiser HD600 with my ipod) but of course that is silly becasue you have a volume control on the remote and line out is normaly fixed.
    Based on your views I shall get one in March when in Toronto
    Cheers
    Ray

  • Question about the FRONT ROW REMOTE

    ok i have 2 questions about this remote.... i ordered a Mac Book Pro and am waiting for it....
    Well the 1st question is that has anyone use Powerpoint or Keynote with this remote. That would be great for keeping me mobile while giving my speeches...
    2nd. Is the IR "eye" in the computere sensitive to other products. Maybe a cell photo that has the obex all locked up (thanks VERIZON)....
    any info would be great
    steve

    Sorry to disappoint you but I don't think it is that kind of a remote. It seems to be designed strictly for audio/video software. I have tried it with both Keynote and PowerPoint and all it did was effect iTunes that was running in the background.
    As far as other IR devices; I aimed all the IR remotes I have and tried different buttons. Nothing happened. But things like TV remotes usually have to be coded to the specific devices you wish to have them operate. If you purchase a Universal Remote for your TV, DVD, VCR, etc., you have to tell it what the brand and model are, usually from a list of codes that come with the remote.

  • Question about blazeds turnkey, tomcat and directory structure

    hi. this question is pretty basic...been reading sujit reddy g's blog on installing/setting up blazeds.
    in one article he creates a samplewebapps directory in C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\samplewebapps and copies the blazeds WEB-INF/lib into that directory and the configuration files in the flex folder across as well...http://sujitreddyg.wordpress.com/2009/04/07/setting-up-blazeds/
    in another article on invoking java methods from flex he configures the remote-config.xml file directly in the blazeds\WEB-INF\flex folder....http://sujitreddyg.wordpress.com/2008/01/14/invoking-java-methods-from-adobe-fle x/
    wasn't sure why in the first example he copied the files and folders to the samplewebapps directory while in the second example he just configured the files within the blazeds directory...thanx...(i'm a newbie at server side development)

    I'll take a stab at it. The key thing to realize is the BlazeDS code is ADDED on
    to the appserver. E.g. for Tomcat/WebLogic/et al one adds the reference in the web.xml file in WEB-INF.
    So, what is that add-on?
    1. Executable files. These are jar files and typically stuck into WEB-INF/lib
    2. Configuration files. flex/services-config.xml is specified in web.xml. It refers to the other config files in WEB-INF/flex
    So, the config in web.xml tells Tomcat (and its forked commercial products) to load up the Flex jars and run some classes. By standard, the "run some classes" follows the servlet lifecycle and runs specific methods in the class when the servlet is loaded, called, destroyed. So, Flex jars have a class which implements the servlet interface.
    Incidentally, you may also see references to log4j, Spring, and other frameworks in the web.xml as well. They do the same sort of stuff. So, Tomcat does the passing of the HTTP packets and stages them into Java classes and the hooked in frameworks do add their own behaviours to the setup.
    HTH,
    TimJowers
    P.S> Also note in Flex when you setup the project properties for a Flex Project then you need to match up your URL and "context" to what you have on your server. In his exampe, the "samples" context may have already been setup so easier to use. What is a "context"? The idea is to have more than one webapp running on an appserver. In Tomcat, its basically just the subdirectory under "webapps". That directory name becomes part of the URL. E.g. webapps/samples -> http://localhost:8080/samples  or webapps/mytest -> http://localhost:8080/mytest

  • Question about blazeds turnkey installation and directory structure

    hi. this question is pretty basic...been reading sujit reddy g's blog on installing/setting up blazeds.
    in one article he creates a samplewebapps directory in C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\samplewebapps and copies the blazeds WEB-INF/lib into that directory and the configuration files in the flex folder across as well...http://sujitreddyg.wordpress.com/2009/04/07/setting-up-blazeds/
    in another article on invoking java methods from flex he configures the remote-config.xml file directly in the blazeds\WEB-INF\flex folder....http://sujitreddyg.wordpress.com/2008/01/14/invoking-java-methods-from-adobe-flex/
    wasn't sure why in the first example he copied the files and folders to the samplewebapps directory while in the second example he just configured the files within the blazeds directory...thanx...(i'm a newbie at server side development)

    There's really not much difference. In some cases, you might already have a web application you are using so you could just copy the contents of the blazeds web app into your existing web application.
    Application servers can host more than one web application and a Flex application that uses BlazeDS can be deployed on a different web app than the one where BlazeDS is running or a different server entirely so it really just depends how you want to set things up.
    Hope I'm not just making things more confusing for you. . .
    -Alex

  • Question about BlazeDS Channel internals

    There is much useful information available about how an application developer would use BlazeDS to implement their application, but there is a shortage of information about how BlazeDS is implemented.  There are very general architecture diagrams, but no information on the actual network technologies employed.  This information is essential for forming estimates of the server hardware requirements of a design.  The alternative is to build the application one way, and then discover the performance characteristics afterwards.
    For one feature of my application, the ideal structure would be to give the clients and mx.Consumer to receive non-polling stream of changes replicated from the database.  In this particular feature, there would be no subtopics, each client would receive the same data.  The question is would BlazeDS/Flex give each client 1 persistent socket to support the stream.  If this is the case, then this design poses a very significant load on the server.  It makes it easy for the developer, because he writes to only one topic, but if under the covers, the server is writing to one socket for each client.  It will require a lot of hardware.
    Or, to state the question another way, would BlazeDS/flex use multicast, when there is a client Consumer subscribing to a topic, with no subtopics?

    I have just found one clear statement in the BlazeDS documentation with regard to sockets when streaming:
    "The Servlet API uses blocking IO so as with long polling above, you must set a configured upper bound on the number of streaming connections you allow. Clients that exceed this limit are not able to open a streaming connection and will fall back to the next channel in their channel set."
    BlazeDS Developer Guide, page 50.
    This I did not expect, since non-blocking IO has been part of Java for over 5 years in the NIO package.  If I were to deploy BlaseDS on an Intel sized box, I suspect the blocking IO would limit me to maybe 300 concurrent users.  If this is true, it means that both streaming and long polling are unusable for almost any application on the public web.
    Maybe the only option is to write a server in Java NIO that communicates with Flash Sockets.
    Did I miss something?

  • Questions about "Restore System From Time Machine"

    Looking to fix an apparent system corruption problem on my work machine, I discovered the "Utilities > Restore System From Time Machine" option of the Leopard installation disc. I have some questions that are not answered in http://support.apple.com/kb/HT1177:
    1. Does this option erase the hard drive and install a fresh system from DVD, or do I need to do that in a separate step?
    2. What about software updates - when are they applied?
    3. Will third-party system extensions be reinstalled OK?
    4. I tried launching the process on my home machine, just to see how it works. At work I have a dedicated disk for Time Machine, but at home I have a Time Capsule, serving two Macs via Ethernet. I've also configured the TC to give us a shared volume; so in normal operation I have two network volumes, <Username>, containing Time Machine's sparsebundle file for that user's Mac, and "Shared". When I boot from the installation DVD and run "Utilities > Restore System From Time Machine", the backup volume list only shows the "Shared" volume. If I select it, I'm prompted for my TC username and password; I enter it, TC spins up, and then nothing. I cannot continue the restoration process, and reselecting the "Shared" volume does nothing. ???
    Thanks in advance for your help.
    -- Phil

    For the record, here's what I've found out so far:
    1. The "Restore System From Time Machine" option seems to want to restore everything, including the system, from the Time Machine backup. I wanted a clean system install, so I did an "Erase & install" followed by a "Restore from Time Machine" in the Migration Assistant. That got me most, but not all, of my settings back; exceptions include the printer configurations, the desktop picture, and the Dock settings.
    2. Software updates can be applied after the new system is rebooted.
    3. Most 3rd party extensions seem to have been restored OK, but some (like MacFuse) were not.
    4. I'd still be grateful for any hints concerning how to get "Restore from Time Machine" to work with a Time Capsule.
    -- Phil

  • Oracle B2B 11g question about pulling data from remote TP sftp server

    Hi,
    We would like replace our custom b2b solution with oracle b2b, but without resulting much changes in remote TP side. To do that the following issues are to be resolved.
    1) in the existing custom b2b, host tp is pulling data from remote TP location. How does oracle b2b pull data from remote location using sftp(AS1 1.1)? Oracle document says that by using global listening channel, we can make oracle b2b listen to the sftp server? Is that correct? Is there any sample about how to configure and test it.
    2) For outbound file we would like to preserve the file name. If you use sftp for sending the file out, is it possible to preserve the filename?
    3) Some incoming files which are datafiles , does not have any identification pattern. Is there any other way to identify the document type? For example from which location we are pulling the file can tell us the document type.

    1) in the existing custom b2b, host tp is pulling data from remote TP location. How does oracle b2b pull data from remote location using sftp(AS1 1.1)? Oracle document says that by using global listening channel, we can make oracle b2b listen to the sftp server? Is that correct? Is there any sample about how to configure and test it. I am not sure what do you mean by AS1 1.1 but yes, SFTP is supported in Oracle B2B and if you want to poll a SFTP location, then you need to create a listening channel in Oracle B2B. For creating a listening channel, please refer -
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10229/bb_listen_chan.htm#BAJJICJJ
    2) For outbound file we would like to preserve the file name. If you use sftp for sending the file out, is it possible to preserve the filename?Yes, it is possible. There is a setting "Preserve Filename" in transport protocol parameter of a SFTP channel which should be enabled for this purpose.
    3) Some incoming files which are datafiles , does not have any identification pattern. Is there any other way to identify the document type? For example from which location we are pulling the file can tell us the document type. In case of FTP/FILE/SFTP, file name can be used to pass document type and revision information to Oracle B2B. Please refer "Filename format" setting on the above mentioned link.
    I figured it out from another thread about how to pull the file. I configured the listening channel so that it reads from a remote server using sftpo protocol. And I have given the filename format as %FROM_PARTY%.dat. I am putting a file like TESTBC.dat. TESTBC is the name of the remote TP. B2B is reading the file but, recognizes the document tupe, but says that FromTP null. What is the solution?
    Make sure that TP name is same as what you are giving in filename (cross-check for spelling). You may also try with default naming convention (do not mention anything in Filename format in listening channel configuration) - %FROM_PARTY%_%TIMESTAMP%.dat
    for eg -
    Acme_12345.dat
    Regards,
    Anuj

  • Getting a new macbook, questions about transferring files with Time Machine

    I now plan to switch computers to one of the new Macbook pros. Since I now use Time Machine, I'm planning to just upload the backup to the new computer when I get it. the backups are able to be transferred to a new one for an upgrade right?
    Also, I had to switch hard drives once about 2 years ago, and when I did, the backup DVD I made for my iTunes didn't remember which of my ~2000 songs are checked and which aren't, leaving me to have to do it manually over the course of a few weeks. Will Time Machine do this for me?
    I'm also running Leopard atm, will there be any problems uploading all the info since the new computer will be running Snow Leopard, and the backup was made through Leopard?

    falkner09 wrote:
    I now plan to switch computers to one of the new Macbook pros. Since I now use Time Machine, I'm planning to just upload the backup to the new computer when I get it. the backups are able to be transferred to a new one for an upgrade right?
    Not via a full system restore. You want to use +Setup Assistant+ when the new Mac first starts up. You can transfer directly from the old Mac, or it's backups. See [Setting up a new Mac from an old one or its backups|http://web.me.com/pondini/AppleTips/Setup.html] (or use the link in *User Tips* at the top of the +Snow Leopard > Installation and Setup+ forum).
    Firewire from the old Mac will be fastest, by far. If you use your network, connect via Ethernet cable; wireless will take an eternity.
    Also, I had to switch hard drives once about 2 years ago, and when I did, the backup DVD I made for my iTunes didn't remember which of my ~2000 songs are checked and which aren't, leaving me to have to do it manually over the course of a few weeks. Will Time Machine do this for me?
    It should.
    I'm also running Leopard atm, will there be any problems uploading all the info since the new computer will be running Snow Leopard, and the backup was made through Leopard?
    That's what +Setup Assistant+ is all about; it transfers everything except the old version of OSX.

  • Tecra 750: Question about Infrared and TV remote control

    Hi there,
    I am wondering if anyone can help. I have an old Tecra 750 which I am using as an audio system to play my MP3 collection. It has an Infrared detector on it and I was wondering if it is possible to use this to receive IR from a TV remote control so I can use a remote to navigate my audio files. Does anyone know how to do this or where I could find out how? Is there any freeware to help perhaps? Is it even possible?
    Thanks!

    Hi,
    The computer uses IRDA infra red and this is not compatible with the type of infra red used by normal remotes.
    You could get an external infra red remote control which will plug into the USB port.

  • Question about  the name given to machine after restore.

    It seems every time a full system restore using time machine has been completed it renames the machine from Sean O'Briens imac to Sean O'Briens imac (2) etc. I am now on (4)
    Is there a way to change it back to just Sean O'Briens imac
    Message was edited by: Seanrobrien

    V.K.
    If I rename in system preferences will this affect the folder on my external hard drive thats labeled Sean O'Brien iMac (4) and is used by time machine?

  • Some questions about accessing Oracle from another machine with OEM

    I followed this great tutorial on how to get oracle8i installed and working on rh6.2. http://jordan.fortwayne.com/oracle/
    Great job to the writer)))
    Know I need a little more info on where to go after it is up and running...
    I downloaded the client for NT and I would like to access the Linux box using OEM from a Win2000 laptop however I really have no clue what I am doing and how to make this happen can someone please point me to a tutorial simular to the install tutorial I found?
    Thanks
    [email protected]

    You need to install OEM on your Windows box. From there go to your OEM configuration assistant in the start menu. Run it and point it to one of your instances on your DB server. You must provide a user name and password for the DB it will then connect and build a repository for OEM. After that run the OEM console application and connect to OEM using sysman for your login and oem_temp as your password. This should get you going.

  • Here's a very basic question about 2 TB external drives and Time Machine.

    Here's a very basic question about 2 TB external drives and Time Machine.
    Ihave a Mac Pro with a .75 TB and 1 TB drive.  It also has a 1 TB 2ndinternal drive.  My current external drive is too small so I'll begetting a 1.5 TB or 2 TB drive.
    Obviouslythe new larger 2 TB drive will backup everything on the Mac Prointernal drive with Time Machine.  But there will be 1 TB of space leftover going to waste.
    ShouldI partition the external drive so that the TM portion will be 1 TB andthe use the remaining extra partition for additional file backups withCarbon Copy?
    Thanks for any insights.
    I tried searching around on the new Apple discussion forum, but I find it much harder to use than the old forum I used to use.

    The problem with terabyte drives is that that a 3 TB is about as big as you can get without going into RAID territory. Ideally, a Time Machine drive should be 3 times as large as all the drives you are backing up. So, if you have 2.75 TB of internal storage, you should have 8 TB of Time Machine space.
    Of course, that is "should". If your TB drives are mostly empty, then you can get away with something 3 times the size of your used disk space. Just remember that you are pushing it. Linc is right about Time Machine needing space to work.
    It is unlikely that you have regular churn on 2.75 TB of disk. I suggest identifying which drives and folders have the most activity and excluding those drives and directories that don't change much. It would be better to archive the data that doesn't change often and keep it out of Time Machine. Then you may be able to get away with a 2 TB Time Machine drive.

  • Question about 2 TB external drives and Time Machine.

    Here's a very basic question about 2 TB external drives and Time Machine.
    I have a Mac Pro with a .75 TB and 1 TB drive.  It also has a 1 TB 2nd internal drive.  My current external drive is too small so I'll be getting a 1.5 TB or 2 TB drive.
    Obviously the new larger 2 TB drive will backup everything on the Mac Pro internal drive with Time Machine.  But there will be 1 TB of space left over going to waste.
    Should I partition the external drive so that the TM portion will be 1 TB and the use the remaining extra partition for additional file backups with Carbon Copy?
    Thanks for any insights.
    I tried searching around on the new Apple discussion forum, but I find it much harder to use than the old forum I used to use.

    John,
    I'm not sure why you posted in the iMac forum so I'm going to attempt to get you to the correct spot. I would recommend reposting in the Time Machine Forum, this is part of the OS X forums (Leopard or Snow Leopard) because you are using Snow Leopard (your profile indicates you are) please click Apple Support Communities and type Snow Leopard. Then you can narrow the search down by clicking Refine this List.
    Roger

  • Creating a directory on a remote machine using a UNC path

    Hi all,
    Is it possible to create a directory on a remote machine using a UNC path such as \\Server\Share\Directory?
    If so, how would i go about this? (Sorry for the newbie question, that's exactly what I am!)
    Thanks,
    Rob

    The tables on your pages are images. Not very convenient if the visitor wants to copy the information and use it.
    Read this how to use tables :
    http://www.wyodor.net/blog/archives/2010/01/entry_297.html
    http://www.wyodor.net/blog/archives/2010/01/entry_298.html
    Samples :
    http://www.wyodor.net/mfi/Maaskant/Seabreeze.html
    http://www.wyodor.net/mfi/Maaskant/Experiment.html
    http://www.wyodor.net/mfi/roodhout/Prices.html
    And here's a non-iWeb page with a sortable table :
    http://www.wyodor.net/htmlegg/TallCard/TallAjax.html?pg=tablesorter
    Or use a database on the server with MySQL and make tables with PHP :
    http://www.google.com/search?q=create+html+table+with+data+from+mysql+database
    Here's a very simple way to do it :
    http://home.wyodor.net/w3school

Maybe you are looking for