Skip to main content
Participating Frequently
April 22, 2013
Question

Error URLRequest

  • April 22, 2013
  • 1 reply
  • 1080 views

Dear all.

I want to write an application in flash media server.

I installed FMS 4.5 Enterprise.

I want to get web content that it is json format.

My code:

//Get web content example 1

                var url = "http://10.84.70.133:8084/?q=external_api_transcode/getProgramByChannelAndDate&channel=vtv3&date=20130404";

                var request = new URLRequest(url);

                var loader = new URLLoader();

                loader.load(request);

                trace(loader.data);

But when I load this application then there is error related URLRequest as below:


Sending error message: /opt/adobe/fms/applications/dvrcast_origin/main.asc: line 44: ReferenceError: URLRequest is not defined-

I don't know why error appeared?

Can you help me as soon as?

This topic has been closed for replies.

1 reply

April 23, 2013

Hi,

Server-Side ActionScript Language Reference does not have URLRequest and URLLoader class. You can use LoadVars class for the same purpose. Check the following link to know more about the LoadVars class:

http://help.adobe.com/en_US/adobemediaserver/ssaslr/WS5b3ccc516d4fbf351e63e3d11a11afc95e-7ff7SSASLR.2.3.html

Participating Frequently
April 23, 2013

My code :

///////////////////////////////////////////////////

var url = "http://10.84.70.133:8084/?q=external_api_transcode/getProgramByChannelAndDate&channel=vtv3&date=20130404";

        var loadvar = new LoadVars();

        loadvar.onData = function(src) {

        if (src == undefined) {

                trace("Error loading content.");

                return;

        }

        trace(src);

        }

        loadvar.load(url,loadvar,"GET");

        trace(loadvar.toString());

////////////////////////////////////////////////////

But it is not ok.

Can you help me?

Participating Frequently
April 24, 2013

Who can help me?