RE: [flexcoders] FDS sitting behind SSL accelerator

2007-03-27 Thread Allen Riddle
We set up our environment similar to yours. We are using apache with
mod_ssl and proxypass to route requests our flex client makes over ssl
to our flex data services app. In the flex configuration, your default
channels must be the secure channels (my-secure-http, or my-secure-amf)
and you must route your requests behind the firewall over ssl. This is
because the packet itself that is being sent up by the flex client is
encrypted. There isn't much out there on this yet, as I'm sure there
will be. The kicker is, just because the swf gets served up over https,
doesn't mean that the requests being made are over ssl, pretty bad.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of box110a
Sent: Tuesday, March 27, 2007 11:03 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] FDS sitting behind SSL accelerator

 

We're working on our production environment design and would like to
put FDS behind an SSL accelerator (H.A.) like nCipher's nFast or a
BIG-IP server. We haven't purchased any hardware yet, so a proof of
concept will require something like apache/mod_jk/mod_ssl. Has anybody
had any success doing this with FDS.

What I can't figure out is how do I set up my
data-managment-config.xml destination channels?  If my FDS server is
sitting in the DMZ talking plain text, how do I get my clients to talk
SSL if they are compiled (by FDS) if they're using the same config
files?

so It should look like this:
[client] -ssl-> [H.A. & passthrough to DMZ] -plain text-> FSD


any thoughts? 

 



[flexcoders] OS X Dock implemented in Flex

2007-03-23 Thread Allen Riddle
Hey everyone, my coworker created an OS X dock in Flex for our use in
our application. He just posted it on his web site. If enough people dig
it, he's going to post the code so everyone can partake. Check it out.

 

http://www.timothyhuertas.com <http://www.timothyhuertas.com/> 

 

 

Allen Riddle

Sofware Development

x3217

 



RE: [flexcoders] Address Search API

2007-03-12 Thread Allen Riddle
Here at work, we use an address standardization web service from a
company called CDyne. It's very good, and the SOAP interface is very
simple. They've also got some other cool web services.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Kevin
Sent: Sunday, March 11, 2007 10:48 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Address Search API

 

I am looking for a good a good Address Search Webservice or API (much 
like the Yahoo Local Search) to use within a commercial Flex 
application. Unfortunately, the Yahoo Local is only available for 
non-commercial apps/websites. I am wondering if anyone out there 
utilizing something like this (or USPS Address Verification) in their 
Flex Applications.

I was very excited to see Yahoo releasing the Flex 2 API's only to 
find out that the ones I need are for non-commercial use.

Thanks!

- Kevin

 



RE: [flexcoders] Flex Data Services Question, Java backend

2007-03-10 Thread Allen Riddle
You could use Flex's JMS messaging capabilities. Check out the
messaging-config.xml and check out the  component. I still
haven't used the Data Management services with Data Services, but if the
new data is coming from a source other than your Flex app, I think using
the Flex messaging may be the way.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of bruce1976
Sent: Friday, March 09, 2007 4:48 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Data Services Question, Java backend

 

Hi,

I want my Flex clients to be notified when new data is available. The
data is read-only, so the Flex clients won't be updating it, they just
need to display it. When the data is ready to be viewed, I have a Java
backend that can send an HTTP post to any endpoint, but I'm having
trouble determining which FDS component I should use.

Of course, the Flex client can't receive the POST, and I don't mind
putting a mini-HTTP server on the same tier as the FDS, but I'm not
sure how to notify the clients.

Does anyone have any suggestions?

Thanks,

Bruce

 



[flexcoders] Purpse of "default-channels"

2007-03-02 Thread Allen Riddle
Hello all, I am curious about the meaning of "default-channels" in the
proxy-config.xml. I was under the assumption I could set up the
channels, and fail over would occur based on the channel that is being
used. For example, if I want to run SSL on production, but not while
developing, could I have:

 



   

   

   

   



 

I would think that the secure channels would only get used if you're
sending to port 443, vs: 80. It doesn't appear to work like that though.

 

Allen Riddle

Sofware Development

x3217

 



RE: [flexcoders] Flex not sending over SSL

2007-02-28 Thread Allen Riddle
We are using the Proxy Services, so those destinations are set up using
http. We are using web and app server pairs. Apache is the web server
serving up the swf on port 443. We route requests the the swf makes
(rootContext/messagebroker/http requests) to the app server, which is
our data services app. At that point, the requests should be decrypted
before it hits the app server and I would think it would be able to
handle that endpoint destination being over http.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Karl Johnson
Sent: Tuesday, February 27, 2007 3:04 PM
To: flexcoders@yahoogroups.com; flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex not sending over SSL

 

Are you sure that the wsdl path you have specified on the webservice
object is relative and not hardcoded to use http? Also, open your WSDL
in the browser and make sure it is not returning a method URL to the
Flash Player with HTTP hardcoded in it.

 

Karl

Cynergy

 

Shameless Plug:

Come see us at AJAXWorld next month! Several Cynergy employees,
including myself, will be presenting on great Flex topics. Don't miss
it!

 



From: flexcoders@yahoogroups.com on behalf of Allen Riddle
Sent: Tue 2/27/2007 2:57 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex not sending over SSL

Hello all, we are setting up our production environment for our Flex
Data Services app. According to the Apache logs, all requests that the
swf makes for images,css, etc is in fact going over ssl. However when
the .swf invokes a  web service (using proxy endpoints/destinations),
the request is using "/messagebroker/http", and does not appear to be
going over ssl (we know this because there is no ssl or tsa entry on the
line in the log file, as there is for images and css files). If the swf
is being served up on 443, shouldn't all communication through the swf
be going over port 443. I guess another way to ask is, do the requests
from the swf use relative pathing, and by default be going over
https/443? I hope I'm explaining the problem well enough. Thanks.

 

Allen Riddle

Sofware Development

x3217

 

 



[flexcoders] Flex not sending over SSL

2007-02-27 Thread Allen Riddle
Hello all, we are setting up our production environment for our Flex
Data Services app. According to the Apache logs, all requests that the
swf makes for images,css, etc is in fact going over ssl. However when
the .swf invokes a  web service (using proxy endpoints/destinations),
the request is using "/messagebroker/http", and does not appear to be
going over ssl (we know this because there is no ssl or tsa entry on the
line in the log file, as there is for images and css files). If the swf
is being served up on 443, shouldn't all communication through the swf
be going over port 443. I guess another way to ask is, do the requests
from the swf use relative pathing, and by default be going over
https/443? I hope I'm explaining the problem well enough. Thanks.

 

Allen Riddle

Sofware Development

x3217

 



RE: [flexcoders] any interest in an alternative to QTP to automate Flex apps?

2007-02-07 Thread Allen Riddle
I've posted on here before about this topic. I think this is something
that lacks in the Flex community. Just curious if you or your company
have looked at a product called imacros. I downloaded the demo and it
was pretty decent. It's a lot cheaper than QTP. It also lets you script
out tests. I've also wondered if it was possible to get Ruby's Watir
tool to work with Flex, that would be my first choice if so. Cool
suggestion, we'd use it.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Simeon Bateman
Sent: Wednesday, February 07, 2007 3:56 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] any interest in an alternative to QTP to
automate Flex apps?

 

I am interested in this.  I had been playing with the thought of using
the FA Bridge to allow you to use Selenium to test your applications.
Then you could use the Firefox plugin to record our actions and test the
movie.

Not sure how feasible it is but even that would start with having a
testing framework in flex to tie into.


simeon

On 2/7/07, brian.knorr <[EMAIL PROTECTED]
 > wrote:


Automating functional tests is critical to the way we develop software
at my company. And there are two big things that stop us from using QTP.

1) It's record and playback - we want to write test scripts
2) It costs a lot of money - we want a tool that is free and community
driven

At my company we are writing several applications in Flex2 and are
building out an as3 library that allows us to write test scripts in
as3 to drive the Flex ui as if the user was interacting with it. If
you are familiar with the Java Swing testing tool called Jemmy, it's
very similar in design.

