Media Server :: FMS - PHP And POST Method Forms

Aug 30, 2010

I've installed free FMS developper version on a vista OS, using the embeded Apache server. I added PHP 5.13 and everything seems to work except that : when I try to manage HTML forms, using the 'post' method, the result is a prompt windows, asking me for downloading the php file (corresponding to that pointed in the 'action' attribute. It acts as if Apache did not recognize the type php. My httpd.conf includes everyting to make php works fine. The clue is, when I change the form 'method' to 'GET', the php script works well! My FMS is configured to tunnel the HTTP request, listening to ports 80 and 1935 ant proxying HTTP to port 8134 (defaults) When I override this tunneling, by requesting the php file from my web browser directly to port 8134, it works fine too ! Now, I know that the problem comes from FMS and HTTP tunneling, but I have no idea how to solve it...

View 9 Replies


Similar Posts:


Media Server :: Connecting To Remote Servers (HTTP GET, POST)?

Mar 1, 2010

I'm running FMS 3.5 on RedHat, and have some server side actionscript that is attempting to perform an HTTP GET on a remote URL, e.g:
 
loadVars.send("http://someurl/");
 
This works on a Windows XP development server, but not on the RedHat deployment server. Are there any configuration options that I need to be aware of in order to allow my application to perform requests such as these (i.e. HTTP requests to remote servers)?

View 1 Replies

Media Server :: RSS Feed Widget To Post News And Updates

Mar 9, 2010

I am thinking of an AIR app that I can use as an RSS feed widget like stuff. In which I can post news and updates etc..using FMS.

View 4 Replies

Media Server :: NetConnection Using POST Requests To Retrieve Data?

Aug 20, 2010

I've noticed that when I use NetConnection.call(methodName) in my client Actionscript it sends a POST request off to the server. I thought this was odd because requests for data are normally GET operations but I didn't worry about it because it doesn't impact my applicationow I have our sysadmin complaining about the amount of data I'm shifting over POST requests because POST requests aren't cached by the web servers (and we are working with the kind of traffic levels where that matters.) Is there anyway I can make call() use GET?The code  I'm using is all fairly standard, but here is the relevant snippit:

var nc:NetConnection = new NetConnection();
nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);

[code]......

View 1 Replies

Media Server :: Flvcheck/f4v-post-processor Error: -18 Truncated Box?

Jul 11, 2011

i have a recorded dvr stream, using the dvrcast sample application. of course, i couldn't play it or use it in video post processing tools so i tried the f4v post processor fms tool.unfortunately, both f4v post processor and flvcheck tools throw error and exit immediately

View 11 Replies

Media Server :: Prevent The Illegal Distribution Of Video And POST Data?

Oct 31, 2011

setPublishPassword and setPostingPassword ?I do not quite understand, do not use an example.I set him groupspecWithOutAuthorizations, but was illegally set to groupspecWithAuthorizations how to do.

View 4 Replies

Media Server :: Recorded / Post Processed Stream Won't Play Until Restarted

Apr 6, 2012

I'm having a very frustrating problem with FMS. A stream recorded on the server-side won't play until I restart the server.

The user flow I'm currently working with is:

1. record webcam stream

2. close the stream

3. call FMS function to post process the stream

4. FMS joins the recorded webcam stream with two pre-recorded videos and stores as a new stream
 
Then, knowing the new stream name, I'm trying to play it. However, I'm always seeing its last frame and it doesn't play. Surprisingly, restarting the server and re-connecting to it helps, then I can play the stream.
 
So I wonder if (server-side):

var stream = Stream.get("streamName");
stream.record();
stream.play(...);
stream.play(...);
stream.play(...);

View 1 Replies

Media Server :: Straightforward Method To Stream Videos From Another Server?

Mar 6, 2010

I've got:- FMS already installed on a XP server with IIS- FLV Videos residing in a folder on another serverHow do I:Stream videos from the other server where the videos reside?

