Re: [flexcoders] Tomcat 5.5/Flex Data Services/OutOfMemoryError

2006-07-29 Thread Rick Bullotta
Thanks, Clint.  For once, an out of memory error that actually *is* an out of 
memory error! ;-)

- Rick

Sent from my BlackBerry wireless handheld.  

-Original Message-
From: Clint Modien [EMAIL PROTECTED]
Date: Sat, 29 Jul 2006 13:43:41 
To:flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Tomcat 5.5/Flex Data Services/OutOfMemoryError

I think the default allocation for Tomcat is something small like 128Megs...

Assuming your running windows... crack open the tomcat service manager and 
you'll see an area where you can edit the JVM settings.

 Set the initial memory pool to 300+ Megs and the Max (depending on how much 
ram you have...) to 512 Megs

That should work for running the samples.



On 7/29/06, RBullotta [EMAIL PROTECTED]: mailto:[EMAIL PROTECTED]  wrote: 
 
 
 
 
 
Here's a weird one - when attempting to run the samples provided with 
 FDS Express 2.0, the first sample app I attempt to load (and therefore 
 compile) works fine, but subsequent ones crash with a 
 java.lang.OutOfMemoryError on the compile.
 
 Any insights welcomed, as something seems desperately wrong...
 
 Thanks!
 
 - Rick
 
 
  
  

--
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] OH, For the love of all that's good, please help!

2005-08-25 Thread Rick Bullotta










One piece of advice: Avoid rpc/encoded
web services and use doc/literal whenever possible











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sean McKibben
Sent: Tuesday, August 23, 2005
1:09 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] OH, For
the love of all that's good, please help!





I ran into this as well. Looking at the SOAP encoded message, it
appeared to me that flex wasn't making clean SOAP (pun definitely intended).









When we switched over to using the CFC's RemoteObject instead of the
WebService, things started working again. Wasn't too hard of a switch, and I'll
take the NetConnectionDebugger over paging through SOAP any day. (still wish
webservice serializing worked better...)











See my Flex serializer vs CF7 deserializer post thread or
the Collections between Flex and Web services thread for some
possible workarounds that didn't work for me...











Sean McKibben

















On Aug 23, 2005, at 10:29 AM, bsd wrote:








I'm passing an array from Flex to a web service located in a CFC.
It returns an error that states:

org.xml.sax.SAXException: No deserializer for array type 















--
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] OH, For the love of all that's good, please help!

2005-08-25 Thread Rick Bullotta










It isnt really a setting, it is a design
approach. The comment was more that if you build your own web services,
Id recommend using document/literal.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of bsd
Sent: Thursday, August 25, 2005
3:23 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] OH, For
the love of all that's good, please help!





Where do I make the change to this
setting?











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rick
 Bullotta
Sent: Thursday, August 25, 2005
8:00 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] OH, For the
love of all that's good, please help!





One piece of advice: Avoid
rpc/encoded web services and use doc/literal whenever possible











--
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
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  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] What I wish Flex/Flash Player could do...

2005-08-18 Thread Rick Bullotta










Also, there are plenty of generic
COM port-to-keyboard wedge applications out there.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Theodore E Patrick
Sent: Thursday, August 18, 2005
9:16 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] What I
wish Flex/Flash Player could do...





The best way to test a wedge driver is
with a Text Editor.




 Open
 NotePad
 Set
 the focus into Notepad
 Swipe
 a Card, Scan a barcode, Read an RFID.




If the wedge driver is working, the reader
should rapidly type a long string of characters into notepad. The string has a
set of delimiters that correspond to encoding. It is very easy to parse these
values into something meaningful with just String.split.



It is typical for most input devices to ship
with a wedge driver. This provides the simplest integration as each of these
devices can be viewed as just a very fast keyboard.



http://www.google.com/search?q=keyboard+wedge+driver



http://www.programbl.com/



Plus the free ones that ship with the
devices!



Cheers,



Ted ;)









--
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] What I wish Flex/Flash Player could do...

2005-08-16 Thread Rick Bullotta





Here's another one for Ethan 
then... :)

The Flash Player (along with Flex and AS) 
should have an input extensibility model that supports input focus management 
and input from other mechanisms/devices such as:

- Barcode readers
- RFID readers
- Card readers
- Others...

This would open up a whole new class of 
applications for Flex/Flash.

- Rick Bullotta
 SAP Labs, LLC


From: flexcoders@yahoogroups.com on behalf of 
JesterXLSent: Mon 8/15/2005 9:28 PMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] What I wish 
Flex/Flash Player could do...
I forwarded your request to the Central Dev group for Ethan Malasky to 
hopefully pick up. Since Central is hopefully the future of Flash, and 
ultimately Flex on the desktop, things like this are perfect.It just 
so happens SQL on the client was requested by multiple people already there, 
so your request from a different demographic WITH the keywords of 
"occasionally connected" just adds mad 
credence.










--
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
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  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] What I wish Flex/Flash Player could do...

2005-08-16 Thread Rick Bullotta









Thanks for the 
ideas!

I've done similar things in 
the past - but specific "listeners" for various attached input devices would be 
a cleaner way to go, particularly when there are multiple input fields on a form 
that can accept remote or direct input. There are hacks that can be done 
with "prefix" and "suffix" codes to help identify input source, but they're 
messy. And the focus management can be even more painful :(.

Good ideas though!


From: flexcoders@yahoogroups.com on behalf of 
Theodore E PatrickSent: Tue 8/16/2005 6:52 AMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] What I wish 
Flex/Flash Player could do...


Flash can handle these 
via a standard MS Keyboard Wedge Driver. We shipped a kiosk with a card reader 
and the Flash Player can directly parse data entered. Basically all these 
devices can be reduced to keyboard input so when you swipe a card or scan a 
barcode, it just types data really fast.

Actually I believe I 
have an example that does just this very thing

Just put 3 V2 TextInput 
controls on stage and name the instances: ti_name, ti_card, ti_date and use this 
code:

Key.addListener(this) 

function 
onKeyDown(){
 
var self = arguments.callee
 
var k = String.fromCharCode(Key.getAscii())
 
if(self.storage == undefined) self.storage=
 
self.storage = self.storage + k
 
if(self.storage.split("?").length == 3 ){
 
var sname = 
self.storage.split("^")[1] 

 
var scardbase = 
self.storage.split("?;")[1].split("?")[0].split("=")
 
ti_name.text = sname
 
ti_card.text = scardbase[0]
 
ti_date.text = 
scardbase[1] 

 
self.storage = 
"" 

 
} 

}

This will parse the 
values from a standard 3 phase credit card reader. In the kiosk that used this 
we tested cards from starbucks, visa, amex, subway and all worked perfectly. 
When each type of device, you just need to know what to look for in parsing the 
data received.

One less thing for 
Ethan :)

Cheers,

Ted J







From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick BullottaSent: Tuesday, August 16, 2005 1:20 
PMTo: 
flexcoders@yahoogroups.com; flexcoders@yahoogroups.comSubject: RE: [flexcoders] What I wish 
Flex/Flash Player could do...



Here's another one for 
Ethan then... :)



The Flash Player (along with Flex 
and AS) should have an input extensibility model that supports input focus 
management and input from other mechanisms/devices such 
as:



- Barcode 
readers

- RFID 
readers

- Card 
readers

- Others...



This would open up a whole new class 
of applications for Flex/Flash.



- Rick 
Bullotta

 SAP Labs, 
LLC





From: 
flexcoders@yahoogroups.com on behalf of JesterXLSent: Mon 8/15/2005 9:28 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] What I wish 
Flex/Flash Player could do...

I forwarded your request to the Central Dev 
group for Ethan Malasky to hopefully pick up. Since Central is hopefully the 
future of Flash, and ultimately 
Flex on the desktop, things like this are perfect.It just so happens SQL on the client was requested by 
multiple people already there, so 
your request from a different demographic WITH the keywords of "occasionally connected" just adds mad 
credence.
--Flexcoders Mailing 
ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch 
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 Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  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] Hope all is watching the Avalon space..