Is there any interest out there for a tool like this? I am about to
create a sourceforge project, but first wanted to get a feel for the
need.

Thanks,

Brian

 

 



[flexcoders] Wrapper file when using Web Tier compiler

2007-02-01 Thread Allen Riddle
Is it possible to modify the wrapper html file itself when compiling on
the server using FDS (web tier compiler)? We were able to modify the
wrapper file when just using flex builder to create our swf's, but once
we switched to DataServices we can't get it to pick up our changes. Has
anybody done this? Thanks.

 

Allen Riddle

Sofware Development

x3217

 



RE: [flexcoders] Re: Result from webservice?

2007-01-29 Thread Allen Riddle
If you're hooked into the result handler of the web service, you should
be able to say: event.result. Or you also have the option to it directly
through the bound instance using : serviceName.operationName.lastResult.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of wayne_badu_johnson
Sent: Monday, January 29, 2007 6:38 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Result from webservice?

 

Hi Sanjay

Try using: 
trace(ObjectUtil.toString(result));

Cheers
Wayne

--- In flexcoders@yahoogroups.com 
, "sanjaypmg" <[EMAIL PROTECTED]> wrote:
>
> Hi,
> 
> I am using webservices to get data.
> 
> I have made a simple webservice in Java which returns a 
simple "Hello 
> world" and called it in flex in return I am not getting it by 
using 
> result.target.toString();
> 
> I can display the result by using messaging as an XML Item.
> 
> Please tell me is there any alternate or simple way to show the 
return 
> value?
> 
> Thanks,
> Sanjay
>

 



RE: [flexcoders] Re:Do I *REALLY* need Flex Data Services for WebServices?

2007-01-29 Thread Allen Riddle
Before we made the switch to use FDS, we created a Java servlet filter
that would intercept all responses and change a 500 code to a 200, after
you do that, you will have access to the entire soap fault. This can be
done in .NET pretty easily as well if you're on the .NET platform.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Dima Gutzeit
Sent: Monday, January 29, 2007 10:51 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re:Do I *REALLY* need Flex Data Services for
WebServices?

 

In case of webservices, you can see some generic fault, but not the
cause that is being sent with the web fault.

 

 

- Original Message - 

From: Charles Havranek   

To: flexcoders@yahoogroups.com
  

Sent: Monday, January 29, 2007 4:07 PM

Subject: [flexcoders] Re:Do I *REALLY* need Flex Data Services
for WebServices?

 

Greg,  

Without Flex Data Services, I do get the basic error code &
message , but have to look at server logs to see stack traces.

 



[flexcoders] Still can't debug

2007-01-22 Thread Allen Riddle
Hello all, I posted a similar thread a long time ago, but this is a big
problem. Once I made my app a data services app that is compiled on the
server, I lost the ability to debug. My breakpoints are either skipped,
or it bombs out telling me the source I'm trying to debug is different
from what is being executed. I'm using Eclipse WEB tools (with tomcat)
to run the FDS app as a Web Project. Can anybody debug a server side
compiled FDS app that is on Tomcat?

 

Allen Riddle

Sofware Development

x3217

 



RE: [flexcoders] Re: Annoying problem - urgent!!!

2007-01-18 Thread Allen Riddle
If you're web project that the flex app is running in, is in Eclipse,
try hitting Refresh (F5) on your web project in Eclipse.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Geoffrey Williams
Sent: Thursday, January 18, 2007 10:24 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Annoying problem - urgent!!!

 

Did you try a Project > Clean...?

--- In flexcoders@yahoogroups.com 
, "Lieven Cardoen" 
<[EMAIL PROTECTED]> wrote:
>
> I have a really annoying problem. If I run or debug my flex 
application,
> it keeps on giving me a version of yesterday. Flex won't compile a 
new
> swf...
> 
> 
> 
> Lieven Cardoen
> 
> 
> 
> Lieven Cardoen
> Application developer
> 
> indiegroup
> interactive digital experience
> engelse wandeling 2 k18 
> b8500 kortrijk
>

 



RE: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Allen Riddle
I got that all the time, even with 2.0.0. I had to switch to the stand
alone Flex Builder. That plugin is buggy.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Douglas Knudsen
Sent: Tuesday, January 16, 2007 1:58 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Flex Builder 2.0.1 the update !

 

using the FDS plugin and Tomcat hereI get out-of-memory errors and
eclipse crashing often

DK

On 1/16/07, Allen Riddle < [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> > wrote:

I don't think so; I'm running mine on Tomcat, with no embedded fonts.
And is slower than dirt. The fact that it wasn't slow on 2.0.0 tells us
something changed in the compilation process, and hopefully isn't
environment related.

 



From: flexcoders@yahoogroups.com <mailto:flexcoders@yahoogroups.com>
[mailto: flexcoders@yahoogroups.com <mailto:flexcoders@yahoogroups.com>
] On Behalf Of Cato Paus
Sent: Tuesday, January 16, 2007 1:14 PM
To: flexcoders@yahoogroups.com <mailto:flexcoders@yahoogroups.com> 
Subject: [flexcoders] Re: Flex Builder 2.0.1 the update !

 

Hi All :) I have the Build Automatic set to off, end i have tried to 
delete the embeded fonts in my css, but Flex stil going slow, could 
it have somthing to do with that I'm running on fds2 and compailing 
to a JRun4 server ? 

--- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com>
, "Rick Schmitty" <[EMAIL PROTECTED]> 
wrote:
>
> Do you have embeded fonts in your application?
> 
> I was experiencing the same slowdown after upgrading to flex 
2.0.1. I
> had 2.0 installed, updated to 2.0.1, then ran the clean command 
prior
> to opening flex. It was still slow.
> 
> Saw the blog about closing projects, closed everything but the one 
I'm
> working on, still slow
> 
> Deleted all projects and created a blank application, super fast.
> Ok... so must be something in my project... started hacking away at
> the files until I came down to the fonts.
> 
> This took almost 20seconds (on my machine) to compile
> 
> 
> http://www.adobe.com/2006/mxml
<http://www.adobe.com/2006/mxml> ">
> 
> 
> 
> @font-face {
> src: url("/assets/fonts/ARIAL.TTF");
> fontFamily: myArial;
> } 
> @font-face {
> src: url("/assets/fonts/BKANT.TTF");
> fontFamily: myBkant;
> } 
> @font-face {
> src: url("/assets/fonts/TAHOMA.TTF");
> fontFamily: myTahoma;
> } 
> @font-face {
> src: url("/assets/fonts/TIMES.TTF");
> fontFamily: myTimes;
> } 
> @font-face {
> src: url("/assets/fonts/TREBUC.TTF");
> fontFamily: myTrebuc;
> }
>  
> 
> 
> 
> 
> Deleting the style tag for a blank appliaction, it compiled 
immediately 1-1.5sec
> 
> 
> Here is what's going on (or so I think)
> 
> "FlashType support
> 
> FlashType is the text rendering engine introduced in Flash Player 8.
> It improves the readability of text, especially at smaller font 
sizes.
> To leverage the FlashType engine in Flex 2, you had to create a SWF
> that embedded a particular font using the Flash authoring tool, and
> then embed that SWF file in your Flex application. With Flex 2.0.1,
> the mxmlc compiler can now embed a font using the FlashType engine
> directly, eliminating a step for many developers."
> 
> 
> So I'm back to running fast as long as I dont embed fonts via css,
> I'll reenable it when I need to publish a working version (or look
> into creating the SWF file on my own and not use CSS)
> 
> 
> On 1/16/07, Tom Chiverton <[EMAIL PROTECTED]> wrote:
> > On Tuesday 16 January 2007 08:19, pauscato1 wrote:
> > > I have only one project running in my flex builder, this is 
realy
> > > anoing it uses 20% of my day.
> >
> > Have you got auto-compilation turned off ?
> >
> > --
> > Tom Chiverton
> > Helping to heterogeneously incubate robust meta-services
> >
> > 
> >
> > This email is sent for and on behalf of Halliwells LLP.
> >
> > Halliwells LLP is a limited liability partnership registered in 
England and Wales under registered number OC307980 whose registered 
office address is at St James's Court Brown Street Manchester M2 
2JF. A list of members is available for inspection at the registered 
office. Any reference to a partner in relation to Halliwells LLP 
means a member of Halliwells LLP. Regulated by the Law Society.
> >
> > CONFIDENTIALITY
> >
> > This email is intended only for the use of the addressee named 
above and may be confidential or legal

