RE: [flexcoders] Channel.Connect.Failed

2006-11-07 Thread Cathy Reilly
The context-root is not specified correctly. The context-root is not a path on the server. This issue and the resolution and discussed in the following tech note - http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=e329643d - Cathy From: flexcoders@yahoogroups.com

RE: [flexcoders] Installing Data services 2

2006-11-06 Thread Cathy Reilly
There are links for installation included in the article under 'Installation' - http://www.adobe.com/devnet/flex/articles/helloworld.html It is not necessary to install Flex Data Services to run that example. - Cathy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] to invoke RemoteObjects

2006-11-06 Thread Cathy Reilly
This issue and the resolution and discussed in the following tech note - http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=e329643d - Cathy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Juan Carlos B²Sent: Monday, November 06, 2006 11:45 AMTo:

RE: [flexcoders] Is it possible to setup polling amf over HTTPS?

2006-11-02 Thread Cathy Reilly
What's the channel type and endpoint for a HTTPS polling amf channel??? The differences in the definition between the AMF channels and the polling AMF channels are the 'polling-enabled' and 'polling-interval-seconds' properties. Here's an example that should get you started -

RE: [flexcoders] FDS Method Fill and List of parameters

2006-11-02 Thread Cathy Reilly
Here's an example when using Hibernate Named Queries. If I defined the following query in pet.hbm.xml, query name="owner.by.pet.name"select pet.owner from Pet as pet where pet.name=?/query Then my fill operation requires a single parameter to be supplied. This is the value for the

RE: [flexcoders] Installing FDS As Win2003 WebService

2006-11-01 Thread Cathy Reilly
The development version of JRun included with FDS does not include the Windows Service functionality. If you require this functionality, you may download JRun from the Adobe web site and deploy the FDS wars. - Cathy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] When the assembler classes are instantiated and destroyed?

2006-11-01 Thread Cathy Reilly
So my questions are: the assembler class is instantiated when theweb-app is loaded in server? Or when the client opens the application inhis browser? Or when the client tries to call a method from theassembler (e.g. fill)? And when it's destroyed? After method returns? Orit will remain

RE: [flexcoders] Accessing HTTP headers from Flex Data Services

2006-10-30 Thread Cathy Reilly
The JSP solution is a Flex 1.x solution. If you're using Flex 1.x, here's an alternative to the jsp option below, Note: The above seems to require a compile for every request for the page. With a minor modification to the code, you can eliminate the above issue - the flashvars are

RE: [flexcoders] FDS 2.0

2006-08-18 Thread Cathy Reilly
Per the license, 1.9"Per-CPU" The total number of CPUs on the Computers used to operate the Software may not exceed the licensed quantity of CPUs. For purposes of this definition, all CPUs on a Computer on which the Software is installed shall be deemed to operate the Software unless

RE: [flexcoders] newbie question - HTTP servive

2006-08-18 Thread Cathy Reilly
In Flex 2, you need to use 'event.lastResult' - Cathy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robin BurrerSent: Thursday, August 17, 2006 9:59 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] newbie question - HTTP servive Hi there, I started

RE: [flexcoders] A bug with flash player 9??

2006-07-27 Thread Cathy Reilly
Is it possible that you're running into an issue with the new version of IE? http://www.adobe.com/devnet/activecontent/ You don't mention how your html wrapper is generated. If you're using FB 2, FDS 2 Web Tier Compiler, or the html-templates that ship with Flex 2 SDK, then you've correctly

RE: [flexcoders] FDS sporadically works, but why?

2006-07-26 Thread Cathy Reilly
This information is available in services-config.xml. Check the endpoint which you're exposing, in particular, you'll probably have to add the rtmp port, if you're using that channel. - Cathy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Using taglib in JSPs

2006-07-20 Thread Cathy Reilly
The tag library feature is not available in Flex 2. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joonha Lee Sent: Wednesday, July 19, 2006 10:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Using taglib in JSPs I am not found

RE: [flexcoders] compilation error?

2006-07-19 Thread Cathy Reilly
Check your /WEB-INF/flex/services-config.xml file (or one of the files referenced in the services-config.xml service-include section) for the error. - Cathy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ryanharlin Sent: Wednesday, July 19,

RE: [flexcoders] Re: Running Flex Data Services apps outside of the server root/flex/ dir

2006-07-19 Thread Cathy Reilly
when referencing mxml files that is, prompts us to download the mxml file whichever application that includes the mxml file, must have a definition of the servlet and a servlet mapping for *.mxml what you're trying to do, should be possible but will take some work to get the correct

RE: [flexcoders] Undeploying Data Services Project

2006-07-18 Thread Cathy Reilly
I'm not sure what type of log file entries you're seeing for the RedeployManager so I'm not sure what errors you're encountering. However,RedeployManager isn't a critical piece of FDS and can be disabled through services-config.xml. If you disable this functionality, you'll need to

RE: [flexcoders] HTTPS and Remote passwords

2006-07-13 Thread Cathy Reilly
One thing I noticed, class=flex.messaging.endpoints.AMFEndpoint - class=flex.messaging.endpoints.SecureAMFEndpoint - Cathy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Thursday, July 13, 2006 10:11 AM To:

RE: [flexcoders] Remote JNDI server

2006-07-13 Thread Cathy Reilly
I've detailed troubleshooting information for this situation on the Adobe forums. In particular, you'll want to create a jndiTest.jsp which works for your situation. Once you have that running, you'll know which properties to use in the initial-context-environment as well as the message

RE: [flexcoders] Flex2.0 'ANY_HOST_CONFIGURATION'

2006-06-30 Thread Cathy Reilly
We haven't seen this issue before. Based on the information that you've provided, I might suspect that the flex.war's version of commons-httpclient.jar isn't getting used but rather a different version of that jar in your classpath. - which application server are you running? - are you running

RE: [flexcoders] macromedia.css.LocatorParser Problem

2006-06-28 Thread Cathy Reilly
This Beta 3 issue will be fixed in the final version. In the meantime, Flex 2b3 should be run in its own VM separate from Flex 1.x and prior betas. Again, this will be fixed and these restrictions will be lifted. - Cathy -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] install Flex Data Services 2 Beta 3 as a J2EE web application: JONAS

2006-06-28 Thread Cathy Reilly
Great! Adding this note for others who may be encountering similar issues - To simplify configuration, if FDS and your JMStopics/queues/destinationsare running in the same enterprise application, you should not need to specify the initial-context-environment for your destination. FDS

RE: [flexcoders] Integrated JRun Axis Deployment..

2006-06-27 Thread Cathy Reilly
Before adding Flex to the mix, recommend that you get Apache Axis 2 running in a web app on the JRun server. Once that's running successfully, add Flex 2 to the mix. Some settings in /WEB-INF/jrun-web.xml, which you may find useful -

RE: [flexcoders] Using JMS Adapter: 'javax.naming.NamingException unknown protocol : joram.

2006-06-27 Thread Cathy Reilly
of these properties (Context.INITIAL_CONTEXT_FACTORY,Context.PROVIDER_URL)? I will try to test my jms topic using the jsp code you give me. -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Cathy Reilly Envoyé : lundi 26 juin 2006 17:08 À : flexcoders

RE: [flexcoders] Using JMS Adapter: 'javax.naming.NamingException unknown protocol : joram.

2006-06-26 Thread Cathy Reilly
Here's my advice on troubleshooting the issue. In flex-enterprise-services.xml (may be called services-config.xml depending on which prerelease you're using), enable logging and the debug level and check your server console for errors. Another thing that might be helpful is ensure that you can