[flexcoders] Re: Embedded Jetty6 or 7 server

2009-10-30 Thread jgamacheteam345
Hi Folks, Sorry to reply to such an old thread, but I need some help! I downloaded this quickstart and am trying to get the Start.java to run IN ECLIPSE. I seem to be hopelessly stuck and would appreciate a step by step (yes, for idiots!) if anyone has such running. I am using jetty 6 as

[flexcoders] Re: Embedded Jetty6 or 7 server

2008-08-12 Thread robin bakkerus
Hi Josh, Ok, the other way around, but do you have an example how to that. thanks in advance robin --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Air can't listen to sockets, nor can it spawn external programs. You'd have to have a Java program with embedded Jetty

Re: [flexcoders] Re: Embedded Jetty6 or 7 server

2008-08-12 Thread Josh McDonald
Well, you'd have to figure out a way to have either your Java app or your AIR app not appear in the task bar or dock, but besides that I imagine you could just use java.lang.System.exec() That's about all the help I can be with this though, I haven't done it :) -Josh On Tue, Aug 12, 2008 at

Re: [flexcoders] Re: Embedded Jetty6 or 7 server

2008-08-12 Thread Anatole Tartakovsky
Robin, There are 2 ways this can be done - none is pretty. 1.You can navigateToFile - based on the mime type OS will open appropriate programe (Word for doc, etc and hopefully java for class). Needless to say it is error prone and configuration dependent. 2. You need binary component that would

Re: [flexcoders] Re: Embedded Jetty6 or 7 server

2008-08-12 Thread Ryan Gravener
I wrote a quickstart on combining blazeds, flex, jetty, spring, wicket, and hibernate: http://ryangravener.com/wordpress/?p=21 as for embedded jetty server: http://wicket-flex-blazeds.googlecode.com/svn/trunk/myproject-core/src/test/java/org/myproject/Start.java Hope this helps. On Tue, Aug

[flexcoders] Re: Embedded Jetty6 or 7 server

2008-08-11 Thread robin bakkerus
Hi Anatole, But that is not an embedded server! What i want is to make an AIR application that can easily communicate with (existing) Java code (hence BlazeDS), but without the need to start a server. Well you start a server but automatically 'under water'. But then i how to start this server?,

Re: [flexcoders] Re: Embedded Jetty6 or 7 server

2008-08-11 Thread Josh McDonald
Air can't listen to sockets, nor can it spawn external programs. You'd have to have a Java program with embedded Jetty which then loads your AIR app. -Josh On Tue, Aug 12, 2008 at 3:07 PM, robin bakkerus [EMAIL PROTECTED]wrote: Hi Anatole, But that is not an embedded server! What i want is