RE: [flexcoders] Re: Flex Builder 2.0.1 the update !

2007-01-16 Thread Allen Riddle
I don't think so; I'm running mine on Tomcat, with no embedded fonts.
And is slower than dirt. The fact that it wasn't slow on 2.0.0 tells us
something changed in the compilation process, and hopefully isn't
environment related.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Cato Paus
Sent: Tuesday, January 16, 2007 1:14 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex Builder 2.0.1 the update !

 

Hi All :) I have the Build Automatic set to off, end i have tried to 
delete the embeded fonts in my css, but Flex stil going slow, could 
it have somthing to do with that I'm running on fds2 and compailing 
to a JRun4 server ? 

--- In flexcoders@yahoogroups.com 
, "Rick Schmitty" <[EMAIL PROTECTED]> 
wrote:
>
> Do you have embeded fonts in your application?
> 
> I was experiencing the same slowdown after upgrading to flex 
2.0.1. I
> had 2.0 installed, updated to 2.0.1, then ran the clean command 
prior
> to opening flex. It was still slow.
> 
> Saw the blog about closing projects, closed everything but the one 
I'm
> working on, still slow
> 
> Deleted all projects and created a blank application, super fast.
> Ok... so must be something in my project... started hacking away at
> the files until I came down to the fonts.
> 
> This took almost 20seconds (on my machine) to compile
> 
> 
> http://www.adobe.com/2006/mxml
 ">
> 
> 
> 
> @font-face {
> src: url("/assets/fonts/ARIAL.TTF");
> fontFamily: myArial;
> } 
> @font-face {
> src: url("/assets/fonts/BKANT.TTF");
> fontFamily: myBkant;
> } 
> @font-face {
> src: url("/assets/fonts/TAHOMA.TTF");
> fontFamily: myTahoma;
> } 
> @font-face {
> src: url("/assets/fonts/TIMES.TTF");
> fontFamily: myTimes;
> } 
> @font-face {
> src: url("/assets/fonts/TREBUC.TTF");
> fontFamily: myTrebuc;
> }
>  
> 
> 
> 
> 
> Deleting the style tag for a blank appliaction, it compiled 
immediately 1-1.5sec
> 
> 
> Here is what's going on (or so I think)
> 
> "FlashType support
> 
> FlashType is the text rendering engine introduced in Flash Player 8.
> It improves the readability of text, especially at smaller font 
sizes.
> To leverage the FlashType engine in Flex 2, you had to create a SWF
> that embedded a particular font using the Flash authoring tool, and
> then embed that SWF file in your Flex application. With Flex 2.0.1,
> the mxmlc compiler can now embed a font using the FlashType engine
> directly, eliminating a step for many developers."
> 
> 
> So I'm back to running fast as long as I dont embed fonts via css,
> I'll reenable it when I need to publish a working version (or look
> into creating the SWF file on my own and not use CSS)
> 
> 
> On 1/16/07, Tom Chiverton <[EMAIL PROTECTED]> wrote:
> > On Tuesday 16 January 2007 08:19, pauscato1 wrote:
> > > I have only one project running in my flex builder, this is 
realy
> > > anoing it uses 20% of my day.
> >
> > Have you got auto-compilation turned off ?
> >
> > --
> > Tom Chiverton
> > Helping to heterogeneously incubate robust meta-services
> >
> > 
> >
> > This email is sent for and on behalf of Halliwells LLP.
> >
> > Halliwells LLP is a limited liability partnership registered in 
England and Wales under registered number OC307980 whose registered 
office address is at St James's Court Brown Street Manchester M2 
2JF. A list of members is available for inspection at the registered 
office. Any reference to a partner in relation to Halliwells LLP 
means a member of Halliwells LLP. Regulated by the Law Society.
> >
> > CONFIDENTIALITY
> >
> > This email is intended only for the use of the addressee named 
above and may be confidential or legally privileged. If you are not 
the addressee you must not read it and must not use any information 
contained in nor copy it nor inform any person other than Halliwells 
LLP or the addressee of its existence or contents. If you have 
received this email in error please delete it and notify Halliwells 
LLP IT Department on 0870 365 8008.
> >
> > For more information about Halliwells LLP visit 
www.halliwells.com.
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 
> > Search Archives: http://www.mail-archive.com/flexcoders%
 
40yahoogroups.com
> > Yahoo! Groups Links
> >
> >
> >
> >
>

 



RE: [flexcoders] Flex Builder 2.0.1 the update !

2007-01-15 Thread Allen Riddle
I am experiencing the same thing. I created a thread on here, but didn't
get any responses. We're gonna have to revert back to 2.0.0 unless we
can figure this out.

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of pauscato1
Sent: Sunday, January 14, 2007 7:28 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Builder 2.0.1 the update !

 

Hi all, is there anyone that have notice that flex builder 2.0.1 use 
long time to building workspace hangs on about 47% to 50% and 
when you save it even uses more time. Flex builder 2 was a loot faster 
and funn to work whit. is this an issue or is it only my computer that 
sucks ?? 

Cato 

 



[flexcoders] Slow building after 2.0.1 update

2007-01-11 Thread Allen Riddle
Has anybody experienced a massive slowdown in building in the IDE? I
have a data services project that compiles on the server, but when it
builds in FlexBuilder, it has slowed down a ton. Anybody know why?
Thanks.

 

Allen Riddle

Sofware Development

x3217

 



[flexcoders] Can't get rid of error with 2.0.1 update.

2007-01-05 Thread Allen Riddle
I upgraded to the 2.0.1 update today, and now I'm getting 100+ errors
saying:

 

1172: Definition mx.binding:RepeaterComponentWatcher could not be found.
line 16

 

According the the doc, this class doesn't even exist? Anybody seen this?

 

Allen Riddle

Sofware Development

x3217

 



[flexcoders] Unable to load wsdl using Proxy Service

2006-12-01 Thread Allen Riddle
I am trying to set up my Flex app to use wsdl endpoints in the proxy
services configuration. My web services are protected by Acegi, and only
allow clients to invoke the services when the authorization cookie is
dropped on their machine. When going through the proxy services
endpoint, I get an error back because my server is trying to redirect
because it's saying I'm not authorized. So, basically, I'm asking how or
if when going through the proxy service endpoint, can does it forward
client cookies and session data to the proxy. Thanks.

 

Allen Riddle

Sofware Development

x3217

 



RE: [eDoxs PSpam]RE: [flexcoders] Messaging and serialization

2006-11-29 Thread Allen Riddle
Here is the output: both Typed Object 4 & 5 are Java 5 enums, and they
are not deserializing to anything.

 

[Flex] Serializing AMF/RTMP push

Version: 3

  (Command method=receive (0) trxId=null)