View 4 Replies

Media Server :: Connector SDK - How To Call Server Method

Feb 17, 2011

I am using the FMS Connector C++ to do some publishing work. And I am required to call a server side method. I have tried to use the INetConnection::call() method, but it don't seems successful.
 
The FMS server spec told me to do,
 
1.call server method,
nc.call("FCPublish" null, streamname);
 
2. implement a callback function onFCPublsih
nc.onFCPublish = function (info ) {...}
  
How can I implement these with FMS Connector C++?
  
The FMS Connector document include too few topic on calling server side method.

View 2 Replies

Media Server :: How To Call A Method In Another Class

Mar 18, 2010

how can i use getUserID method in my main.as?

NetConnectionClient.as 
package com {
import flash.events.EventDispatcher;
import flash.events.Event;
public class NetConnectionClient extends EventDispatcher {

[Code]...

View 6 Replies

Media Server :: SetMode Method Of Camera

Oct 14, 2010

Sets the camera capture mode to the native mode that best meets the specified requirements. If the camera does not have a native mode that matches all the parameters you pass, Flash Player selects a capture mode that most closely synthesizes the requested mode. This manipulation may involve cropping the image and dropping frames.Does it mean that the frames captured is not necessarily the same as required by setMode(width:int, height:int, fps:Number, favorArea:Boolean = true) ? The actual frame captured may be either wider/ narrower,higher/lower in size and have higher/lower frequency than required ,is this true?

View 3 Replies

Media Server :: Stop Random Disconnection Method

Jan 21, 2010

I have a FMS application that contains a chat room. I'm finding that my on disconnect method is firing randomly when I still haven't disconnected. I've gathered from various other forums that this is a pretty common issue.

View 2 Replies

Media Server :: Doesn't Seem To Trigger OnID3 Method

Aug 11, 2010

I'm trying to get the id3 information from an mp3 being streamed from FMS.I followed the samples I found online and am using the following client-[code]As a note the above code works fine to play the actual file (substituting mp3: for id3:, of course) it just doesn't seem to trigger the onID3 method (I've tried onId3 which is what the samples use).I am also able to view the id3 information from windows explorer and other external readers.The platform I'm ultimately targeting is Flash Lite 3.1 AS2, but I've tried various configurations and haven't had any success.

View 1 Replies

Media Server :: Unable To Call OnFCPublish Method

Sep 2, 2010

I am trying to develop a server-side application(splitterApp) using FMS 3.5.2 which would accept an incoming stream from 3rd Party encoders and publish the stream using FCPublish method to an application(edgeApp) on our edge servers. The splitterApp contains 3 classes for performing the activity. So whenever a incoming stream is received by the splitterApp, the main.asc would create an object of type IncomingStream() and push into unPublished array. A timer based job then picks the unpublished stream from the array and invokes StreamController.PublishStream(). The StreamController.PublishStream() method then creates a new PublishedStream() initialised with incoming stream. The method thereafter calls PublishedStream.PublishStream() to initiate net connection to the edge server application(edgeApp). After successful net connection, I call "this.publish_connection.call ("FCPublish", null,this.thisStream.stream.name)".

The edgeApp accepts the publish and therefore performs:

[Code].....

View 2 Replies

Media Server :: Call And Accept Method In P2P Connection

Jan 11, 2012

call and accept method in P2P connection.

View 1 Replies

Media Server :: Error Message: Method Not Found(getStreamlength)?

Mar 1, 2010

ok, so I got the broadcast running as SE suggested, everything is running smooth local and live except for one thing.every 45 seconds or so, I the encoder displays an error while broadcasting. the broadcast however continues, so I went to the error log in application.00.log. and this is what was there:I'm assuming it has something to do with the length of the file, when I look in the folder that saves the broadcast, is dozens of files that have approx size 1 mb. As the broadcast goes, I see the file being created, and then when it reaches about 1 mb, a new one is born. it ?

View 10 Replies

Media Server :: Error: Failed To Execute Method (NetStream)

Oct 29, 2010

I've googled this and come up empty. All I am trying to do is create a netstream and assign a group to it like so:
 
var netstream;
var groupSpec;
groupSpec = new GroupSpecifier("foo");
trace("groupSpec: "+ groupSpec);

[Code]...

If I remove the groupSpec optional parameter I successfully connect the NetStream. According to the docs [on this page] I should be able to identify a GroupSpecifier in the NetStream constructor.
 
Is this a bug? Is there another way to do this?

View 8 Replies

Media Server :: Sending Error Message: Method Not Found (FCSubscribe)?

Nov 26, 2011

Accepted a connection from IP:42.159.56.116, referrer: http://hh.dyndns.org/swfs/StrobeMediaPlayback.swf", pageurl: "http:/hh.dyndns.org/live.htm?source=rtmp://hh.dyndns.org/live/livest ream&type=liveSending error message: Method not found (FCSubscribe).

View 1 Replies

Media Server :: Live Streaming - Sending Error Message: Method Not Found (getStreamLength)?

Nov 10, 2009

I got this error when i am trying to connect on rtmp://172.31.14.91/live/livestream. Accepted a connection from IP:172.31.14.91, referrer: , pageurl: Sending error message: Method not found (getStreamLength). I don't have any problems with vod but on live streaming is so hard for me to get it.My encoder is a Media live encoder 3 and the media server is media server 3.5.

View 1 Replies

Media Server :: TypeError: Error #1009: Cannot Access A Property Or Method Of A Null Object?

Oct 7, 2010

I have this set of codes for a simple chat program using SharedObjects. When I run the program, I type my name into the 'chatName' box and my message in the 'textInput'box. However when click on the 'Send' button or press the Enter key, I am getting the following error:
 
" TypeError: Error #1009: Cannot access a property or method of a null object reference. at TextChat/sendMsg() "
 
As mentioned in the error message I looked at the 'sendMsg()' function. I realised the problem was comming from the line :
 
text_so.setProperty ("msg",chatName.text +": "+ textInput.text);
 
I am wondering how 'text_so' can be a null object reference. It was already instantantiated and setup earlier in the code. I hope someone can shed light on this. The relevant lines of code are below.

[Code].....

View 3 Replies

Media Server :: TypeError: Error #1009: Cannot Access A Property Or Method Of A Null Object Reference

Mar 19, 2010

i use the code below to publish my cam, and i can play it in the same application. Then i copy and renamer it videoPlayer2.as then i use displayPlaybackVideo(); method but it says "TypeError: Error #1009: Cannot access a property or method of a null object reference.". How can i get the published live video from another app. 
 
videoPlayer.as // publish and play
package {      import flash.display.MovieClip; import flash.net.NetConnection;      import flash.net.NetStream;   import flash.media.Camera;  import flash.media.Microphone;     import flash.media.Video;      import flash.events.NetStatusEvent;   import

[code]...

View 4 Replies

Media Server :: Shareobject.send() - Send Method Does Not Work

Mar 18, 2010

I have a problem with shareobject. the Send method does not work. I work with AS3 My code

[Code]....

View 4 Replies

ActionScript 3.0 :: Flash Uses GET Method Even Though Specify POST?

May 17, 2010

I'm making a quiz game where I need to send information about the player's score and other variables from Flash to a PHP page whlie opening the PHP page in a browser. I want to use POST so the variables don't show in the address line of the browser.

My code looks like:

Code:
highScoreEntryPath = ("register.php");
highScoreEntryRequest = new URLRequest(highScoreEntryPath);
highScoreEntryRequest.data = setHighScoreStats;
highScoreEntryRequest.method = URLRequestMethod.POST

[code]....

but that doesn't work either. What am I doing wrong?? If it's not possible to use navigateToURL like this, how else can I open a page in a browser and send variables along by POST?

View 4 Replies

Media Server :: Can Adobe Flash Media Streaming Server 3.5 Run On AMD Athlon Dual Sock Quad Core?

Nov 10, 2009

Can Adobe Flash Media Streaming Server 3.5 run on AMD Athlon Dual Sock Quad Core?I just requested a Dell server to be added to our farm to run as a Media Server and to my surprise, while reading the requirements for FMS it states the following: 3.2GHz Intel® Pentium® 4 processor (dual Intel Xeon® or faster recommended)

View 2 Replies

Media Server :: FLVPlayback Component's NcMgr.netConnection Is Null When Connecting To My Flash Media Server?

Jan 13, 2010

I'm trying to troubleshoot a Flash Media Server working with a little video playback application I wrote a few years ago that has suddenly stopped working.I'm using CS3/Actionscript 3.My app uses the FLVPlayback Component, and was working well last time I checked.  I recevied a report that the videos stopped working, and have been looking into it.I figured I'd add a bunch of event listeners to the FLVPlayback's ncMgr.netConnection so I could get debug info on things like io errors, net status, etc.The problem I'm running into is that the netConnection is null when I set it to anything on my Flash Media Server, and adding any event listeners to this netConnection throws errors.Here's what I've tried so far:

Playback of a local FLV file works fine.In the FLVPlayback documentation, I found an example and stole the URL of the stream they were using in the example, and that works fine, although it is an HTTP protocol stream rather than RTMP.Any attempt to access FLV files on my Media Server, which has worked fine in the past, basically cause the FLVPlayback object to sit and hang in "buffering" mode and never progresses beyond this point.The netConnection object in this case is null.Here's my code:[code]........

Again the purpose of this is to troubleshoot the video streaming from the Flash Media Server, and it seems like there is no netconnection to the server being created.Does this mean that the server is not working, or is there a problem with the way I'm trying to access the content on the server?This was all working fine before, and I have set up the server-side application .ASC files and such to allow things to work fine on the server end.

View 6 Replies

Flash :: Media Server - Automatically Configure Edge From The Admin Console Of Media Interactive Server?

Jan 17, 2010

How can we automatically configure edge from the admin console of flash media interactive server?

View 1 Replies

Media Server :: Number Of Connection Allowed In The Free Developer Ediiton Of Flash Media Server?

Mar 27, 2010

I would like to know the number of connection allowed in the free developer ediiton of Flash Media Server.

View 4 Replies

Flash :: Media Server - Send Video And Audio Data To A Media Server By Using RTMP Protocol

Jul 22, 2010

I'm trying to make a software which sends video and audio data to a flash media server by using RTMP protocol. Currently, my program can communicate with a flash media server correctly. RTMP specifications does not describe about the raw data in video/audio messages, so I muxed raw H.264 and AAC data into video/audio messages and sent to the server. The server seems to accept them, but a video player cannot playback the stream sending from the server. The player just says "Loading..." For a test purpose, I sniffed the network packets between Wirecast and the flash media server and ripped off only video and audio data. Then, I muxed those data into video/audio message and sent to the flash media server. In this case, the video player connected to the server can playback the stream correctly.

I checked the stream sent from Wirecast, the stream seems not to be H.264 raw data because those data are not started from 0x17 instead of H.264 start code. With those situation, I am wondering what kind of container format I should use for H.264/AAC data to the flash media server.

View 12 Replies

ActionScript 3.0 :: Create A Formula With 'POST' / 'GET' Method?

Dec 24, 2011

How to create a formula with 'POST' or 'GET' method

View 2 Replies

Flash :: Get XML By Post Method From Webservice In Flex

Jun 3, 2009

I created a servlet in java that will give me a xml response when called

protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/xml;

[Code].....

Now I want to get this xml in flex. I tried mx:WebService and mx:HttpService but both of them did not work.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved