[flexcoders] Re: Flex 4 (Gumbo) not compiling, Class Error

2008-07-15 Thread imrahil_poland
  Is anyone getting these errors, I just got build 2480-Today's
build. The other builds worked fine for me.  
 1046: Type was not found or was not a compile-time constant: TextBlock.
 1046: Type was not found or was not a compile-time constant:
ElementFormat.


I compiled build 2485 (newest one) without these errors. Only problems
was caused by wrong version of Ant (I used 1.7.0, better was 1.6.5)

Jarek



[flexcoders] Re: How do YOU do functional testing and automation package questions

2008-01-21 Thread imrahil_poland
--- In flexcoders@yahoogroups.com, Jonathan Branam
[EMAIL PROTECTED] wrote:

 And those will work with Flex 2 projects? That's the question. I see the
 files for Flex 3... I assumed they were incompatible.

You must recompile FunFX adapter's sources to use it with Flex2. If
you are interested, I can send you a copy of my Flex2 compatible version

Jarek



[flexcoders] RTMP over SSL (NOT A RTMP over HTTPS) problem

2007-09-24 Thread imrahil_poland
Hi there,

We are trying to implement scenario where Flex based client connects
using RTMP over SSL (NOT A RTMP over HTTPS) flex documentation
suggests it should be possible
(http://livedocs.adobe.com/flex/201/langref/flash/net/NetConnection.html#proxyType).
We are currently not planning to use FDS – we stick to custom
solution, so the idea is to use a 3rd party SSL tunnel and RTMP
enabled server (so server2tunnel – RTMP and tunnel2client RTMP over SSL).

It obviously fails… we've put a network monitor in between RTMP server
and our SSL tunnel… the trace is like 2 dummy connections that pass
SSL authorization (we've checked our Stunel logs) but does not (NEVER
EVER) transfer any data… Flex Client simply establishes the SSL
connection (so no RTMP traffic jet) and then gracefully closes the TCP
socket (Fin Ack,etc)…
This happens 2 times and then There comes another connection from Flex
client that sens some data over established SSL and the dumped data
looks like an HTTP encapsulated RTMP (RTMPT)

We don't want RTMPT ! we don't want to put RTMP over any other
protocol than SSL!

Now… We've checked the connection status of NetConnection and it's
either NetConnection.Connect.CertificatePrincipalMismatch or
NetConnection.Connect.CertificateUntrustedSigner… The funny thing is
that this events are rised before user reacts to the browser
certificate popup ! There is no Connect or Fail on the connection once
user answers to the browser challenge – connection keeps on hanging
with only one packet pushed through (the one that looks like a http
encapsulated rtmp) 
we know there's a common issue with self signed certs but we've tried
all the common solutions with little effect…. 
(Self signed certificates was created with this instructions -
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=583threadid=1242192)

The big question – IS there such a thing as RTMP over SSL (no http in
the middle) for Flex apps ? And if so – how to configure NetConnection
to enforce it?

Oh... and we're using .NET WebORB as RTMP server here !

BR,
Jarek



[flexcoders] Re: RTMP over SSL (NOT A RTMP over HTTPS) problem

2007-09-24 Thread imrahil_poland
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED]
wrote:

  using RTMP over SSL (NOT A RTMP over HTTPS) flex documentation
 
 Umm.
 I'm confused (easy enough to do :-) ).
 Is HTTPS not just what web browsers display when they are using SSL
(or TLS 
 rather) ?


According to the manual there are 2 Secure RTMP scenarios :

1) RTMP over plain SSL
2) RTMP over HTTPS (equals to RTMPT over SSL)

so... we can have plain binary RTMP encrypted or... we can have it
packed into RTMPT (HTTP tunneled) and then encrypted with SSL/TSL
(that gives you more or less HTTPS tunneling)...

we are struggling to get Flex do it 1st way and the Flash player gives
us this 2-fake connections and a HTTP tunneled 3rd one :(