(Typed Object #0 'flex.messaging.messages.AsyncMessage')

  destination = "insightNotifierDesitnation"

  headers = (Object #1)

JMSXDeliveryCount = 1

  correlationId = null

  messageId = "ID:37-11648295333041"

  timestamp = 1.164829533304E12

  clientId = "21004143-990F-AEB2-3756-FE259714C6D8"

  timeToLive = 0.0

  body = (Typed Object #2 'com.sunbridgecapital.model.WebMessage')

to = null

modId = 0

subjectRefId = null

recordId = "70"

userId = 48

userCreationTimestamp = Wed Nov 29 13:45:35 CST 2006

message = "Your application has been approved and is Termbuilder
ready"

statusType = null

from = null

subject = (Typed Object #4
'com.sunbridgecapital.model.WebMessageSubjectType')

status = (Typed Object #5
'com.sunbridgecapital.model.ModelState')

id = 2033

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Peter Farland
Sent: Wednesday, November 29, 2006 1:20 PM
To: flexcoders@yahoogroups.com
Subject: [eDoxs PSpam]RE: [flexcoders] Messaging and serialization

 

Hi Allen,

 

Before going this far, can you try turning on "Debug" level logging in
/WEB-INF/flex/services-config.xml and ensure that only the Endpoint.*
pattern is enabled for the logging target filters?

 

I'd then clear out the logs, re-run the test, and examine the AMF
representation of the Object as it was serialized.

 

Pete

 

________

From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Allen Riddle
Sent: Wednesday, November 29, 2006 11:30 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Messaging and serialization

I have a flex app that is unable to de-serialize a JMS message
correctly. The message I'm sending is a Java object, but when Flex
de-serializes the message, aggregate objects on the message are null,
only String values there populated. Do I have to set up an action script
class and use the RemoteClass tag to get it to de-serialize the message
correctly?

Allen Riddle

Sofware Development

x3217

 



RE: [eDoxs PSpam]RE: [flexcoders] Messaging and serialization

2006-11-29 Thread Allen Riddle
Ya, I will do that. But it appears that the problem is only occurring on
Java 5 enums. My message I'm sending has an aggregate type that is an
enum. Can flex not handle the deserialization of enums?

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Peter Farland
Sent: Wednesday, November 29, 2006 1:20 PM
To: flexcoders@yahoogroups.com
Subject: [eDoxs PSpam]RE: [flexcoders] Messaging and serialization

 

Hi Allen,

 

Before going this far, can you try turning on "Debug" level logging in
/WEB-INF/flex/services-config.xml and ensure that only the Endpoint.*
pattern is enabled for the logging target filters?

 

I'd then clear out the logs, re-run the test, and examine the AMF
representation of the Object as it was serialized.

 

Pete

 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Allen Riddle
Sent: Wednesday, November 29, 2006 11:30 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Messaging and serialization

I have a flex app that is unable to de-serialize a JMS message
correctly. The message I'm sending is a Java object, but when Flex
de-serializes the message, aggregate objects on the message are null,
only String values there populated. Do I have to set up an action script
class and use the RemoteClass tag to get it to de-serialize the message
correctly?

Allen Riddle

Sofware Development

x3217

 



[flexcoders] Message Services can't handle enums

2006-11-29 Thread Allen Riddle
Can flex handle deserializing Java 5 enums?

 

Allen Riddle

Sofware Development

x3217

 



[flexcoders] Messaging and serialization

2006-11-29 Thread Allen Riddle
I have a flex app that is unable to de-serialize a JMS message
correctly. The message I'm sending is a Java object, but when Flex
de-serializes the message, aggregate objects on the message are null,
only String values there populated. Do I have to set up an action script
class and use the RemoteClass tag to get it to de-serialize the message
correctly?

 

Allen Riddle

Sofware Development

x3217

 



RE: [flexcoders] Does FDS project have to compile on the server?

2006-10-20 Thread Allen Riddle












Thanks for your help. I do have the entry
pointed to my services-config.xml file, and application is even able to find my
Data Service destination (in this case, it’s a Hibernate entity). But
when I try to call the fill method, I get:

 

[RPC Fault faultString="Send
failed" faultCode="Client.Error.MessageSend"
faultDetail="Channel.Connect.Failed error null"]

    at
mx.data::ConcreteDataService/http://www.adobe.com/2006/flex/mx/internal::dispatchFaultEvent()

    at
::DataListRequestResponder/fault()

    at
mx.rpc::AsyncRequest/fault()

    at
mx.messaging::ChannelSet/::faultPendingSends()

    at
mx.messaging::ChannelSet/channelFaultHandler()

    at
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()

    at
flash.events::EventDispatcher/dispatchEvent()

    at
mx.messaging::Channel/mx.messaging:Channel::connectFailed()

    at
mx.messaging.channels::PollingChannel/mx.messaging.channels:PollingChannel::connectFailed()

    at
mx.messaging.channels::RTMPChannel/mx.messaging.channels:RTMPChannel::statusHandler()

 

I do not get this when I have it compiled
on the server at run time.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dimitrios Gianninas
Sent: Thursday, October 19, 2006
8:38 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Does FDS
project have to compile on the server?



 







Below is the command we use to pre-compile our Flex app that uses
FDS. Just like Peter said you just need to specify the services option and
thats it. Hope my example helps.

 


   dir="${BUILD}" 
   vmlauncher="false"
   failonerror="true">
   
   />
   
   
   />
   




 



Dimitrios Gianninas

RIA Developer

Optimal Payments Inc.



 



 







From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Riddle
Sent: Thursday, October 19, 2006
6:09 PM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] Does FDS
project have to compile on the server?







I do have that entry in there. Can't
figure it out.











From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Peter Farland
Sent: Thursday, October 19, 2006
4:53 PM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] Does FDS
project have to compile on the server?











You can precompile any Flex 2 app,
including FDS apps. You need to point Flex Builder 2 (or the command line
compiler if using mxmlc directly) to the /WEB-INF/flex/services-config.xml
file at compile time. You can either do this using the  option
under the  section of flex-config.xml or using a command
line argument --services=c:/path/to/web/application/WEB-INF/flex/services-config.xml









From: [EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Riddle
Sent: Thursday, October 19, 2006
5:42 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Does FDS
project have to compile on the server?





In my Data Services project, do I have to choose the option
to compile the application on the server vs. pre-compiling it if I want to use
Data Management Services? It's the only way I could get it to work. When I do a
pre-compiled swf, I'm unable to make an RTMP connection.

Allen Riddle

Sofware Development

x3217
















 
  
  AVIS
  IMPORTANT
  
  
  WARNING
  
 
 
  
  Ce message électronique et ses pièces jointes
  peuvent contenir des renseignements confidentiels, exclusifs ou légalement
  privilégiés destinés au seul usage du destinataire visé. L'expéditeur
  original ne renonce à aucun privilège ou à aucun autre droit si le présent
  message a été transmis involontairement ou s'il est retransmis sans son
  autorisation. Si vous n'êtes pas le destinataire visé du présent message ou
  si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et
  le supprimer, ainsi que toutes ses pièces jointes, de votre système. La
  lecture, la distribution, la copie ou tout autre usage du présent message ou
  de ses pièces jointes par des personnes autres que le destinataire visé ne
  sont pas autorisés et pourraient être illégaux. Si vous avez reçu ce courrier
  électronique par erreur, veuillez en aviser l'expéditeur.
  
  
  This electronic message and its attachments
  may contain confidential, proprietary or legally privileged information,
  which is solely for the use of the intended recipient. No privilege or other
  rights are waived by any unintended transmission or unauthorized
  retransmission of this message. If you are not the intended recipient of this
  message, or if you have received it in error, you should immediately stop
  reading this message and delete it and all attachments from your system. The
  reading, distribution, copying or other use of this message or its
  at

RE: [flexcoders] Does FDS project have to compile on the server?

2006-10-19 Thread Allen Riddle












I do have that entry in there. Can’t
figure it out.

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Farland
Sent: Thursday, October 19, 2006
4:53 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Does FDS
project have to compile on the server?



 







You can precompile any
Flex 2 app, including FDS apps. You need to point Flex Builder 2 (or the
command line compiler if using mxmlc directly) to the /WEB-INF/flex/services-config.xml
file at compile time. You can either do this using the  option
under the  section of flex-config.xml or using a command
line argument --services=c:/path/to/web/application/WEB-INF/flex/services-config.xml

 

 







From:
[EMAIL PROTECTED]ups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Riddle
Sent: Thursday, October 19, 2006
5:42 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Does FDS
project have to compile on the server?





In my Data Services project, do I have to choose the option
to compile the application on the server vs. pre-compiling it if I want to use
Data Management Services? It’s the only way I could get it to work. When
I do a pre-compiled swf, I’m unable to make an RTMP connection.

Allen Riddle

Sofware Development

x3217










__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] Does FDS project have to compile on the server?

2006-10-19 Thread Allen Riddle










In my Data Services project, do I have to choose the option
to compile the application on the server vs. pre-compiling it if I want to use
Data Management Services? It’s the only way I could get it to work. When
I do a pre-compiled swf, I’m unable to make an RTMP connection.

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___





RE: [flexcoders] Deploying Flex Application in a Tomcat server

2006-10-18 Thread Allen Riddle












If it is just a standard Flex app, and not
a Flex Data Services app, then you just need to copy the generated files
(usually in your bin folder which contains the .swf and the html wrapper for it)
to your wherever you want under your WEB-INF folder. So it would be:

 

Copy contents of C:\SomeFlexApp\bin to
C:\PathToTomcatApp\web-inf\someSubFolderToStoreOutputedFiles

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Karthik J
Sent: Wednesday, October 18, 2006
12:17 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Deploying
Flex Application in a Tomcat server



 











Hi,





 





I have developed a flex application
and I have to deploy it in a Tomcat server. Can anybody help me regarding this.





 





Regards,
Karthik.





 






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Open source Hibernate projects?

2006-10-16 Thread Allen Riddle












I hate to be one of those dudes who gives you
a reply without answering your question, but I’m going to. I don’t
know of any that are small enough that you could play with. But from my
experience with learning Hibernate, the best way is just to go to the Hibernate
web site and start your own project using their samples on how to get started, they
are easy enough to do for people who have never used Hibernate. What better way
than to jump right in yourself!

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Douglas McCarroll
Sent: Monday, October 16, 2006
4:12 PM
To: flexcoders post
Subject: [flexcoders] Open source
Hibernate projects?



 







Hi All,

Can you suggest any open source Hibernate based projects that I could play
with? 
I want to familiarize myself with Hibernate and (more importantly) experiment 
with putting a Flex front end on top of a Hibernate based app.

The Roller Weblogger project kind of fits the bill, but I'm thinking that it 
would probably be best for me to start by playing with a smaller/simpler
project.

Any suggestions?

TIA!

Douglas






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] Acceptance testing

2006-10-16 Thread Allen Riddle












I’m familiar with Mercury, and
downloaded QTP last week. I’m not a fan of spending that much money on
something that is so basic (acceptance tests), not to mention that anything
with a 300MB download is a red flag to me, haha. 

 

I found this little tool that supports
testing Flex apps: http://www.iopus.com/imacros/,
and it’s a lot cheaper than QTP. I’ve been playing with it for the
past couple days, and it works pretty well. The only thing that I find is
lacking, and maybe because it’s the demo version, are the reports of the
test results.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Saturday, October 14, 2006
6:51 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Acceptance testing



 







If you're interested in functional testing with Mercury QTP I can get
you on our beta, let me know off-list. Note that you need to be a QTP
user (or talk to their sales about becoming one) for this to be of
value.

Matt

-Original Message-
From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On
Behalf Of Dimitrios Gianninas
Sent: Saturday, October 14, 2006 6:16 AM
To: [EMAIL PROTECTED]ups.com
Subject: RE: [flexcoders] Acceptance testing

Hi,

There are 2 things available. Well 2 different things :)

1) FlexUnit - this allows u to write test cases a la JUnit for your AS3
classes
(http://labs.adobe.com/wiki/index.php/ActionScript_3:resources:apis:libr
aries)
2) Mercury QuickTest Pro 9+ supports automated testing of applications
built with Flex. This is type of thing where u record action, play them
back and do some validation.

For #2, you will have to contact Adobe about further info, or perhaps
some Adobe employee can reply to this thread with further info.

Dimitrios Gianninas
Optimal Payments Inc.

-Original Message-
From: [EMAIL PROTECTED]ups.com
on behalf of Allen Riddle
Sent: Fri 10/13/2006 12:24 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Acceptance testing

Does anybody know of any functional or acceptance testing tools for
Flex? I want to write acceptance testing scripts for my Flex app.

Allen Riddle

Sofware Development

x3217






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






RE: [flexcoders] WebOrb for Rails

2006-10-14 Thread Allen Riddle
> >
> >
> >
> > On 10/4/06, Clint Modien < [EMAIL PROTECTED]com>
wrote:
> >
> >
> >
> >
> >
> >
> > I love how much buzz WebOrb is getting.
> >
> >
> >
> >
> >
> > Adobe is trying to keep the price of their java/flash remoting server
high. Which is understandable. They need to make money on the product or we'll
all be out of jobs. (Well I would be anyway.) But if Adobe were to aquire
WebOrb how much do you think the .NET version would be? Would the ROR and PHP
versions be GPL?
> >
> >
> >
> >
> >
> > Anyway licensing costs aside... Adobe is not making a .net version...
as far as i know wondertwin (.net fds) was still born in 04'. I do however feel
that Adobe is and has been making an enourmous mistake by only supporting
Java/CF. How do they expect to reach a million developers by only supporting
Java/CF?
> >
> >
> >
> >
> >
> > Adobe needs to hold up WebOrb to the public and say... "Look
Flex/Flash/Apollo can support remote objects for multiple backends!!!"
WebOrb isn't even producing a Java remoting implementation to stay out of
Adobe's space and allow them to capitalize on the Java market of the large
corporations. WEBORB IS NOT A COMPETITOR TO FDS BECAUSE WEBORB DOES NOT SUPPORT
JAVA. IT COMPLEMENTS IT. Why isn't WebOrb all over the dev center? Why isn't
Adobe pushing it?
> >
> >
> >
> >
> >
> > How many developers in the world use Java, CF, .NET, PHP, Ruby ?? 75%
?
> >
> >
> >
> >
> >
> > How many people is that in the world? 50 million?
> >
> >
> >
> >
> >
> > On 10/4/06, Allen Riddle < [EMAIL PROTECTED]pital.com>
wrote:
> >
> >
> >
> >
> >
> >
> > I've been looking at The Midnight Coder's WebOrb for Rails and I'm
very impressed. Has Adobe given any thought to hiring these developers so they
could get these implementations ported into Adobe's Flex Data Services? I know
Adobe's working on a .NET implementation, but getting a Ruby implementation
would be fantastic.
> >
> >
> >
> > 

> >
> > From: [EMAIL PROTECTED] ups.com [mailto: [EMAIL PROTECTED]
ups.com] On Behalf Of Paul Spitzer
> >
> >
> >
> > Sent: Wednesday, October 04, 2006 1:27 PM
> > To: [EMAIL PROTECTED] ups.com
> > Subject: Re: [flexcoders] SOAP Web Services and registerClassAlias
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > Thanks Seth. I should have read the docs. :)... "Preserves the class
> > (type) of an object when the object is encoded in Action Message
Format
> > (AMF)." I didn't know it was AMF specific.
> >
> > It /would/ be great to see some more support for this kind of thing.
In
> > the past we've done things like...
> >
> > response.__proto__ = User.prototype;
> > Function(User).call(response);
> > var user: User = User(response);
> >
> > Where response is the parsed anonymous object from the web service
and
> > User is the type. Now, I'm having to manually iterate the anonymous
> > object and populate an instance of the type.
> >
> > best,
> >
> > Paul
> >
> > Seth Hodgson wrote:
> > > Hi Paul,
> > >
> > > registerClassAlias(...) is used by the Flash Player to
drive AMF serialization/deserialization. In the web service scenario,
you're not getting back AMF formatted data so this built-in function doesn't
help out.
> > >
> > > For now, you'll need to write your own helper classes that take
the e4x formatted result from your web service invocation and use it to create
a typed instance(s) of your choosing.
> > >
> > > Streamlining this process is on our roadmap.
> > >
> > > Best,
> > > Seth
> > >
> > > 
> > > From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of Paul Spitzer
> > > Sent: Wednesday, October 04, 2006 10:13 AM
> > > To: [EMAIL PROTECTED]ups.com
> > > Subject: Re: [flexcoders] SOAP Web Services and
registerClassAlias
> > >
> > > Or, a little less specific... is there a way to get the Web
Service
> > > classes to return typed objects?
> > >
> > > Paul Spitzer wrote:
> > >
> > >> Anyone know if there a way to use registerClassAlias with
Web Services
> > >> to get typed objects back?
> > >>

[flexcoders] Acceptance testing

2006-10-13 Thread Allen Riddle










Does anybody know of any functional or acceptance testing
tools for Flex? I want to write acceptance testing scripts for my Flex app.

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___





[flexcoders] WebOrb for Rails

2006-10-04 Thread Allen Riddle












I’ve been looking at The Midnight
Coder’s WebOrb for Rails and I’m very impressed. Has Adobe given
any thought to hiring these developers so they could get these implementations
ported into Adobe’s Flex Data Services? I know Adobe’s working on a
.NET implementation, but getting a Ruby implementation would be fantastic.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Spitzer
Sent: Wednesday, October 04, 2006
1:27 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] SOAP Web
Services and registerClassAlias



 







Thanks Seth. I should have read the docs. :)... "Preserves the
class 
(type) of an object when the object is encoded in Action Message Format 
(AMF)." I didn't know it was AMF specific.

It /would/ be great to see some more support for this kind of thing. In 
the past we've done things like...

response.__proto__ = User.prototype;
Function(User).call(response);
var user: User = User(response);

Where response is the parsed anonymous object from the web service and 
User is the type. Now, I'm having to manually iterate the anonymous 
object and populate an instance of the type.

best,

Paul

Seth Hodgson wrote:
> Hi Paul,
>
> registerClassAlias(...) is used by the Flash Player to drive AMF
serialization/deserialization. In the web service scenario, you're not
getting back AMF formatted data so this built-in function doesn't help out.
>
> For now, you'll need to write your own helper classes that take the e4x
formatted result from your web service invocation and use it to create a typed
instance(s) of your choosing.
>
> Streamlining this process is on our roadmap.
>
> Best,
> Seth
>
> 
> From: [EMAIL PROTECTED]ups.com
[mailto:[EMAIL PROTECTED]ups.com]
On Behalf Of Paul Spitzer
> Sent: Wednesday, October 04, 2006 10:13 AM
> To: [EMAIL PROTECTED]ups.com
> Subject: Re: [flexcoders] SOAP Web Services and registerClassAlias
>
> Or, a little less specific... is there a way to get the Web Service 
> classes to return typed objects?
>
> Paul Spitzer wrote:
> 
>> Anyone know if there a way to use registerClassAlias with Web Services

>> to get typed objects back?
>>
>>
>>
>> 
>
> 
>
>
>
> 






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___






[flexcoders] Acegi

2006-07-26 Thread Allen Riddle










Hey, whoever posted the thread about getting Acegi
integration, I apologize. I accidentally deleted all my messages, and lost the
thread. Incidentally, I can’t find the thread on yahoo, so can you please
send me your last post on here so I can see if I can help. Thanks.

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   



  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





RE: [flexcoders] Flex Vs OpenLaszlo

2006-07-25 Thread Allen Riddle












I had looked at and evaluated the two. I’m
a big proponent of open source, as most of our technology we use is open
source. But, Flex is a much better product hands down. The main thing is
consuming data in Flex is leaps and bounds from Lazslo. Also, you’re
going to get a lot more documentation from Flex. It’s been a while since
I played with it, but Lazslo doesn’t have anything equivalent to Flex
Data Services, which is the bread and butter. And finally, you are stuck using
_javascript_ in Lazslo, where in Flex, you get to use Action Script, which as you
know, has a lot more capabilities.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert Kaeth
Sent: Tuesday, July 25, 2006 5:08
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex Vs
OpenLaszlo



 









Hi, 





 





Has anyone done a comparison between
Flex2 and OpenLaszlo? 





If someone can share his/her
experience, it will be great. 





 





TIA





-B





 








__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] Messaging Services deserialization

2006-07-24 Thread Allen Riddle












I fixed it. The problem was that I didn’t
have the java class on data service’s classpath.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Peter Farland
Sent: Friday, July 21, 2006 5:25
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Messaging Services deserialization



 









Is the client throwing an error? Any
chance you’re trying to cast a result but do not have that ActionScript
type mapped to the Java type?

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Riddle
Sent: Friday, July 21, 2006 3:45
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Messaging
Services deserialization



 









I’m sending a jms message to the flex client, but my
flex client can’t deserialize the message. The event.message.body is
null. This only happens when I send a simple user defined POJO (example,
instance of a Person). I can send an array of string’s with no problem,
but it doesn’t like it when I send the Person. I have my configuration
set up to ObjectMessage.

 

 

Allen Riddle

Sofware Development

x3217

 


















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   



  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] Re: Acegi/Spring/Flex authentication

2006-07-24 Thread Allen Riddle












We are using that exact combination. Nothing
special had to be done. We just have Flex use an HttpService to log in (point’s
to your Acegi authentication endpoint), and Flex then uses the cookie that’s
returned. After that, all SOAP calls are secured by Acegi. If you’re
wanting to use Acegi to try to secure you’re actual SWF files, then you’d
just need to put the url pattern of the .swf in the Aecegi configuration, so it
will secure it.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of flxcoder
Sent: Monday, July 24, 2006 10:08
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re:
Acegi/Spring/Flex authentication



 







Any tips here? Is it possible to use acegi with Flex?

Thanks.

--- In [EMAIL PROTECTED]ups.com,
"flxcoder" <[EMAIL PROTECTED].> wrote:
>
> Hi all.
> 
> Maybe not a flex question but relevant.
> 
> I am trying to authenticate flex into my middle tier by using 
acegi. 
> I am moderately familiar with acegi and the saying goes that the 
> filter checks the entry point as
> 
> 
> 
class="org.acegisecurity.ui.webapp.AuthenticationProcessingFilterEntryPoint">
> >/acegilogin.jsp
> property>
> >falseproperty>
> 
> 
> Question is then, has anyone integrated acegi with flex because in 
> the above case maybe the loginFormUrl can be /acegiLogin.jsp where 
> the jsp holds the main swf for flex.
> 
> Looking for tips on where to start and where to head off with the 
> integration.
> 
> Thanks.
>






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   



  




  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Messaging Services deserialization

2006-07-21 Thread Allen Riddle










I’m sending a jms message to the flex client, but my
flex client can’t deserialize the message. The event.message.body is
null. This only happens when I send a simple user defined POJO (example, instance
of a Person). I can send an array of string’s with no problem, but it
doesn’t like it when I send the Person. I have my configuration set up to
ObjectMessage.

 

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





RE: [flexcoders] FDS deployment issue

2006-07-19 Thread Allen Riddle












Are you doing your deployment through Ant?
If you are, make sure you pass the compiler all of you DS config files. If you look
at Project->Properties->Flex Compiler, you’ll see that the config
files get passed in. We are using Ant and doing the above, and everything is
working.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of hank williams
Sent: Wednesday, July 19, 2006
4:28 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] FDS
deployment issue



 







I have been developing and testing on one machine that
is both client and server. In other words, my tomcat installation is at
localhost, not some remote server.

Now I am trying to deploy my war file and when I run it, The flex app is not
speaking to the server. I am wondering if there is some configuration that is
getting compiled into the swf that tells it where the FDS server is? I know I
set some properties as to where the flex server is, using the eclipse property
window. Is this a parameter that gets built into the swf using a compiler
command line? I cant think of how else it could work, but if this is the case I
would like to know more about it. I am sure there are docs on this but I havent
seen them. Anyway, unless I use ant, that would suggest I need to change this
parameter and recompile before building a WAR file. Is that right? 

Any insight greatly appreciated.

Hank






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] Run as Flex App - No complaints - No compile

2006-07-19 Thread Allen Riddle