2005-08-01 Thread Rick Bullotta
Then, I think the price of Flex will go down... :)
 
Just realize the Flex will ultimately support a much broader range of both 
back-end OS's/app servers and front end devices/platforms than Avalon will.  
There will be a significant amount of development using Avalon-based 
technologies for behind-the-firewall applications, for sure.  Flex is a 
different beast, though.  I also wouldn't be at all surprised to see a Flex 
client based on the Java plug-in someday.  When looking at the Flex class 
models, it has a lot of similarities to Java rich client stuff - so who knows - 
maybe the Flash viewer someday becomes classes deployed on a JVM!



From: flexcoders@yahoogroups.com on behalf of Tolulope Olonade
Sent: Mon 8/1/2005 6:07 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Hope all is watching the Avalon space..


 
There have been clamours from the .Net developer fold for Macromedia to make 
flex as native to .NET platform as well as it is with the java platform. 
What do you think will happen when MS releases a platform that allow .NET 
developers use the same Visual Studio.NET(2005 Maybe) + zero licensing fees (it 
runs on Server 2003), to create applications that's puts the kind of rich 
programming components jus like flex/flash ?
Take a look here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnlong/html/hgtomayavalonctp.asp
What do you think will happen?





--
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 
http://groups.yahoo.com/group/flexcoders  on the web.
  
*To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
  
*Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
http://docs.yahoo.com/info/terms/ . 






 Yahoo! Groups Sponsor ~-- 
font face=arial size=-1a 
href=http://us.ard.yahoo.com/SIG=12hsig4pj/M=362335.6886445.7839731.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1122906653/A=2894361/R=0/SIG=13jmebhbo/*http://www.networkforgood.org/topics/education/digitaldivide/?source=YAHOOcmpgn=GRPRTP=http://groups.yahoo.com/;In
 low income neighborhoods, 84% do not own computers. At Network for Good, help 
bridge the Digital Divide!/a./font
~- 

--
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/
 
winmail.dat

RE: [flexcoders] Hope all is watching the Avalon space..

2005-08-01 Thread Rick Bullotta










Fair enough. Nevertheless, Flash
ubiquity will be key, regardless of technology.



Thanks for the thoughts.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darron J. Schall
Sent: Monday, August 01, 2005 9:53
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Hope all
is watching the Avalon space..





Rick Bullotta wrote:

I also wouldn't be at all surprised to see a
Flex client based on the Java plug-in someday. When looking at the Flex
class models, it has a lot of similarities to Java rich client stuff - so who
knows - maybe the Flash viewer someday becomes classes deployed on a JVM!
 

I'd actually be *very* surprised to see
this. There was a Flash Player 
written in Java a long time ago that supported swf
version 2. It was 
horrendously slow, and therefore abandoned.
Granted Java has made some 
performance improvements since then, but how does
moving from the Flash 
Player to the JVM help at all?

Flash is already available on a ton of devices,
and Java's write once 
run anywhere mantra didn't pan out as much
as Sun wanted it to 
especially in the mobile space. Flash is
more portable in it's current 
codebase then it would be as a Java application,
and it also runs faster 
as native code anyway. I don't see any
reason why MM would want to 
invest the time in a Flash Player that runs on top
of the JVM since it 
doesn't buy them performance or portability, but
rather just a new 
series of headaches.

-d










--
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
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  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] Hope all is watching the Avalon space..

2005-08-01 Thread Rick Bullotta










Hi, Aldo!



I would certainly view Flex as more than
a browser built in Flash  it is server-side generated
Flash. Quite a different architecture, of course Also, I wouldnt
say that Flex deals with enterprise development workflow, per se.
Just a piece of the puzzle.



While Flash is the important piece, Flash
player makes MM very little direct money. Dont discount Flex and
its future companions (app builders, other back end information delivery
products, etc.) as insignificant. They are very significant!



Having just been acquired by SAP, Im
currently involved in conceptualizing solutions for the manufacturing vertical
to deliver on exactly what you described below:



Perhaps an integrated presentation ( flex ) + presence + BPM + ESB + collab
+ management...?



I totally share that
vision and think were getting really closestay tuned! Try to make it to SAP TechEd this year in Vienna
or Boston



- Rick













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Aldo Bucchi
Sent: Monday, August 01, 2005 3:59
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Hope all
is watching the Avalon space..





Hi guys,

I believe you are missing the macro perspective
here.

Don't give Flex that much importance in the long
term.
After all it is just a browser built into Flash,
with a set of tools
to allow an enterprise development workflow.
It won't be long till an opensource alternative
pops up... it's just a
matter of time till the osflash community develops
the pieces and
someone puts them together. No rocket science.

Moreover, anyone with enough money to get Flex is,
most of the times,
developing for an intranet where there is full
control over the client
runtime and they would happily switch to a less
expensive alternative,
or to one that fits nicer into the workflow, even
if they have to give
up some eye candy or functionality. Eventually
Avalon and other techs
will be better practical alternatives for an
important majority.

The important piece here is the Flash player and
it's impressive
features, all bundled into one tiny download:

- ubiquity ( 9_% )
- consistency across platforms ( including mobile
) 
- rich scripting language ( AS2 + E4X = reuse,
best practices, productivity++ )
- multimedia
- streaming, web presence ( flash comm )

I believe it is the sum of these that will be hard
to beat... this is
MM's strong card.

Don't take me wrong, I believe Flex is a wonderful
tech, and I enjoy
developing with it and having my customers praise
me for free... a
paradigm shifter. But let's not loose objectivity.

It's like talking about Swing, when the important
piece is the JVM.

So, Flex is happening today... helping Flash gain
some respect in the
enterprise arena ( and MM make tons of money ),
but old good Flash
will eventually live on, on it's own, and will
evolve as requirements
grow. Unless MM pulls some licence trickery that
changes the landscape
in the short term, of course. Who knows.

OTOH, I believe MM has done marvels with in making
Flex hard to beat,
and I hope some more power come out of merging
flex with the rest of
the family.
Perhaps an integrated presentation ( flex ) +
presence + BMP + ESB +
collab + management...?

The flash player can get that far, no doubt about
it.

BTW, I was attending a Best of SAP world tour
conference the other
day, going over some new netweaver features, and I
thought...
What if these guys had built all the presentation
capabilities of
netweaver with flash from the beginning! They
would have the ultimate
platform from head to toes, from desktop to
mobile, with very little
tradeoffs.
The important thing to understand here is that the
SOA trend is
quickly pushing more and more functonality to
layers that are strongly
related to presentation: collab, presence,
information pushing, drag
and relate, high level BUS entry points, etc.
Thus a robust solution on this end would enhance
any platform
dramatically ( this wasn't true some time ago ).
Online presence, streaming and collab are just too
real and too
powerful to overlook nowadays.

The same goes for Bea, oracle, etc.

Team up, Macromedia!

well, that was a getting too OT.
Back to work.

Best,
Aldo

On 8/1/05, Darron J. Schall
[EMAIL PROTECTED] wrote:
 Rick Bullotta
wrote:
 
 I also wouldn't be at all surprised to
see a Flex client based on the Java plug-in someday. When looking at the
Flex class models, it has a lot of similarities to Java rich client stuff - so
who knows - maybe the Flash viewer someday becomes classes deployed on a JVM!
 
 
 I'd actually be *very* surprised to see
this. There was a Flash Player
 written in Java a long time ago that
supported swf version 2. It was
 horrendously slow, and therefore
abandoned. Granted Java has made some
 performance improvements since then, but how
does moving from the Flash
 Player to the JVM help at all?
 
 Flash is already available on a ton of
devices, and Java's write once
 run anywhere mantra didn't pan

RE: [flexcoders] Re: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread Rick Bullotta












Your multibillion dollar company is hedging on $120K-$225K???
And dont you have a purchasing organization that can negotiate a volume
price?

I find that hard to believe











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Bezuidenhout
Sent: Tuesday, July 19, 2005 10:05
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: If I
buy a flex license can I host other peoples apps on the license?





On a slightly different note.

I can tell
you that in our multibillion dollar organization Flex is
most likely
about to be thrown out. We were going to buy something
like 8 or 14
additional licenses to the multitude we already have, and
the pricing
is just totally ridiculous for what we need it for.

Management
is ready to cut their losses and redevelop with something
non-proprietary
and we (the ones that really wanted Flex) have egg on
our faces.

I think we
have come to the point where MM has priced Flex totally out
of the
market.

Jonathan









--
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
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  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: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread Rick Bullotta










You would have a hard time convincing me
that, if there are application development benefits and sunk costs
in development, that (after discounts) $60-125K is an issue









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Anthony Merryfield
Sent: Tuesday, July 19, 2005 10:26
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: If I
buy a flex license can I host other peoples apps on the license?







Just because a company is worth multiples
of billions doesn't mean that the money is tied up in IT...

















T.





-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]On Behalf Of Rick
 Bullotta
