[flexcoders] Flex and BlazeDS in internet environment

2008-10-07 Thread Joshua Partogi
Dear all, Do we have to change our code regarding the BlazeDS usage when we deploy it in internet environment? In my dev environment we use this as the RemoteObject enpoint : endpoint=http://localhost:8080/messagebroker/amf; Do we have to change the URL? Anyone has any experience on this?

Re: [flexcoders] Flex and BlazeDS in internet environment

2008-10-07 Thread Tom Chiverton
On Tuesday 07 Oct 2008, Joshua Partogi wrote: endpoint=http://localhost:8080/messagebroker/amf; Do we have to change the URL? Do you expect 'localhost' to resolve to the correct thing for your users, on their machines ? -- Tom Chiverton Helping to dynamically restore distributed networks

Re: [flexcoders] Flex and BlazeDS in internet environment

2008-10-07 Thread Ryan Gravener
So long as your using flex and not air you can do this: endpoint url=http://{server.name}:{server.port}/{context.root}/messagebroker/streamingamf; class=flex.messaging.endpoints.StreamingAMFEndpoint/ Ryan Gravener http://twitter.com/ryangravener On Tue, Oct 7, 2008 at 10:53 AM, Tom Chiverton