My co-worker is having the same problem.
Mainly, that FlexBuilder won’t detect errors in his code. He has an
ActionScript interface, and 3 classes that implement it. Only one class will
show if you have an error in the code, the other 2 implementers won’t
show errors, like if you were not implementing a method in the interface.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Angus Johnson
Sent: Wednesday, July 19, 2006
12:06 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Run as
Flex App - No complaints - No compile



 







Cameron, 

If you have compile time errors Flex Builder wont publish to the bin directory.
Forces you to fix them. If you run the app it will just pull out the previous
working version. 

If there are no compile time errors and still not getting a newer version clean
the project and check your browser cache. You can also manually delete the bin
directory contents. 

Good luck
Angus





On 19/07/06, Cameron
Childress <[EMAIL PROTECTED]>
wrote:











Using FlexBuilder 2.0 and just testing out some basic
code and think I
must be missing something pretty simple here. I have a really basic
app that I can use flexbuilder to compile just fine. FlexBuilder
builds it and sends me to a URL where it shows up in the web browser
just fine. Then I modify the app in a way that should cause an error,
try to compile it, and FlexBuilder happily sends me to that same URL
without complaint - showing me the previously compiled verion of the
code.

I am sure I'm missing something basic here, but shouldn't Flex
complain in some way if my app fails to compile? Is there an option I
inadvertantly unchecked or something? Anyone else run into this?

-Cameron

-- 
Cameron Childress
Sumo Consulting Inc
http://www.sumoc.com
---
cell: 678.637.5072
aim: cameroncf
email: [EMAIL PROTECTED]













 








__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] Undeploying Data Services Project

2006-07-18 Thread Allen Riddle












I upgraded my Tomcat to the newest version
(5.5.17), and it fixed it. Very bizarre. It was even doing this with the
samples that came with FDS.

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Allen Riddle
Sent: Tuesday, July 18, 2006 2:03
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Undeploying
Data Services Project



 









Whenever I
WAR up my Data Services project, everything is fine. Whenever I undeploy it,
whether through ANT or the Tomcat Manager, my log file has numerous entries for
RedeployManater, and the entries never end. When I came in today, the log file
was at 53 gig. Is there anything specific you have to do when deploying to
Tomcat? I did the extra steps that Adobe specified, like the JOTM Jars, etc.

 

Allen Riddle

Sofware
Development

x3217

 








__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Undeploying Data Services Project

2006-07-18 Thread Allen Riddle










Whenever I WAR up my Data Services project, everything is
fine. Whenever I undeploy it, whether through ANT or the Tomcat Manager, my log
file has numerous entries for RedeployManater, and the entries never end. When
I came in today, the log file was at 53 gig. Is there anything specific you
have to do when deploying to Tomcat? I did the extra steps that Adobe
specified, like the JOTM Jars, etc.

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





RE: [flexcoders] Re: Spring Enable Flex

2006-07-14 Thread Allen Riddle
Because it can make it much easier when you have n number of different
configurations, all using their own xml schema. For instance, XFire,
Mule, and Flex DS all have their own config formats, however, XFire and
Mule, are Spring enabled, so you can configure them with the
dependencies using Spring, and configuration at that point becomes much
much easier.

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Chiverton
Sent: Friday, July 14, 2006 9:40 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: Spring Enable Flex

On Friday 14 July 2006 14:41, Allen Riddle wrote:
> Spring enable the flex services configuration. So you wire up all of
the
> configuration (I'm assuming the configuration files are just wiring up
> java objects) using Spring. This way, Spring can manage the FDS

Err, you want to move from one XML configuration format to another XML 
configuration format ?
Why ?

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England
and Wales under registered number OC307980 whose registered office
address is at St James's Court Brown Street Manchester M2 2JF.  A list
of members is available for inspection at the registered office. Any
reference to a partner in relation to Halliwells LLP means a member of
Halliwells LLP. Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and
may be confidential or legally privileged.  If you are not the addressee
you must not read it and must not use any information contained in nor
copy it nor inform any person other than Halliwells LLP or the addressee
of its existence or contents.  If you have received this email in error
please delete it and notify Halliwells LLP IT Department on 0870 365
8008.

For more information about Halliwells LLP visit www.halliwells.com.




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




 Yahoo! Groups Sponsor ~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Running DS project with Eclipse WTP

2006-07-14 Thread Allen Riddle










Does anybody know if it’s possible to run a DS project
using the server project you can set up using the Eclipse Web Tools Platform?

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





RE: [flexcoders] Re: Spring Enable Flex

2006-07-14 Thread Allen Riddle












Thanks for the replies. But when I say “Spring
Enable Flex”, I mean Spring enable the flex services configuration. So
you wire up all of the configuration (I’m assuming the configuration
files are just wiring up java objects) using Spring. This way, Spring can
manage the FDS resources. Maybe it’s not possible or a bad idea, but if
you look at most open source projects (XFire for instance), a lot of them are
configurable through Spring, which makes it very easy to use.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of billy_d_white
Sent: Thursday, July 13, 2006 6:20
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Spring
Enable Flex



 







Use the FlexFactory. It allows you to integrate Flex
Data Services
with whatever framework you want. See this thread:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=583&threadid=1169760&enterthread=y#4190415

--- In [EMAIL PROTECTED]ups.com,
suzy lawson ...> wrote:
>
> There isn't much to do to get Flex to talk with Spring! 
> 
> All you need to do is put a delegate class in the middle which is
nothing more than a simple POJOFlex calls Pojo, Pojo invokes
Spring Beans...
> 
> 
> -
> How low will we go? Check out Yahoo! Messenger's low PC-to-Phone
call rates.
>






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] Remote JNDI server

2006-07-14 Thread Allen Riddle












Thanks Cathy, I was able to get it up and running.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Cathy Reilly
Sent: Thursday, July 13, 2006 4:07
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Remote
JNDI server



 







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 
as well as the message destinations.

 

http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=583&threadid=1160937&messageid=4158668

 

- Cathy

 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Riddle
Sent: Thursday, July 13, 2006 3:57
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Remote JNDI
server



Has anybody
been able to set up the Messaging Services to send messages to a remote machine
using the  configurations? I’m unable
to connect to my remote server.

 

Allen Riddle

Sofware
Development

x3217

 








__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] Spring Enable Flex

2006-07-13 Thread Allen Riddle












I’m not having any issues, it’s
just nice because it’s one less configuration format to learn.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dimitrios Gianninas
Sent: Thursday, July 13, 2006 2:06
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Spring
Enable Flex



 







Probably not
can u describe the problem/issue you are having?



 



Dimitrios
Gianninas

RIA Developer

Optimal Payments
Inc.



 



 







From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Allen Riddle
Sent: Thursday, July 13, 2006
10:41 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Spring
Enable Flex





Does anybody
(Adobe developers???) know if Adobe has any plans to Spring enable Flex? I
think it would really help out with configuration.

Allen Riddle

Sofware
Development

x3217






 
  
  AVIS
  IMPORTANT
  
  
  WARNING
  
 
 
  
  Ce message électronique et ses pièces jointes
  peuvent contenir des renseignements confidentiels, exclusifs ou légalement
  privilégiés destinés au seul usage du destinataire visé. L'expéditeur
  original ne renonce à aucun privilège ou à aucun autre droit si le présent
  message a été transmis involontairement ou s'il est retransmis sans son
  autorisation. Si vous n'êtes pas le destinataire visé du présent message ou
  si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et
  le supprimer, ainsi que toutes ses pièces jointes, de votre système. La
  lecture, la distribution, la copie ou tout autre usage du présent message ou
  de ses pièces jointes par des personnes autres que le destinataire visé ne
  sont pas autorisés et pourraient être illégaux. Si vous avez reçu ce courrier
  électronique par erreur, veuillez en aviser l'expéditeur.
  
  
  This electronic message and its attachments
  may contain confidential, proprietary or legally privileged information,
  which is solely for the use of the intended recipient. No privilege or other
  rights are waived by any unintended transmission or unauthorized
  retransmission of this message. If you are not the intended recipient of this
  message, or if you have received it in error, you should immediately stop
  reading this message and delete it and all attachments from your system. The
  reading, distribution, copying or other use of this message or its
  attachments by unintended recipients is unauthorized and may be unlawful. If
  you have received this e-mail in error, please notify the sender.
  
 