Sent: 19 July 2005 15:21
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: If I
buy a flex license can I host other peoples apps on the license?



Your multibillion dollar company is hedging on $120K-$225K???
And dont you have a purchasing organization that can negotiate a
volume price?

I find that hard to believe











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jonathan Bezuidenhout
Sent: Tuesday, July 19, 2005 10:05
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: If I
buy a flex license can I host other peoples apps on the license?





On a slightly different note.

I can tell
you that in our multibillion dollar organization Flex is
most likely
about to be thrown out. We were going to buy something
like 8 or 14
additional licenses to the multitude we already have, and
the pricing
is just totally ridiculous for what we need it for.

Management
is ready to cut their losses and redevelop with something
non-proprietary
and we (the ones that really wanted Flex) have egg on
our faces.

I think we
have come to the point where MM has priced Flex totally out
of the
market.

Jonathan







This communication together with any attachments transmitted with it
(this E-Mail) is intended only for the use of the addressee and may
contain information which is privileged and confidential. If the reader of this
E-Mail is not the intended recipient or the employee or agent responsible for
delivering it to the intended recipient you are hereby notified that any use,
dissemination, forwarding, printing or copying of this E-Mail is strictly
prohibited. Addressees should check this E-mail for viruses. The Company makes
no representations as regards the absence of viruses in this E-Mail. If you
have received this E-Mail in error please notify our IT Service Desk
immediately by e-mail at [EMAIL PROTECTED] Please then immediately delete,
erase or otherwise destroy this E-Mail and any copies of it.

Any opinions expressed in this E-Mail are those of the author and do not
necessarily constitute the views of the Company. Nothing in this E-Mail shall
bind the Company in any contract or obligation.

For the purposes of this E-Mail the Company means The Carphone
Warehouse Group Plc and/or any of its subsidiaries.

Please feel free to visit our website: http:// www.carphonewarehouse.com or
http://www.phonehouse.com

The Carphone Warehouse Group Plc (Registered in England No. 3253714) 1 Portal Way, London
 W3 6RS








--
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
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   
  







  
  
  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: If I buy a flex license can I host other peoples apps on the license?

2005-07-19 Thread Rick Bullotta










Agree with you. But 125K for a
system that would be deployed broadly and may be mission critical
would seem tiny  probably the same as the janitorial budget for a day or
two. I also agree with your choice of wording in seemingly
free alternatives. J



- Rick









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Anthony Merryfield
Sent: Tuesday, July 19, 2005 10:38
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Re: If I
buy a flex license can I host other peoples apps on the license?







Depends what you're comparing. If I was
atechnical beancounter looking at the cost of Flex, comparing it to open
source solutions and then seeing what ourapplication requirements were;
I'd be asking why we were spendingANY thousands of pounds on proprietary
software over seemingly free alternatives. Especiallysince...











We were going to buy something like
8 or 14 additional licenses to the multitude we already have, and
the pricing is just totally ridiculous for what we need it for.











...I'd be asking why you need more
licenses if you are not using it to it's fullest potential yet?











To be fair, we're making judgements on one
piece of a puzzle - maybe Jon could expand on his statement before we sit here
waxing lyrical about his companies policies?











T.











--
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] Flex Enhancement Requests

2005-07-15 Thread Rick Bullotta










Matt:



Whats the best official
way to get enhancement requests into the queue? Through the bug reporting
system?



Thanks!





Rick Bullotta
VP, Manufacturing
Applications Solutions Mgmt.
SAP Labs, LLC 

http://www.sap.com/manufacturing








--
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
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   






  
  
  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 Enhancement Requests

2005-07-15 Thread Rick Bullotta










So do we.. J









From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Friday, July 15, 2005 2:19
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Flex
Enhancement Requests





 I
also heard PayPal'ing Matt as a 'gift' can help boost the priority of an
enhancement. :)

I wish J











--
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: Error in Web Service

2005-07-14 Thread Rick Bullotta









SAPSpeakOn

Matt/Tony - older version of 
SAP's SOAP runtime had an issue where improper namespace "stuff" was being sent 
in the response message that didn't match the WSDL - had to do with the use of a 
default namespace.

Tony - what version of WAS are you running 
(including service pack level)? Check to see if you have the latest 
patches installed on that box. It obviously is one behind the SAP 
firewall, so I suspect it is pretty close to up to date. The to/from 
messages look OK, but without seeing the WSDL, it is hard to tell. And it 
appears that this is a custom RFC, so maybe the WSDL is getting wacked 
out.


/SAPSpeakOn

Drop me a note off-list and I can try to 
help you out.

Rick Bullotta
SAP/Lighthammer


From: flexcoders@yahoogroups.com on behalf of 
Matt ChotinSent: Thu 7/14/2005 8:12 PMTo: 
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: Error in Web 
Service


I dont think your 
machine is accessible from the outside world so I cant read your 
WSDL

However based on the 
request Im not sure I understand the error since it looks like you sent what 
the web service expected. Im not familiar with how the SAP webservices 
might work including transformation, it may be that you need to debug on that 
end the data that you are receiving.

Sorry!

Matt





From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tony_licSent: Thursday, July 14, 2005 2:15 
AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Re: Error in Web 
Service

Hi Matt, My 
WSDL : "http://iwdf9453.wdf.sap.corp:55080/sap/bc/srt/rfc/sap/ZVI_COPY_SAMP_02?wsdl"Soap Request(from network 
monitor):?xml version="1.0" 
encoding="UTF-8"?SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:Body 
xmlns:ns1="urn:sap-com:document:sap:rfc:functions" 
ns1:ZTR_PP_ORD_FOR_WC 
SIMPdfd/SIMP 
/ns1:ZTR_PP_ORD_FOR_WC /SOAP-ENV:Body/SOAP-ENV:EnvelopeWebService (RPC):Method: ZTR_PP_ORD_FOR_WCParameter 1: name : SIMPtype 
: char10value : 
dfdSoap 
Response:?xml version="1.0" 
encoding="UTF-8"?soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" soap-env:Body 
soap-env:Fault 
faultcodesoap-env:Client/faultcode 
faultstring xml:lang="en"Deserialisation failed/faultstring 
detail 
n0:SimpleTransformationFault xmlns:n0="http://www.sap.com/transformation-templates" 
MainName/1BCDWB/WSS0050714080745961000/MainName 
ProgName/1BCDWB/WSS0050714080745961000/ProgName 
Line9 /Line 
ValidX/Valid 
MatchFault 
DescriptionTextSystem expected the element 
'{urn:sap-com:document:sap:rfc:functions}ZTR_PP_ORD_FOR_WC'/DescriptionText 
TokenTypeS/TokenType 
TokenNameZTR_PP_ORD_FOR_WC/TokenName 
TokenNameSpace/ 
TokenValue/ 
/MatchFault 
Caller 
ClassCL_SRG_RFC_PROXY_CONTEXT/Class 
MethodIF_SXML_PART~DECODE/Method 
Positions1 /Positions 
/Caller 
/n0:SimpleTransformationFault 
/detail 
/soap-env:Fault 
/soap-env:Body/soap-env:Envelopeplease help me to come out of this 
problemwith 
regards,tony--- In flexcoders@yahoogroups.com, "Matt Chotin" 
[EMAIL PROTECTED] wrote: Looks 
like the Flex side didn't send the web service request in 
the way that the web service expected it. What is your web 
service engine? 
Can you share the WSDL and what 
Flex sent (web-service-proxy-debug to true in 
flex-config.xml)? 
 
  Matt 
 
  
  From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] 
