# NetConnection with C# : FluorineFX ?

**URL:** https://community.wowza.com/t/netconnection-with-c-fluorinefx/455
**Category:** Wowza Streaming Engine
**Created:** [September 22, 2009, 5:09pm UTC](https://community.wowza.com/t/netconnection-with-c-fluorinefx/455 "2009-09-22T17:09:10Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![system](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/system/32/447_2.png) [@system](https://community.wowza.com/u/system)
#### Post date: [September 22, 2009, 5:09pm UTC](https://community.wowza.com/t/netconnection-with-c-fluorinefx/455/1 "2009-09-22T17:09:10Z")

</div>

I’m trying to use [FluorineFx](http://www.fluorinefx.com) to call server-side methods from C#. It looks like this ([http://www.fluorinefx.com/docs/fluorine/netconnectionrtmp.html](http://www.fluorinefx.com/docs/fluorine/netconnectionrtmp.html)) :

> // Create NetConnection client
> 
> \_netConnection = new NetConnection();
> 
> \_netConnection.OnConnect += new ConnectHandler(\_netConnection\_OnConnect);
> 
> \_netConnection.NetStatus += new NetStatusHandler(\_netConnection\_NetStatus);
> 
> \_netConnection.Connect(“rtmp://localhost:1935/fmle”);
> 
> This leads to a connection error :
> 
> > [1] = {[code, NetConnection.Connect.Rejected]}
> > 
> > [2] = {[description, Connection failed: Application folder ([install-location]/applications/) is missing.]}
> > 
> > Of course, application folder does exist. WMS error log :
> > 
> > > ERROR server comment 2009-09-22 18:05:10 … handleResult: can’t find resultObj: 0
> > > 
> > > Any idea or experience with FluorineFx ?
> > > 
> > > Thank you.

---

<div class="post-metadata">

### Author: ![Sebastien\_Faure](https://avatars.discourse-cdn.com/v4/letter/s/9f8e36/32.png) [@Sebastien\_Faure](https://community.wowza.com/u/Sebastien_Faure)
#### Post date: [September 22, 2009, 6:13pm UTC](https://community.wowza.com/t/netconnection-with-c-fluorinefx/455/2 "2009-09-22T18:13:00Z")

</div>

When DEBUG logging is enabled :

> DEBUG server comment 2009-09-22 19:09:25 - - - - - 14.27 - - - - - - - open
> 
> INFO server comment 2009-09-22 19:09:25 - - - - - 14.274 - - - - - - - handshake0: 1460
> 
> INFO server comment 2009-09-22 19:09:25 - - - - - 14.274 - - - - - - - handshake0: 1537
> 
> DEBUG server comment 2009-09-22 19:09:25 - - - - - 14.355 - - - - - - - Handshake[1]: length:1460
> 
> DEBUG server comment 2009-09-22 19:09:25 - - - - - 14.361 - - - - - - - Handshake[1]: length:1536
> 
> DEBUG server comment 2009-09-22 19:09:25 - - - - - 14.38 - - - - - - - Handshake[1]: length:1776
> 
> DEBUG server comment 2009-09-22 19:09:25 - - - - - 14.382 - - - - - - - Handshake[2]: length:240
> 
> DEBUG server comment 2009-09-22 19:09:25 - - - - - 14.39 - - - - - - - cmd: connect
> 
> INFO session connect-pending 2009-09-22 19:09:25 635121375 XXX.XXX.XXX.XXX - 3313 3073 0.118 - - - - - - XXX.XXX.XXX.XXX -
> 
> INFO session connect 2009-09-22 19:09:25 635121375 XXX.XXX.XXX.XXX - 3313 3073 0.119 - - - - - - XXX.XXX.XXX.XXX -
> 
> DEBUG server comment 2009-09-22 19:09:48 - - - - - 37.535 - - - - - - - cmd: \_result
> 
> ERROR server comment 2009-09-22 19:09:48 - - - - - 37.535 - - - - - - - handleResult: can’t find resultObj: 0
> 
> Seems FluorineFx is doing wrong when connecting to WMS …

---

<div class="post-metadata">

### Author: ![Charlie\_Good](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/charlie_good/32/383_2.png) [@Charlie\_Good](https://community.wowza.com/u/Charlie_Good)
#### Post date: [September 22, 2009, 12:43pm UTC](https://community.wowza.com/t/netconnection-with-c-fluorinefx/455/3 "2009-09-22T12:43:06Z")

</div>

I have not heard of this product. We really cannot support issues with this type of server/client.

Charlie

---

<div class="post-metadata">

### Author: ![Charlie\_Good](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/charlie_good/32/383_2.png) [@Charlie\_Good](https://community.wowza.com/u/Charlie_Good)
#### Post date: [September 22, 2009, 3:32pm UTC](https://community.wowza.com/t/netconnection-with-c-fluorinefx/455/4 "2009-09-22T15:32:04Z")

</div>

I really don’t want to dig into debugging FluorineFx. If you want to remotely call into Wowza Media Server either add an HTTPProvider interface or a web services interface.

[http://community.wowza.com/t/-/52](http://community.wowza.com/t/-/52)

HTTPProvider is discussed in the User’s Guide.

Charlie

---

<div class="post-metadata">

### Author: ![Sebastien\_Faure](https://avatars.discourse-cdn.com/v4/letter/s/9f8e36/32.png) [@Sebastien\_Faure](https://community.wowza.com/u/Sebastien_Faure)
#### Post date: [September 22, 2009, 11:08pm UTC](https://community.wowza.com/t/netconnection-with-c-fluorinefx/455/5 "2009-09-22T23:08:12Z")

</div>

Ok, let me explain what I’d like to do : call WMS module methods from sth else than my usual Flex app (NetConnection connect() and call()).

Actually, I need to write cuepoints automatically, without using any GUI and any human intervention.

So I’m looking for another app layer than Flex to achieve this. Any idea ?

Anyway, could you explain me these 2 lines :

> DEBUG server comment 2009-09-22 19:09:48 - - - - - 37.535 - - - - - - - cmd: \_result
> 
> ERROR server comment 2009-09-22 19:09:48 - - - - - 37.535 - - - - - - - handleResult: can’t find resultObj: 0

Thank you.
