RE: [flexcoders] flex2gateway error

2010-08-19 Thread Battershall, Jeff
It could very well be that your request response time is exceeding the default time out for Remote Objects, but I'm not sure about app not working *at all* after that. This can create the intermittent behavior you're seeing, depending on load or query response time from the app's database. In

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Mary Jo Sminkey
It could very well be that your request response time is exceeding the default time out for Remote Objects, but I'm not sure about app not working **at all** after that. This can create the intermittent behavior you're seeing, depending on load or query response time from the app's database.

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Wesley Acheson
I think Charles Proxy may be useful for you to diagnose these problems. Also take a look at your server log. What server technology are you using? PHP? Apache? Generally when we see these types of fault they appear as a 500 response from the server. Have you stepped thorough your server side

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Mary Jo Sminkey
I think Charles Proxy may be useful for you to diagnose these problems. Okay, not familiar with it, but I'll look into it. Also take a look at your server log. Which one? Nothing appears to get written to any of the CF server logs when I hit the application, I don't see any errors in

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Wesley Acheson
Okay in a default apache install there is a request log. Take a look at that when you see the error on screen and make sure theres no lines ending in 500 (most lines should be 100, 200) Charles proxy is used for debugging what data is sent over the wire via amf. Regards, Wesley On Thu, Aug

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Mary Jo Sminkey
On 8/19/2010 2:43 PM, Wesley Acheson wrote: Charles proxy is used for debugging what data is sent over the wire via amf. Okay, downloaded and installed Charles, thanks for the suggestion, looks like a very useful tool. And I found out from it that the problem seems to be that the call to

RE: [flexcoders] flex2gateway error

2010-08-19 Thread Battershall, Jeff
...@yahoogroups.com] On Behalf Of Mary Jo Sminkey Sent: Thursday, August 19, 2010 3:30 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] flex2gateway error On 8/19/2010 2:43 PM, Wesley Acheson wrote: Charles proxy is used for debugging what data is sent over the wire via amf. Okay, downloaded

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Wesley Acheson
On Thu, Aug 19, 2010 at 9:30 PM, Mary Jo Sminkey mar...@dogpatchsw.comwrote: So any clue how to disable it in this situation?? Does flex4 still have channel config and remoting config? If so could you post them? Your communication channels should be listed there I think.

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Mary Jo Sminkey
I would think that if you clean your project and re-compile it will remove Network Monitor. Clearing any and all browser caches would be recommended also to ensure you're running the re-compiled version. Oh, I've done many cleans and recompiles trying to get past the error, that doesn't

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Mary Jo Sminkey
On 8/19/2010 3:38 PM, Wesley Acheson wrote: Does flex4 still have channel config and remoting config? If so could you post them? Your communication channels should be listed there I think. There doesn't seem to be a channel config, and I'm not seeing anything in the remoting config that

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Mary Jo Sminkey
: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com [mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com] On Behalf Of Mary Jo Sminkey Sent: Thursday, August 19, 2010 3:30 PM To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com Subject: Re: [flexcoders

Re: [flexcoders] flex2gateway error

2010-08-19 Thread Mary Jo Sminkey
Got it fixed! Found the bug report on the Flex Jira site that included instructions for fixing it. Was indeed the Network Monitor causing the problem. Here's the link in case anyone else runs across this: https://bugs.adobe.com/jira/browse/FB-27235 Thanks for the help in finding this. ---

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread João Fernandes
Sherif, can you try to point it directly to the cfserver port instead apache port 80? http://mysitename. com:{CFServerPortNumber}/flex2gateway/cfamfpolling and see if it throws the same error? -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org Portugal Adobe User Group

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
How do I know what the CFServerPortNumber is? THanks - Original Message From: João Fernandes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 12:11:19 PM Subject: Re: [flexcoders] flex2gateway Error Sherif, can you try to point it directly to the cfserver

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
Actually, I tried it and no i still get a 404 page Error and it doesnt connect. - Original Message From: Sherif Abdou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 12:14:03 PM Subject: Re: [flexcoders] flex2gateway Error How do I know what

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread João Fernandes
check if in your web.xml ( under {cfusionInstance}/WEB-INF/ ) you have the flex2gateway mapping listed !-- Flash Remoting/Flex mapping -- servlet-mapping id=coldfusion_mapping_0 servlet-nameMessageBrokerServlet/servlet-name url-pattern/flex2gateway/*/url-pattern

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
Yes I Do. - Original Message From: João Fernandes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 1:33:26 PM Subject: Re: [flexcoders] flex2gateway Error check if in your web.xml ( under {cfusionInstance} /WEB-INF/ ) you have the flex2gateway mapping

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
Do you think PHP is blocking it? - Original Message From: Sherif Abdou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 2:04:31 PM Subject: Re: [flexcoders] flex2gateway Error Yes I Do. - Original Message From: João Fernandes

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread João Fernandes
If you try to make your app to load directly from the ColdFusion instance instead of Apache, PHP wouldn't be able to interfere in the process. Check server logs to see if there was any problem to load the MessageBrokerServlet. -- João Fernandes http://www.onflexwithcf.org

Re: [flexcoders] flex2gateway Error

2008-07-07 Thread Sherif Abdou
No it is loaded it says MessageBrokerServlet:init - Original Message From: João Fernandes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 7, 2008 3:07:28 PM Subject: Re: [flexcoders] flex2gateway Error If you try to make your app to load directly from

RE: [flexcoders] flex2gateway error, Coldfusion and Flex intergration

2006-08-18 Thread João Fernandes
That '/flex2gateway/index.cfm' path is weird. Have you created a /flex2gateway folder? Can you share your remoteobject definition + your services-config.xml ? Joo Fernandes From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Justin