On Behalf Of 
tony_lic Sent: Wednesday, July 
13, 2005 4:28 AM To: 
flexcoders@yahoogroups.com 
Subject: [flexcoders] Error in Web Service  
  Hi, I have a web service which is working fine. 
this web service does 
 not require any input 
parameters. If i 
change the web service to accept some input parameters  
then  try to run my flex application which tries to connect to 
the web  service it gives some 
strange error like 
'Deserialization Error'. the detailed error is as 
follows. 
 
n0:SimpleTransformationFault  xmlns:n0="http://www.sap.com/transformation-templates" 
MainName/1BCDWB/WSS0050713105048495000/MainName 
ProgName/1BCDWB/WSS0050713105048495000/ProgName 
Line9 /Line 
ValidX/Valid 
MatchFault 
DescriptionTextSystem expected the  element 
'{urn:sap-com:document:sap:rfc:functions} 
ZTR_PP_ORD_FOR_WC'/DescriptionText 
TokenTypeS/TokenType 
TokenNameZTR_PP_ORD_FOR_WC/TokenName 
TokenNameSpace/ 
TokenValue/ 
/MatchFault 
Caller 
ClassCL_SRG_RFC_PROXY_CONTEXT/Class 
MethodIF_SXML_PART~DECODE/Method 
Positions1 /Positions 
/Caller 
/n0:SimpleTransformationFault  what 
could be the reason. 
  My code is as follows: mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" 
 
initialize="webservice5.ZTR_PP_ORD_FOR_WC.send();"  
mx:WebService serviceName="temp" 
id="webservi

[flexcoders] Flex Bug - Fills Bleed?

2005-07-13 Thread Rick Bullotta










Seems that the fillRect object (and, in
general, certain fills drawn onto a UI object) will not fill properly (e.g. they
bleed). An example below (called inside a custom renderer) should draw a small
red flag:



 var left = 10;

 var top = 10;

  var flagSize = 6;



 target.lineStyle(2, 0xFF, 100);

 target.moveTo( left, top );

 target.lineTo( left, top - flagSize);

   target.fillRect(left, top - (flagSize *
2), left + flagSize, top - flagSize, 0xFF, 100);



The net result is not as desired, as the
flag bleeds all the way to the right side of the UIObject.



Known issue? Workarounds available?



Thanks.



- Rick






--
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] ToolTips on Tree Nodes?

2005-07-13 Thread Rick Bullotta










Any way to achieve custom tool tip
rendering on points in a chart?



-Ursprüngliche
Nachricht-
Von: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] Im
Auftrag von Stephen Gilson
Gesendet: Mittwoch, 13. Juli 2005
16:00
An: flexcoders@yahoogroups.com
Betreff: RE: [flexcoders] ToolTips
on Tree Nodes?



There is
a section in the doc on this at:



http://livedocs.macromedia.com/flex/15/flex_docs_en/1040.htm




Stephen








--
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
  
  
  

Computer software testing
  
  
Macromedia flex
  
  
Development
  
  


Software developer
  

   






  
  
  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] Accessing local mail client from FLEX

2005-06-28 Thread Rick Bullotta
Now I'm going to get spammed on my [EMAIL PROTECTED] account!  ;



From: flexcoders@yahoogroups.com on behalf of Nick Watson
Sent: Tue 6/28/2005 5:01 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Accessing local mail client from FLEX



The getUrl() function may be what your looking for

 