__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Remote JNDI server

2006-07-13 Thread Allen Riddle










Has anybody been able to set up the Messaging Services to
send messages to a remote machine using the 
configurations? I’m unable to connect to my remote server.

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





RE: [flexcoders] Data Services Question

2006-07-13 Thread Allen Riddle












Yes, thank you. I figured that’s
what we’d have to do.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Wednesday, July 12, 2006
6:21 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Data
Services Question



 









There are APIs you can use to notify the DataService that the
backend has changed.  It won’t notice the DB change directly (unless
you have some stored procedure that can execute Java) but you can write code
that will talk to the DS from Java and signify that things have changed.

 

That help?

 

Matt

 









From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Allen Riddle
Sent: Wednesday, July 12, 2006
1:04 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Data Services
Question



 









I have not
yet started using Data Services. My question is, does Data Services have the
ability to public changes made to a database, not necessarily an object
instance? The scenario is we have our Flex application, but the back office application
is a different platform that accesses the database directly. So if our back
office app updates the database, we need our Flex front end to be notified of
the changes.

 

Allen Riddle

Sofware
Development

x3217

 


















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Spring Enable Flex

2006-07-13 Thread Allen Riddle










Does anybody (Adobe developers???) know if Adobe has any
plans to Spring enable Flex? I think it would really help out with
configuration.

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





[flexcoders] Data Services Question

2006-07-12 Thread Allen Riddle










I have not yet started using Data Services. My question is,
does Data Services have the ability to public changes made to a database, not necessarily
an object instance? The scenario is we have our Flex application, but the back
office application is a different platform that accesses the database directly.
So if our back office app updates the database, we need our Flex front end to
be notified of the changes.

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





[flexcoders] ProgressBar not handling events

2006-07-12 Thread Allen Riddle










We have a ProgressBar with it’s mode set to “event”,
and the “source” property is bound to an object that dispatches the
necessary events. Everything works fine once the application is up and running,
but for whatever reason at startup, the ProgressBar does not handle the events
raised from the “source” object. We know for sure the source object
is raising the events, as we’ve traced it.

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___





RE: [flexcoders] Authentication - please help

2006-07-11 Thread Allen Riddle
If you're using Java, Acegi will take care of all that for you.

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tom Chiverton
Sent: Tuesday, July 11, 2006 8:55 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Authentication - please help

On Tuesday 11 July 2006 05:54, Dmitry Miller wrote:
> 1. Custom authentication
> 2. Working with Flex sessions

I'm planing to have a 'login' service, and all other service layer calls
take 
a session key as an argument, and check it logged in recently. Probably
bind 
the session key to an IP to.

> 3. How to throw authentication failed error from back end

Just throw the error as normal.
It's a non-recoverable error, and either a user mucking about or you
getting 
it wrong :-)

-- 
Tom Chiverton



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England
and Wales under registered number OC307980 whose registered office
address is at St James's Court Brown Street Manchester M2 2JF.  A list
of members is available for inspection at the registered office. Any
reference to a partner in relation to Halliwells LLP means a member of
Halliwells LLP. Regulated by the Law Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and
may be confidential or legally privileged.  If you are not the addressee
you must not read it and must not use any information contained in nor
copy it nor inform any person other than Halliwells LLP or the addressee
of its existence or contents.  If you have received this email in error
please delete it and notify Halliwells LLP IT Department on 0870 365
8008.

For more information about Halliwells LLP visit www.halliwells.com.




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links



 




 Yahoo! Groups Sponsor ~--> 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





RE: [flexcoders] Authentication - please help

2006-07-11 Thread Allen Riddle












Are you wanting authentication for your
Flex views? If you need authentication for services you are trying to access
over http, there are a couple good ones. If you have a Java back end, check out
the open source project Acegi. It is a very fast growing open source project
that has authentication, authorization, role based, etc. If you have a .NET
back end, Google “forms authentication”, it’s built in. Hope
that helps.

 









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dmitry Miller
Sent: Monday, July 10, 2006 11:55
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
Authentication - please help



 







I need to implement an authentication mechanism that
would store user
metadata in some sort of session. I have read some stuff on custom
authentication but the information I found is rather vague. Can anyone
clue me in or point to a good article on

1. Custom authentication
2. Working with Flex sessions
3. How to throw authentication failed error from back end

Thanks a lot,

--- Dmitry






__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] Serialization bug in release

2006-06-28 Thread Allen Riddle










YOU ARE MY HERO PETE!!! That worked. Thank
you so much. I don’t think there is a bug to send you, now knowing that
ArrayCollection is not serializable. Thanks a lot.

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Farland
Sent: Wednesday, June 28, 2006
5:02 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Serialization bug in release



 







Can you please log a bug or send me
your test case offline (attach a zip, but rename the extension to .zp)?

 

The makeObjectsBindable attribute on
WebService (or any of its Operation instances) control this behavior and is now
true by default. You can set it to false to stop it from creating
ArrayCollections for Arrays.

 

Pete

 







From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Allen Riddle
Sent: Wednesday, June 28, 2006
5:51 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Serialization bug in release





I just came across an article
(http://labs.adobe.com/wiki/index.php/Flex_Enterprise_Services:resources:articles:rpc_services)
saying that ArrayCollection is not serializable!!! In beta 3, web service calls
returned type Array, and it worked fine. I don’t understand why they
(Adobe) did that. Can anybody else confirm if this is true? So basically, you
have an ArrayCollection that can have XML serialized to it, but it can’t
deserialze, seems like a big bug.











From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Allen Riddle
Sent: Wednesday, June 28, 2006
4:01 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
Serialization bug in release













We are
currently upgrading our beta 3 developed product to the new release version. It
appears that they have changed collections returned from SOAP Web Service calls
to de-serialize into ArrayCollection now, versus Array the type. Ok, fine.
However, when you try to invoke a web service, and flex serializes the
ArrayCollection, it blows up. Is anybody else successfully able to invoke a web
service using an ArrayCollection? 

Thanks.

Allen Riddle

Sofware
Development

x3217


















__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






RE: [flexcoders] Serialization bug in release

2006-06-28 Thread Allen Riddle










I just came across an article (http://labs.adobe.com/wiki/index.php/Flex_Enterprise_Services:resources:articles:rpc_services)
saying that ArrayCollection is not serializable!!! In beta 3, web service calls
returned type Array, and it worked fine. I don’t understand why they
(Adobe) did that. Can anybody else confirm if this is true? So basically, you
have an ArrayCollection that can have XML serialized to it, but it can’t
deserialze, seems like a big bug.

 









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Allen Riddle
Sent: Wednesday, June 28, 2006
4:01 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders]
Serialization bug in release



 









We are
currently upgrading our beta 3 developed product to the new release version. It
appears that they have changed collections returned from SOAP Web Service calls
to de-serialize into ArrayCollection now, versus Array the type. Ok, fine.
However, when you try to invoke a web service, and flex serializes the
ArrayCollection, it blows up. Is anybody else successfully able to invoke a web
service using an ArrayCollection? 

 

Thanks.

 

Allen Riddle

Sofware
Development

x3217

 








__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___






[flexcoders] Serialization bug in release

2006-06-28 Thread Allen Riddle










We are currently upgrading our beta 3 developed product to
the new release version. It appears that they have changed collections returned
from SOAP Web Service calls to de-serialize into ArrayCollection now, versus
Array the type. Ok, fine. However, when you try to invoke a web service, and
flex serializes the ArrayCollection, it blows up. Is anybody else successfully
able to invoke a web service using an ArrayCollection? 

 

Thanks.

 

Allen Riddle

Sofware Development

x3217

 




__._,_.___





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








   






  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___