getURL('mailto:[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 
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/
 
winmail.dat

[flexcoders] Custom BoxRenderer Question

2005-06-28 Thread Rick Bullotta










Were trying to implement a custom
BoxRenderer (actually, wed like to build on the CircleRenderer if we had
the source to it).



Heres the tough part:



The chart uses databinding on each
series. Wed like to give the renderer access to other values in
the dataset (e.g. the position of the point depends on the value of X
and the color or other visual attribute of the point depends an algorithm based
on the values of Y and Z.



Any thoughts as to how to implement?



Better to do a custom Chart Series that
extends PlotSeries? Is this doable?



Many thanks.


- Rick








--
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, Remoting and more

2005-06-27 Thread Rick Bullotta










The danger of persistent connections is
one of scaleabilityand of trying to manage a reliable protocol across
those connections (as opposed to the relative simplicity of a request/response
protocol).



A hybrid that weve used is a server-based
collector (listener) and clients that ping (a
euphemism for lightweight polling) to see if theres something for them
to do.



The other advantage of polling is pacing
 you can manage the rate at which events/messages get exchanged even
when bursts of events occur.











From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Alberto Albericio Salvador
Sent: Monday, June 27, 2005 6:57
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex,
Remoting and more





Hi all,

I've been reading about connecting
flex client applications using 
Flash Communication Server(FCS) and shared
objects. Thats seems to cover 
the needs for developing chat-like applications...
Now, imagine I have an external Notification
server (yukon

notification server, or whatever) And I want FCS
to listen 
*persistently* to this server. With FCS and
Remoting I know how to POLL 
a database 1 time or every 10 seconds
and format that answer to feed 
the FCS but HOW can I create a persistent link to
a notification 
server,socket server or similar, get the data this
server is pushing, 
format this data and pass it to the FCS?

So basically, I want to know how to replace
POLLING with PERSISTENT 
LISTENING.

Example application: A Flex application that shows
the queue of a call 
center. When a new call arrives, it is shown in
every client running the 
application. And it is the call center
notification server that tells 
the FCS it has received the new call and NOT the
FCS that polls the 
queue of the notification server to see if there
is any new call pending.

Thank you mates!

-- 
Alberto Albericio Salvador
Aura S.A. Seguros
Departamento Informática



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.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



  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, C# Web Services, and Dates

2005-06-27 Thread Rick Bullotta










The -MM-DDTHH:MM:SS format is from .NETs
default XML serializer, which uses something like an ISO date format (.NETs
format string s). When you dump it on the server side, it is probably just
using the objects ToString() method, which seems like it chose a different
format. One question, I guess, is what schema data type the WSDL is telling
Flex to expect. Second question (to the Macromedia crew) is how Flex handles
deserialization depending on what that schema data type is.



- Rick











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matthew Shirey
Sent: Monday, June 27, 2005 6:41
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex, C#
Web Services, and Dates





Thanks for the reply, I
did try what you suggested just to be sure, but like I said before, it seems
that by the time the result event handler has fired, the data is already
bad. I just cannot see why the XML in the SOAP response is:

StartDate2005-06-01T00:00:00/StartDate

yet the object created is:

StartDate[Local Time] : Wed Dec 31 16:00:00 1969
(+0:00)


this just doesn't make any sense...

-- Matthew



On 6/27/05, Rick Bullotta [EMAIL PROTECTED]
wrote:



Here's an example with an HttpService, you can
do something similar:



Add:



result=manageData(event)



to your mx:HttpService tag



Define the handler something like this, where
it will look through the returned data structure and replace the StartDate
objects with a parsed versionin my example, my structure is a
multi-row XML document. One of the elements is named DateTime
and is in the same format you are trying to parse. If you only have a
single row, the handler might look slightly different.



function manageData(event) {


for(var i:Number=0; i event.result.Row.length; i++) {


 var d:Date =
parseDateString(event.result.Row[i].DateTime);



event.result.Rowsets.Rowset.Row[i].DateTime = d;


}

}



 



- Rick











From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Matthew Shirey
Sent: Monday, June 27, 2005 6:13
PM
To: flexcoders@yahoogroups.com
Subject: Re:
[flexcoders] Flex, C# Web Services, and Dates







Might you have some information on where to put this
exactly? It seems like it's too late by the time the object has been
created from the result of the web service call. All it seems to contain
is Invalid Date. When I look at the object that was created
in the Network Monitor, it does seem to have a date, but not the one I sent
it. 

>From the network monitor, here's the date piece of the xml recieved in the SOAP
Response entry:

StartDate2005-06-01T00:00:00/StartDate

Here's the piece of the object created from the Network Monitor Web Service
onResult entry :

StartDate[Local Time] : Wed Dec 31 16:00:00 1969
(+0:00)

as you can see, it doesn't even have the proper value in it. I've created
an onResult event handler to try to print out the value and all I get from
obj.StartDate is Invalid Date.

This one really has me stuck guys. Any help would be greatly appreciated,
thank you,

-- Matthew



On
6/25/05, Manish Jethani [EMAIL PROTECTED]
wrote:

On 6/25/05, Rick Bullotta

[EMAIL PROTECTED] wrote:

 Is there a way to use the import statement in inline script in
an
 mx:Script block?The compiler complains if we try this.


Yes, certainly.

mx:Script
import foo.Bar;

function blah():Void
{
Bar.bar();
}
/mx:Script

Must be something wrong with the way you are importing.If you still

have the problem, you could post the exact compiler error.


--
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
Mailing List
FAQ:
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search
Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.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





 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 Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.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 LI

RE: [flexcoders] Flex, C# Web Services, and Dates

2005-06-27 Thread Rick Bullotta










If you dont need HH:MM:SS
resolution, try this for a test:



Generate your WSDL, and save it to a
file. Tweak the WSDL to use xsd:date instead of xsd:dateTime, point your
Flex app to the modified WSDL, and see if that addresses the issue. There
are lots of posts I found on Google regarding .NETs dateTime
serialization woesand it seems to, by default, serialize in varying
formats depending on resolution and time zone. To be fair, the formats it
is generating should be properly parsed/processed on the Flex side based on the
following:



Also, I experimented a bit with the DateFormatter
objects parseDateString method and it worked properly on all of the
formats you generated



 mx:Script

  ![CDATA[

   function
parseDateString(str:String):Date

   {

return
DateFormatter.parseDateString(str);

   }



   function
doTest() {

alert(dateFmt.format(parseDateString(2005-06-01T00:00:00)));

alert(dateFmt.format(parseDateString(2005-06-27T18:40:41.390625-07:00)));

alert(dateFmt.format(parseDateString(2005-05-31T17:00:00-07:00)));

   }

  ]]

 /mx:Script



  mx:DateFormatter
id=dateFmt formatString={'M/D/Y' + newline + 'JJ:NN:SS'}
/





Seems like theres a disconnect
somewhere inside of the deserialization in Flex, but I cant be certain. Sounds
like it is worth creating a bug report.



- Rick













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matthew Shirey
Sent: Monday, June 27, 2005 9:36
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex, C#
Web Services, and Dates





well, the WSDL says:

s:element minOccurs=1 maxOccurs=
1 name=StartDate type=s:dateTime /

Because I am close to pulling all my hair out on this one, I
decided to try something on the server end. In the web method, I hard
coded the StartDate propery to return DateTime.Now. To my surpise, this
actually worked. I then tried hardcoding it to return new DateTime(2005,
6, 1, 0, 0, 0, 0). This produced the original error. It seems like
things are a little wierd on both ends. Depending on the date value on
the server end, the server is actually sending the XML formatted
differently. I am more confused now than ever. Does any one here
have any experience using C# Web Services with Flex using the C# DateTime
type? I would be interested in some best practices type guidlines.
However the DateTime.Now value is delt with, it works, but any other date value
I create doesn't work. It's quite confusing...

-- Matthew













--
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] Using setInterval to call an HttpService and update visual components

2005-06-27 Thread Rick Bullotta










Using the following AS, I expected to see
the updateData method being called each 5 seconds. The firing
and fired trace output occurs, but the updateData method is never
called. The enableTimer method is called upon creation of a DataGrid which is
the display object for the HttpService named TagDataService. If the updateData
method is explicitly called (via a button press), everything works fine. What
am I missing?



   function
updateData() {

trace('updating');

TagDataService.send();

trace('updated');

   }



   function
handleTimer() {

trace('firing');

updateData();

trace('fired');

   }



   function
enableTimer() {

setInterval(
handleTimer, 5000 ); 

   }










--
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, C# Web Services, and Dates

2005-06-25 Thread Rick Bullotta










Are you sure that parseDateString works
on -MM-DDThh:nn:ss? My experience has been not









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Manish Jethani
Sent: Saturday, June 25, 2005 9:41
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex, C#
Web Services, and Dates





On 6/25/05, Matthew Shirey [EMAIL PROTECTED] wrote:

[snip]


StartDate1974-01-26T00:00:00/StartDate
 
 Now I'm assuming that this is not the
format Flex expects for a date? If
 not, I guess it's easy enough to make my own
date parser, but it seems like
 this should just work.

You don't have to make your own parser.

 import mx.formatter.DateFormatter;
 var dt:Date =
DateFormatter.parseDateString(1997-07-16T19:20:30.45+01:00);
















--
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 the Yahoo! Terms of Service.












RE: [flexcoders] Flex, C# Web Services, and Dates

2005-06-25 Thread Rick Bullotta
Thanks, Manish!

Turns out the problem wasn't the parser, but the way we were using it.
We tried using it in inline script, but had problems doing so.
Placing the function in an external AS class worked fine.

Is there a way to use the import statement in inline script in an
mx:Script block?  The compiler complains if we try this.

- Rick

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Manish Jethani
Sent: Saturday, June 25, 2005 10:05 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex, C# Web Services, and Dates

On 6/25/05, Rick Bullotta [EMAIL PROTECTED] wrote:

 Are you sure that parseDateString works on -MM-DDThh:nn:ss?  My
 experience has been not... 

Yes, it does:
http://www.mail-archive.com/flexcoders@yahoogroups.com/msg08834.html


--
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



 


--
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] Re: Flex - IP limited Developer version

2005-06-22 Thread Rick Bullotta










The only thing Ive noticed is that
once the 60-day period was over, Flex is doing something when idle that uses a good
bit of CPU (4-6% on average). Not sure what it is doing









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of don4sin
Sent: Wednesday, June 22, 2005
2:18 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex -
IP limited Developer version





That hasn't been my experience. I was accessing my FLex app from
a 
machine on the local net and DHCP changed the IP
address of that 
machine. I started getting Licensing error
messages when I tried to 
access the app. Restarting the Flex server
had no effect. I had to 
force the client machine back to the original IP
address, and then 
it worked again.



--- In flexcoders@yahoogroups.com,
Tracy Spratt [EMAIL PROTECTED] 
wrote:
 It is actually 5 ip addresses, and it is the
first 5 to hit the 
url. As
 far as I know there is no way to control
this.
 
 Access is limited to those 5 addresses until
you bounce the Flex 
server,
 then it clears the list. So I guess you
will have to have the 
prospect
 call before connecting, so you can restart
the Flex server.
 
 Now, there might be some way to have the
web/application server 
restrict
 the ip addresses it will pass on to Flex, but
that is just a guess.
 
 Tracy
 
 
 -Original Message-
 From: flexcoders@yahoogroups.com

[mailto:flexcoders@yahoogroups.com]
On
 Behalf Of don4sin
 Sent: Wednesday, June 22, 2005 11:09 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Flex - IP limited
Developer version
 
 The Flex Developer edition is IP
limited. It can be accessed 
 from 'localhost' and one other IP
address. Do I have any control
 over that 'other' IP address? From my
experience, it grabs the 
first 
 IP address that accesses it and sticks with
that. Can I choose it 
or 
 change it?
 
 It would still be just one 'other' IP address
at a time, but I 
want to 
 choose what that one IP address is at any
given time, if for 
instance 
 I have a new customer I want to do a demo
for.
 
 
 
 
 
 
 Yahoo! Groups Links














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 the Yahoo! Terms of Service.












RE: [flexcoders] Design flaw in DataGrid sorting

2005-06-14 Thread Rick Bullotta
How about sorting on a hidden column?  Format the date MMDDJJNNSS in this 
hidden column.
 



From: flexcoders@yahoogroups.com on behalf of Sean McKibben
Sent: Tue 6/14/2005 3:34 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Design flaw in DataGrid sorting


I have to call the data grid's sorting mechanism flawed.

Let's examine a case where you want to sort a dataGrid by a date  
column. In all likelihood, you're going to have a labelFunction to  
format your date objects into a string. Depending on your locale,  
that string is probably not what you want to sort on (i.e. 02/04/05  
comes before 02/03/06 on the calendar, but not as a string), so you'd  
like to write a sortCompare function for that column.

Unfortunately, the sortCompare function only receives the string  
value from the labelFunction, so you'd either have to do some very  
slow string parsing, or sort based on the results from the  
labelFunction alone. You don't get a chance to compare any more  
information about a row than the string returned by a labelFunction,  
and the labelFunction can only return a string.

Not a good way to do it, Macromedia!

So, what is the best workaround? Let it sort once, then resort using  
the headerRelease event and operating on the DataProvider? (assuming  
headerRelease fires after sorting is done - contrary to the  
documentation, but in line with Ailstair McLeod's tests)


Sean





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] mailto:[EMAIL PROTECTED] 
  
*   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
http://docs.yahoo.com/info/terms/ . 




 
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/
 
winmail.dat

[flexcoders] Parse Date/Time Value from XML (in ISO Format)

2005-06-13 Thread Rick Bullotta










Given a date/time value
obtained via HttpRequest or a web service in ISO format (-MM-ddTHH:mm:ss),
what is the based technique for parsing this to a Date object in ActionScript? There
do not seem to be any built-in date parsing functions



Thanks
for any suggestions!



- Rick











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 the Yahoo! Terms of Service.












RE: [flexcoders] render Pdf document in a flex app

2005-06-10 Thread Rick Bullotta










Perhaps host the whole thing in a JSP
page and an IFrame (which will dynamically point to your PDF file) and use
_javascript_ to bind the two together









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Valy Sivec
Sent: Friday, June 10, 2005 9:04
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] render Pdf
document in a flex app





Hello flexcoders,

How can I
render a pdf document in a Flex container
(panel)?
I have some library of pdf documents that I
would like
to display them within the app, no pop-ups
or things
like that... I'd like to be able include the
pdfs at
runtime...

Thanks,
Valy















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 the Yahoo! Terms of Service.












[flexcoders] Flex WebApp Consuming CPU when idle?

2005-06-09 Thread Rick Bullotta










Looks like the Flex web app is using CPU
(doing something?) on about a 1-2 second interval (some type of license check?)
that consumes about 4% of the CPU on average.

Rick Bullotta
CTO
Lighthammer Software














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 the Yahoo! Terms of Service.












RE: [flexcoders] Re: Flex WebApp Consuming CPU when idle?

2005-06-09 Thread Rick Bullotta
I would guess it has reverted to development mode by now, but not certain.  
I'll look at the web app server's logs.



From: flexcoders@yahoogroups.com on behalf of Daniel Harfleet
Sent: Thu 6/9/2005 3:46 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex WebApp Consuming CPU when idle?


Hi Rick,

are you running it in production or development mode ?

dan


--- In flexcoders@yahoogroups.com, Rick Bullotta
[EMAIL PROTECTED] wrote:
 Looks like the Flex web app is using CPU (doing something?) on about a
 1-2 second interval (some type of license check?) that consumes about 4%
 of the CPU on average.
 
 Rick Bullotta
 CTO
 Lighthammer Software







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] mailto:[EMAIL PROTECTED] 
  
*   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
http://docs.yahoo.com/info/terms/ . 




 
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/
 
winmail.dat

RE: [flexcoders] Need help with protecting FLVs

2005-06-07 Thread Rick Bullotta










Given that Flex is targeted at OEMs,
however, it may be very desirable to offer some type of key-based
encryption/decryption so that OEMs/ISVs can protect their
intellectual property.



Rick Bullotta
CTO
Lighthammer Software
www.lighthammer.com 











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz
Sent: Tuesday, June 07, 2005 8:57
AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Need
help with protecting FLVs





Or use Flash Communication Server to achieve true streaming and the
best
security...


-abdul 

-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
Behalf Of Alistair McLeod
Sent: Tuesday, June 07, 2005 2:45 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Need help with
protecting FLVs

Hi Jeff,

You'll probably have to stick the FLV somewhere
protected on the server
(outwith the webapp context, or under WEB-INF, for
example) and write a
servlet to serve them, remembering to set the mime
type.

Of course, people could still use the servlet to
retrieve the FLV, but
its
less of a risk (security through obscurity). If
this is a problem, you
could
create some sort of session token, created by the
server and passed back
to
the client, which must then be passed to the
servlet to validate.

Cheers,

Ali 


--
Alistair McLeod
Development Director
iteration::two
[EMAIL PROTECTED]

Office: +44 (0)131 338 6108

This e-mail and any associated attachments
transmitted with it may
contain
confidential information and must not be copied,
or disclosed, or used
by
anyone other than the intended recipient(s). If
you are not the intended
recipient(s) please destroy this e-mail, and any
copies of it,
immediately.

Please also note that while software systems have
been used to try to
ensure
that this e-mail has been swept for viruses,
iteration::two do not
accept
responsibility for any damage or loss caused in
respect of any viruses
transmitted by the e-mail. Please ensure your own
checks are carried out
before any attachments are opened.


-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
Behalf Of Jeff Steiner
Sent: 07 June 2005 07:04
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Need help with protecting
FLVs

Nutshell: I am working with a handful of
FLVs for a tech demo that I am
creating and want to prevent them from being
downloaded. Does anyone
have a
good idea about how I can go about doing this?

Longer version: I have encoded FLVs sitting in a
web directory (because
contentPath requires a location string), but that
also means that a user
can
type in the name of the file and download the FLV
directly (I get the
download box when I type out the name of the
FLV). I tried putting the
files on a web server inside the firewall,
thinking that the Flex server
would somehow magically act as a proxy just for
the Flex application.
Worked fine as long as I was sitting inside the
firewall ;)

Any ideas would be great!

Thanks,
Jeff
http://www.flexauthority.com






Yahoo! Groups Links









Yahoo! Groups Links


















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 the Yahoo! Terms of Service.












RE: [flexcoders] More interesting than Zorn? - Details on Flex 2.0.....

2005-06-07 Thread Rick Bullotta










Id also like to see MM implement
the optional xpath functionality









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Aldo Bucchi
Sent: Tuesday, June 07, 2005 12:25
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] More
interesting than Zorn? - Details on Flex 2.0.






  The Flex
  programming model will also leverage
 new industry standards, suck as E4X
  (ECMAScript for XML)
 
 I assume we are talking about a flash player
 implementation (Flex  Flash) ?
 
 On 6/7/05, Aldo Bucchi
 [EMAIL PROTECTED] wrote:
  E4X is worth the WOOOW!
  on one side it is a very smart
 technology.
  on the other, talks about Macromedia
 seriously committing to embracing
  the ECMA standards to a broad extent.
 Excellent.
  
  Check out Jon Udell's introduction for a
 quick overview
  http://weblog.infoworld.com/udell/2004/09/29.html
  
  ...or if you are seriously bored, take a
 look at the published standard
  http://www.ecma-international.org/publications/standards/Ecma-357.htm
  
  Best Regards,
  Aldo
  













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 the Yahoo! Terms of Service.












RE: [flexcoders] RE: Flex futures...

2005-06-06 Thread Rick Bullotta
SVG helps with an elegant technique for addressible vector graphics.  As 
opposed to explicitly calling methods to draw circles, squares, lines, etc...it 
provides an declarative, XML-based mechanism for doing so.  Also, since the XML 
elements are addressible, by manipulating the XML (appearance attributes, for 
example), you can dynamically control the visual appearance.  It would be nice 
if this functionality was SVG-based, since there are dozens of mainstream 
drawing tools that can save as SVG.
 
Hope that helps.  Have someone contact me off-list if you need more info.
 
- Rick



From: flexcoders@yahoogroups.com on behalf of David Mendels
Sent: Mon 6/6/2005 7:28 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] RE: Flex futures...


Hi,
 
What is the problem you want to solve with SVG-T on the mainstream Flash 
Player?  Describe your use case.  I'll get it to the team,
 
Regards,
David




From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Rick Bullotta
Sent: Monday, June 06, 2005 7:11 AM
To: flexcoders@yahoogroups.com
Subject: RE: Flex futures...


David:
 
One convergence question for you (or product marketing):
 
Ironically, Flash Player Lite has support for SVG-T, but Flash/Flex 
do not (only embedding of static SVG on the server-side for Flex).  Any plans 
to add the SVG-T capabilities to the mainstream Flash Player?  I would 
certainly encourage it, and I know your new friends at Adobe can help g.
 
Best regards,
 
- Rick Bullotta
  CTO
  Lighthammer Software
 



From: flexcoders@yahoogroups.com on behalf of David Mendels
Sent: Mon 6/6/2005 5:50 AM
To: flexcoders@yahoogroups.com
Subject: Flex futures...(was RE: [flexcoders] Re: file handling)


Hi,

Good catch Ian.  While today was not a product announcement, we are
talking more about the long term roadmap for both the Flash Player and
Flex.  The whitepaper his some high-level information on both.  
http://www.macromedia.com/platform/whitepapers/platform_overview.pdf

Regards,
David






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] mailto:[EMAIL PROTECTED] 
  
*   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
http://docs.yahoo.com/info/terms/ . 




 
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/
 
winmail.dat

RE: [flexcoders] RIAs

2005-06-02 Thread Rick Bullotta










From what I recall it was Macromedia that
first used the term, in late 2002.









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Benjamin Dobler
Sent: Thursday, June 02, 2005 2:26
PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] RIAs





Hi All,



Does anyone remember when the word RIA (Rich Internet
Application) first appeared.

Who invented the term? I think it was someone at MM but i
can`t remember.





Benjamin









RichApps.de

RIA
Development



Benjamin Dobler



web: | http://www.richapps.de

mail: |[EMAIL PROTECTED]














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 the Yahoo! Terms of Service.












RE: [flexcoders] RIAs

2005-06-02 Thread Rick Bullotta
Title: Message










humor



To join the club, I will now officially
coin the terms Galactic RIA, Consumer RIA,
Mobile RIA, and Service Oriented RIA,
and Filthy RIA J 



/humor



Rick
 Bullotta
CTO
Lighthammer Software
www.lighthammer.com 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sreejith Unnikrishnan
Sent: Thursday, June 02, 2005 3:13
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] RIAs







Later a new term
Enterprise RIA was coined by Steven Webster.











 At iteration::two,
we've coined the term Enterprise RIA, to describe Rich Internet
Applications of the scale and complexity you'd expect to find in a large,
transactional web application, such as online banking, reservation systems or
large commerce sites for example. 














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 the Yahoo! Terms of Service.












[flexcoders] Flex/Maelstrom/PNG/SVG?

2005-06-01 Thread Rick Bullotta










Any insights as to whether or not
Maelstrom/Flash Player 8 will support PNG (or ideally SVG) images natively/remotely
(as opposed to embedded)?



Rick
 Bullotta
CTO
Lighthammer Software
www.lighthammer.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 the Yahoo! Terms of Service.












RE: [flexcoders] Image control does not display dynamically generated images?

2005-06-01 Thread Rick Bullotta










Not sure we have the ability to change
the JPG rendering typeof course, everything else on the planet supports
this JPEG format  why not Flash Player? J.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL
Sent: Wednesday, June 01, 2005
2:37 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Image
control does not display dynamically generated images?







Are the JPEG's being created progressive? Flash Player
only supports non-progressive JPEG's to be loaded at runtime.



















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 the Yahoo! Terms of Service.












[flexcoders] Post 60 Days - Development Mode?

2005-05-31 Thread Rick Bullotta










Seems like although Flex server-side will
run, Flex Builder doesnt run in developer mode after 60
days. Whats the scoop?











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 the Yahoo! Terms of Service.












RE: [flexcoders] Post 60 Days - Development Mode?

2005-05-31 Thread Rick Bullotta










Whats the confusion? Well,
since you asked J



1) You cant click on the Buy button to buy a
FlexBuilder license (despite its presence in the dialog  holdover from
the Dreamweaver code?)

2) You cant Buy a MVLP (replacement for DevNet)
subscription online

3) You dont seem to be able to Buy FlexBuilder
(or Flex, for that matter) online at all



Wed be perfectly happy to spend
some money  theres just no way to easily do so! ;)



No big deal  Im sure the
OEM people will get us an eval extension. We are very impressed with Flex
and are considering integrating it with some future products. Just wanted
to see if we were missing something regarding the eval behavior.



Also, FYI, uninstalling Flex is much
easier than uninstalling Flex Builder  just delete a directory! Virtually
no other remnants to worry about













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dave Carabetta
Sent: Tuesday, May 31, 2005 10:21
AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Post 60
Days - Development Mode?





On 5/31/05, Rick Bullotta [EMAIL PROTECTED]
wrote:
 
 Seems
like although Flex server-side will run, Flex Builder doesn't run in

developer mode after 60 days. What's the scoop? 

The scoop is
that you need to get a serial number. I'm not sure what
the
confusion is? It wouldn't make much sense for Macromedia to
distribute
an IDE that's meant for one user at a time in a developer
mode. Since
Flex server is meant for multiple users, it would make
more sense
for that product to revert to a limited IP verson after 60
days, as
uninstalling/re-installing server products tend to be more
tedious than
desktop products such as Flex Builder.

Regards,
Dave.













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 the Yahoo! Terms of Service.












RE: [flexcoders] Need to Run a exe/dll in the server using java RPC ..pls help

2005-05-22 Thread Rick Bullotta
Easiest way would be to wrap the DLL with a web service using .NET.



From: flexcoders@yahoogroups.com on behalf of Martin Louis
Sent: Sun 5/22/2005 1:42 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Need to Run a exe/dll in the server using java RPC ..pls 
help


New bee

  i need help to know if i can run a .exe/dll file using java RPC or 
any other method .. i tried using java RPC i get an error of creating 
new Thred ... pls help 


i am on a client POC 

thanks in advance 









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] mailto:[EMAIL PROTECTED] 
  
*   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
http://docs.yahoo.com/info/terms/ . 




 
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/
 
winmail.dat

RE: [flexcoders] Looking for a critique

2005-05-14 Thread Rick Bullotta
Well, for one thing, you're violating Weather Channel's copyrights!  Be 
careful...



From: flexcoders@yahoogroups.com on behalf of Jeff Steiner
Sent: Fri 5/13/2005 11:26 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Looking for a critique


Manish,

Would you mind taking a look at something for me and let me know what you
think?

http://www.flexauthority.com/Test/weather/weather.mxml

Thanks,
Jeff





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] mailto:[EMAIL PROTECTED] 
  
*   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
http://docs.yahoo.com/info/terms/ . 




 
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/
 
winmail.dat

RE: [flexcoders] Questions, Questions

2005-05-04 Thread Rick Bullotta










David:



Yes, Flex needs Flex to run g.



Call Macromedias OEM/ISV sales
organization and talk with them about your needs and pricing constraints. They
seem very flexible and willing to accommodate unique usage scenarios compared
to other OEMs Ive worked with.





Rick Bullotta
CTO
Lighthammer Software
www.lighthammer.com 













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of David Terry
Sent: Wednesday, May 04, 2005
10:28 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Questions,
Questions





Hello Everyone,



I want to thank everyone who has taken the time to answer
my questions about Flex. Most were basic, new user questions, and I
really appreciate all the help.



I have been researching Flex for an application my company
wants to build and I we have come across a point of contention 
price. My company now wants this application to be independent
instead of integrated into a bigger solution, and the idea of hosting is going
out the window.



So I have 2 starter questions




 Can a Flex application be
 compiled into a SWF file, or made to run independent of the server?
 Does a Flex application need
 to be hosted on a Flex server?




Thanks,

David T.














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 the Yahoo! Terms of Service.










image001.gif

RE: [flexcoders] Questions, Questions

2005-05-04 Thread Rick Bullotta










Yes, you can compile to SWF (and SWC),
but any data services will require the Flex back-end to communicate with.



Regarding pricing, 12K is just the list
price. Contact the OEM/ISV sales group.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of David Terry
Sent: Wednesday, May 04, 2005
10:43 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Questions, Questions





Rick,



Just to clarify



You can NOT compile Flex into a SWF?



And



Any business my company wants to sell this
application to needs to spend 12K before they can run a Flex application?



~David T.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Rick
 Bullotta
Sent: Wednesday, May 04, 2005
09:33
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Questions, Questions





David:



Yes, Flex needs Flex to run g.



Call Macromedias OEM/ISV sales
organization and talk with them about your needs and pricing constraints.
They seem very flexible and willing to accommodate unique usage scenarios
compared to other OEMs Ive worked with.





Rick
 Bullotta
CTO
Lighthammer Software
www.lighthammer.com 











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of David Terry
Sent: Wednesday, May 04, 2005
10:28 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Questions,
Questions





Hello Everyone,



I want to thank everyone who has taken the time to answer
my questions about Flex. Most were basic, new user questions, and I
really appreciate all the help.



I have been researching Flex for an application my company
wants to build and I we have come across a point of contention 
price. My company now wants this application to be independent
instead of integrated into a bigger solution, and the idea of hosting is going
out the window.



So I have 2 starter questions




 Can a Flex application be
 compiled into a SWF file, or made to run independent of the server?
 Does a Flex application need
 to be hosted on a Flex server?




Thanks,

David T.
















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 the Yahoo! Terms of Service.












RE: [flexcoders] Questions, Questions

2005-05-04 Thread Rick Bullotta










One last time:



If you are an ISV or OEM, call Macromedia
to discuss your SPECIFIC application needs in terms of pricing. They are very
open to working creatively with partners in this aspect, but youll never
know unless you call.



- Rick









From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jim Schneider
Sent: Wednesday, May 04, 2005
11:22 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Questions, Questions





Could you expand on/list these unpleasant limitations? I'm
one of these
small
companies trying to decide whether Flex is worth it.

Thanks,

Jim














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 the Yahoo! Terms of Service.












RE: [flexcoders] HTTPService HTML Encoding/Parameter Issues

2005-05-02 Thread Rick Bullotta










Hi, Matt! What about the encoding topic?
Known issue?









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin
Sent: Sunday, May 01, 2005 11:50
PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
HTTPService HTML Encoding/Parameter Issues





You can file a bug report here: http://www.macromedia.com/go/wish.



Most of these you can workaround by
dropping into ActionScript. Just use [] syntax to update your request
properties. E.g., abc.request[param.1] = 20;



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of RBullotta
Sent: Saturday, April 30, 2005
5:08 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] HTTPService
HTML Encoding/Parameter Issues





Here are some issues we've
encountered in Flex 1.5 when trying to 
use
it with some of our web applications via HTTP:

1)
Cannot use parameter names in HTTPService if parameter has a . 
in
the name as in: 


mx:HTTPService 
url=""
href="http://localhost/Lighthammer/Illuminator?QueryTemplate=Demo/">http://localhost/Lighthammer/Illuminator?QueryTemplate=Demo/
Historica...

Queryamp;Content-Type=text/xml
id=abc 

mx:request 

Param.120/Param.1 

/mx:request 

/mx:HTTPService 


2)
There does not appear to be any way to pass characters that 
should
be HTML encoded (such as the equals sign below) using the 
mx:request
technique (also note that the parameter name is XXX, 
but
the right side value should be the string A=whatever, 
properly
encoded)...



mx:HTTPService 
url=""
href="http://localhost/Lighthammer/Illuminator?QueryTemplate=Demo/">http://localhost/Lighthammer/Illuminator?QueryTemplate=Demo/
Historica...

Queryamp;Content-Type=text/xml
id=abc 

mx:request 

XXXA={mydataboundthing.value}/XXX 

/mx:request 

/mx:HTTPService 

This
causes the compiler to freak out 


---or
--- 



mx:HTTPService 
url=""
href="http://localhost/Lighthammer/Illuminator?QueryTemplate=Demo/">http://localhost/Lighthammer/Illuminator?QueryTemplate=Demo/
Historica...

Queryamp;Content-Type=text/xml
id=abc 

mx:request 

XXXA%3D{mydataboundthing.value}/XXX 

/mx:request 

/mx:HTTPService 


This
causes the ampersand to be double encoded  



















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 the Yahoo! Terms of Service.












[flexcoders] API/Programmatic interface to MXMLC?

2005-05-02 Thread Rick Bullotta










Is there a programmatic interface, preferably
in Java, to the same code as MXMLC? Were interested in on-the-fly
MXML generating/compilation, and cannot use the JSP approach.



Thanks!

Rick Bullotta
CTO
Lighthammer Software
www.lighthammer.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 the Yahoo! Terms of Service.












RE: [flexcoders] API/Programmatic interface to MXMLC?

2005-05-02 Thread Rick Bullotta
Since the requests are totally dynamic, streaming = optimal approach,
with nothing written to disk and no shelling.  Since MXMLC requires
Java to run, I suspect there's an API, just not published.  We'll find
it ;.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Joe Berkovitz
Sent: Monday, May 02, 2005 1:43 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] API/Programmatic interface to MXMLC?

Well, you can always run MXMLC itself, because it's a Java program.  The

mxmlc command is roughly equivalent to java -jar 
${FLEX_HOME}/lib/mxmlc.jar [args].

I note that running MXMLC is not exactly the same as the MXML 
generation, because you have to pass in some args that pertain to the 
runtime environment, in particular the AMF gateway URL.  It is also 
slower because it doesn't do incremental compilation.

You could also probably accomplish the same thing by simply generating 
an HTTP request for an .mxml file that you dynamically generate in the 
doc root.




 
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] API/Programmatic interface to MXMLC?

2005-05-02 Thread Rick Bullotta










Looks like EmbeddedMxmlc is the
secret/magic classwith a bunch of static methods for compiling and such.
Now to figure out the magic









From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rick Bullotta
Sent: Monday, May 02, 2005 1:56 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
API/Programmatic interface to MXMLC?





Since the requests are totally dynamic, streaming = optimal approach,
with nothing written to disk and no
shelling. Since MXMLC requires
Java to run, I suspect there's an API, just not
published. We'll find
it ;.


-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
Behalf Of Joe Berkovitz
Sent: Monday, May 02, 2005 1:43 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] API/Programmatic
interface to MXMLC?

Well, you can always run MXMLC itself, because
it's a Java program. The

mxmlc command is roughly equivalent to java -jar 
${FLEX_HOME}/lib/mxmlc.jar [args].

I note that running MXMLC is not exactly the same
as the MXML 
generation, because you have to pass in some args
that pertain to the 
runtime environment, in particular the AMF gateway
URL. It is also 
slower because it doesn't do incremental
compilation.

You could also probably accomplish the same thing
by simply generating 
an HTTP request for an .mxml file that you
dynamically generate in the 
doc root.














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 the Yahoo! Terms of Service.