Stream from foreign server possible?

Hi,
I urgently need a feedback !
I need to be 100% sure whether or not the following scenario is possible within Adobe Flash Player / Adome Media Server security contrains:
website and swf file are hoted on server with given IP number xxx.xxx.xxx.xxx
media and streaming application are hosted on server with IP number yyy.yyy.yyy.yyy
generally speaking:
will yyy media server accept connection from xxx client ?
will xxx client accept streams from yyy server ?
I urgently need this information as I need to decide some specific media streaming solution for the customer.
Of course - I mean both servers being hosted (virtual) services rented by the customer at third party provididers.
Please feedback asap!
Thank you!

Yes this should not be an issue , a client from "xxx" can connect to FMS at "yyy" and stream the data. There should not be problem at both ends.

Similar Messages

  • Movie streaming from one server to many Apple TV

    Hi guys, I want to buy an Apple TV for each TV in a very big house. Is it possible to stream a movie (the same or different) from a pc or server (with iTunes) to more than five Apple TV?

    it can play
    H.264 video up to 720p, 30 frames per second, Main Profile level 3.1 with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats
    MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
    from media located in a itunes lib on the same LAN not over the internet well it may depend on which ports and how transparent a vpn is but
    doubt the atv2 is a good option for you
    maybe a netbook'ish weak computer connecting to a terminal server citrix or the likes would work better

  • Msg 0, Sev 0, State 1: Unknown token received from SQL Server [SQLSTATE HY000] String data, right truncation [SQLSTATE 01004] [SQLSTATE 08S01] error

    I'm looking for some general guidance on this complete error:
    Msg 0, Sev 0, State 1: Unknown token received from SQL Server [SQLSTATE HY000]
    String data, right truncation [SQLSTATE 01004]
    Msg 16389, Sev 16, State 1: The connection is no longer usable because the server response for a previously executed statement was incorrectly formatted. [SQLSTATE 08S01]
    This error is caused by a SQL Agent Job, but it does not always occur. I understand this could be an issue with SQL dropping the connection, but what is the best way to troubleshoot this?
    Thanks,
    Phil

    Hi philliptackett77,
    It would be more helpful for troubleshooting the issue if you post the SQL Server error log and SQL Server version. Additionally, please state what purpose of using the agent job.
    Based on my research, [SQLSTATE 08S01] error means communication link failure. If the executed statement returns invalid value in the job, the connection between server and client will fail. This error could be caused by the error of [SQLSTATE HY000] and
    [SQLSTATE 01004]. I’d like to share my knowledge about these errors as below.
    Quote: String data, right truncation [SQLSTATE 01004]
    This error could occur when passing data whose length is larger than the received object,and the passed value is truncated, and returns invalid value. So please check if the data type of the objects are identical and the length of passed value is not larger
    than the received object.
    Quote: Msg 0, Sev 0, State 1: Unknown token received from SQL Server [SQLSTATE HY000]
    The error could occur in the two cases below.
    1. If you use SQL Server version 6.50, and execute the cursor in the job step, set the statement options to use a server-side cursor and prepare a select statement on a SQL Server system table. The first execution of the select creates the cursor successfully.
    After you close this cursor, if you execute the prepared statement again, the error could occur.
    I recommend you to apply the latest service pack firstly. If the error still occurs, you could change your code by using a forward-only cursor instead of a static, keyset, or dynamic cursor on the system tables. If a forward-only cursor is unacceptable,
    prepare the select statement again on the system table and execute it to create a server-side cursor. For more information about the process, please refer to the article:
    http://support.microsoft.com/kb/151693/en-us
    2. The TDS stream from the server is invalid when transfer data between a database server and a client. This error is typically caused by a problem on the server. For more information about errors above, please refer to the article:
    http://technet.microsoft.com/en-us/library/aa937531(v=sql.80).aspx
    Regards,
    Michelle Li

  • Problem playing remote live stream from FMS

    Hello all,
    I'm having problems playing remote live streams from FMS (server-side) that I can play with any other player (client-side)
    Example of server-side application which plays a remote live stream:
    nc = new NetConnection();
    nc.connect("rtmp://remoteserver/live");
    stream = Stream.get("localStream");
    stream.play("remoteStream.flv", -1, -1, true, nc);
    This code works only sometimes.
    Most of the times, FMS is able to connect to remote string and the localStream dispatches events:
       NetStream.Publish.Strart
       NetStream.Play.Reset
    In this case, FMS is publishing the local stream but it is not playing the remoteStrem on it.
    The rest of the times, localStream dispatches events:
       NetStream.Publish.Strart
       NetStream.Play.Reset
       NetStream.Play.Start
       NetStream.Data.Start
    In this case FMS plays the remoteStream correctly.
    Any hint to solve this issue?
    Regards.

    Thanks, I tried your code and it works when playing a remote live stream on another FMS.
    But the remote live stream is not on a FMS but on a Wowza Server which re-streams an RTSP stream over RTMP.
    With this code:
    var nc;
    var myStream;
    application.onAppStart = function(){
         nc = new NetConnection();
         myStream = Stream.get("localstream");
         myStream.onStatus= function(info){
               trace(info.code);
         nc.onStatus = function(info){
               trace (info.code);
               if(info.code == "NetConnection.Connect.Success" ){
                    myStream.play("remoteLive.sdp", -1, -1, true, nc);
         nc.connect("rtmp://remoteServer/live");
    Every live stream player I tried was able to play the remote stream "remoteLive.sdp", but FMS play it only sometimes. This is the output log of the FMS application:
    NetConnection.Connect.Success
    NetStream.Publish.Start
    NetStream.Play.Reset        <--------------------------------- Stuck there, stream won't play
    Unloaded application instance wowza4/_definst_ <--- Reload app
    NetConnection.Connect.Success
    NetStream.Publish.Start
    NetStream.Play.Reset        <--------------------------------- Stuck there, stream won't play
    Unloaded application instance wowza4/_definst_ <--- Reload app
    NetConnection.Connect.Success
    NetStream.Publish.Start
    NetStream.Play.Reset
    NetStream.Play.Start         <--------------------------------- Stream is playing just fine
    NetStream.Data.Start
    Unloaded application instance wowza4/_definst_ <--- Reload app
    NetConnection.Connect.Success
    NetStream.Publish.Start
    NetStream.Play.Reset       <--------------------------------- Stuck there, stream won't play
    Any idea? Why FMS won't play it everytime?
    Regards

  • Need Help Streaming Video From Web Server Built Into Application - Linksys WRT54g Router

    Very much appreciate any help getting streaming video feed from web server built into video application to work properly using port forwarding on my Linksys WRT54g wireless router.
    Here is the situation:
    My PC is connected to the internet via a Linksys WRT54g wireless router.
    The Windows XP Pro SP2 firewall is enabled, with a firewall exception established for the video camera application.
    On the router, forwarding of port 80 is enabled for the LAN IP address of the PC running the video application with an embedded web server, and the web server in the video camera application is also set to use port 80.
    I have a free DYNDNS account and also run the DYNDNS updater program on the PC running the video application with embedded web server. According to the DYNDNS web site and the DYNDNS updater program, the IP address assigned to the machine running the video application with embedded web server is set correctly in my dyndns account.
    When I open a browser (Explorer or Firefox) on the PC running the video camera application with embedded web server, I am able to  connect to the video application's web server by going to the dyndns address linked to the machine running the video application. The video application's web server is set to use the dyndns address. That's the good news. The bad news is that I can't connect to the video application's web server from any machine that connects to the internet that uses a router other than the router used by the PC running the video application. I am only able to connect to the streaming video from the application's web server only on machines that connect to the internet using the same (home) router used by the PC that is running the video application.
    Since I am able to connect to the video app's embedded web server successfully on the machine running the video application, it seems that at least something about the current port forwarding settings is correct. For example, if I uncheck 'enable' for forwarding of port 80 on the router settings page, I am no longer able to connect to the video app's web server when I try to do so in a browser running on the machine running the video app. When I re-enable port 80 forwarding on the router, I am again able to connect to the web server of the video application on the machine running the video app. I thought that by enabling forwarding of port 80 on the router and associating that port with the LAN IP of the machine running the video application, it would be possible to connect to the streaming video of the video app's embedded web server from ANY machine connected to the internet, but that is not the case. There must be some other router settings to update/change in order to get the port forwarding working to enable a successful connection to the video web server, but I am stumped. Very grateful for any suggestions as to how to get this working properly.
    Thanks in advance...

    The firewall log can be configured on the third tab in the window for the firewall settings, where you can turn the firewall on and off completely.
    From your tests, though, it does not seem to be the firewall. However, to be sure, it would be good to check the log. It will help to eliminate the firewall as the culprit and you may find it handy in the future, too. ;-) Just don't forget to turn the log off again after you are done because it may cause some performance penalty on your system while on.
    From what you write, it seems as if I should give a little networking background on the ip addresses you'll see. Your setup is (or should be) a modem connected to the WAN/Internet port of the WRT. The computer is connected into a LAN port of the WRT.
    Your router has two IP addresses (that's what makes it a router): a WAN address and a LAN address. The WAN address is the address assigned by the ISP. It is a normal internet IP address. Everyone is able to send packets to this IP address. The WAN address is the one reported by whatismyipaddress.com, it should be listed in the dyndns record and it is the address that your router shows on the Status page. It's the public IP address of your router. Dyndns maps your dyndns.org name to that IP address.
    Your router also has an IP address on the LAN side. You can configure it to be whatever you want. The default is 192.168.1.1 with netmask 255.255.255.0 and it is better to leave it like that or at least inside the network 192.168.*.*. 192.168 is a special, reserved IP address range for private networks. Basically, routers in the internet are not supposed to forward addresses in this range. That makes them suitable for private LANs as the packets never can get anywhere. Most people using Linksys routers have there LAN in 192.168.1.*.
    The router acts as gateway, which means it forwards packets from PCs in the LAN to the internet and back. As all your PCs in your LAN share a single WAN IP address, the gateway does address translation (NAT). This works only in one direction: from the inside to the outside. The router remembers when a PC in your LAN sends something out and accepts the responses in and sending them back to the PC. If something comes in from the internet which cannot be associated with a ongoing communication the packet is dropped unless you use port forwarding.
    All computers in your LAN either have a static IP address assigned or use DHCP to get it automatically. The router has a DHCP server as well which gives out IP address from 192.168.1.100-149 if not changed. With a router with default settings static IP addresses can be in the range of 192.168.1.2-99 and 150-254.
    ipconfig /all reports your IP address in your LAN, i.e. an address 192.168.1.*. The gateway in this output should be 192.168.1.1 which is your router. And packet no in the LAN address range 192.168.1.* is send to the router which forwards the packets into the internet.
    An address 192.168.1.* should not appear as internet address in the Status page of the router nor should it appear at dyndns.
    Port forwarding is used to operate a server in the LAN. By default, a server in the LAN cannot be reached from the internet. You have to configure port forwarding for this. You configure that traffic bound for a specific port (e.g. TCP port 80 for http) on your WAN IP address is forwarded to the same port on a specific LAN IP address. If your server runs on 192.168.1.50 than traffic to your WAN IP address port 80 is forwarded to 192.168.1.50 port 80. That way your HTTP server can be reached from the internet. As you can only configure a fixed IP address in port forwarding it is recommended that the server uses a static IP address and not DHCP as in the latter case the IP address may change over time...
    O.K. so much for networking. I hope that makes things a little clearer and you can verify that your setup is how it is intended to be.
    I suggest the following: on the router's security page there is an option to block WAN requests. Remove the check if it is set (meaning: do not block). After you did that change you should be able to ping your WAN address (e.g. ping xxxx.dyndns.org) from the internet. That way we know that it is on the correct address.
    Also on the Administration page make sure that remote management is disabled (should be like that per default) or that the management port is NOT 80 but for example 8080. What is your your UPnP settings on the same page?
    O.K. that should be enough for the moment...

  • Possible to stream from FMLE to another (desktop)computer?

    This is some kind of a challenge: I'm trying to find a
    sollution for streaming a video signal from one computer
    (preferably with FMLE) and pick up the video stream on another
    computer and show the video fullscreen.
    So far it seem to me that FMLE is only able to deliver the
    video stream to a Flash Media Server. Is this correct?
    I'm hoping it is possible to stream the video from FMLE and
    "pick up" that single stream from another computer with maybe a
    program like VLC (or another application? - I just read that VLC
    supports RTMP streams), and show the video fullscreen.
    In theory, maybe I can use Flash Media Server for this, if it
    is able to show the video it's picking up fullscreen.
    Any suggestions or thoughts would be apreciated!
    regards

    carlnes
    Windows Media Encoder and Player as a combination can do this "direct pull" from an encoder to a player without a server in the middle.  But in all the years of commercial live streaming I have done in 10 years, Flash Media Encoder can not be operated in the same way.  A Flash Server has to be in the middle.

  • Capture Changes from Sql Server  using Oracle Streams  - Destination Oracle

    Is it possible to capture changes made to tables in Sql Server database and propagate the changes to Oracle Database using Oracle Streams and Heterogeneous Gateway. I see plenty of information about pushing data from Oracle to Sql server, but I haven't been able to find much information about going the other way. Currently we are using sql server 2005 replication to accomplish this. We are looking into the possibility of replacing it with streams.

    the brief understanding i have is that there is nothing out of the tin that Oracle provides to stream between SQL Server and Oracle. The senario is documented in Oracle docs however and says you need to implement the SQL Server side to grabe changes and submit to Oracle stream queues.
    i'm sure i've seen third parties who sell software to do this.
    If you know otherwise please let me know. Also wasn;t aware one could push from SQL Server to Oracle. Is this something only avail in SQL Server 2005 or does 200 also have it? How are you doing this?
    Cheers

  • Still possible to stream from rhapsody?

    so I pulled out my DMP100 + DMRW1000 which I haven't used in a couple years.  I got everything setup and working except Rhapsody.  Is it still possible to stream from Rhapsody?  Cisco Media Player connects to rhapsody and I can browse everything, however when I try and play I get error "Could not download from the Rhapsody server. Please check your network settings and try again. Press OK to continue.".  Then I go to Cisco Account Management (https://services.linksys.com/home-central/account/login.html?lcid=1033), login, click services and get this error "Error 500: Method invocation failed during rendering of Velocity view with name 'services/index': Invocation of method 'getSubscriptionStateMessage' in class com.cisco.account.commons.Utility threw exception org.springframework.context.NoSuchMessageException: No message found under code 'Unknown Subscription Status' for locale 'en_US'. at services/index.vm[line 161, column 42]; reference [accountUtility], method 'getSubscriptionStateMessage'; nested exception is org.springframework.context.NoSuchMessageException: No message found under code 'Unknown Subscription Status' for locale 'en_US'.
    I'm hesitant to sign up for account at Rhapsody because I'm not sure it will sync with Cisco account.

    Still no luck.  I even signed up for rhapsody account with identical email address and password as Cisco account.  When I try and play from Cisco Media Center I get "Rhapsody service download error".  When I login to Cisco account to configure services there are no services to choose from and webpage reports error.

  • Stream Music over iPhone from iTunes Server direct to Airport Express?

    Hi all
    I have a wireless network supported from timecapsule which will be expanded via airport extress. I use airport express to stream music from my iTunes library to defined speakers via remote app on my iPhone.
    Due to lack of diskspace on my MacBook Pro, I bought a Synology NAS to store all my music on it and use the iTunes server.
    Unfortunately, there is obviously no app from Apple available to connect to iTunes server (via iPhone or iPad) select music to play and also the speakers to stream to!
    Thanks for your help!
    Regards, Jean-Claude

    I think this is really disappointing especially since it seems to be able to stream from the Apple TV G1 to Airport Express devices. Also it's weird that you will be able to stream from the iPad to Airport Express devices including Apple TV G2 but the same thing is not possible from the Apple TV G2... Let's hope they'll change that but maybe they did it on purpose because the Apple TV G2 is streaming itself... This is really disappointing.
    Also I recognized that music that is played via the home sharing on your Apple TV G2 doesn't include the ratings. Ratings are not transferred via home sharing. I don't think your playcount etc. will be updated as well. This is very disappointing as well. What do you guys think about that?

  • Is it possible to lock the keyboard of a client from a server using java

    please explain wheterit is possible to lock the keyboard of a client from a server using java

    You want to process code on one machine, and thereby lock the keyboard on another machine? No, that's not possible. It is extremely far from possible.
    Of course, if the client is running software with security holes in it you might hack into it and crash the thing. This will lock up the keyboard pretty good. I hope that's not what you want ...
    Or are you talking about a setup where you already have code running on the client, and some sort of communication between client and server? In that case what you need to know is whether it is possible to lock the keyboard at all. Once you have figured that out, it is trivial to add the communication code to have the server software tell the client software to lock the keyboard.
    So what do you mean with "lock the keyboard"? It's pretty easy to remove/disable all keyboard related listeners in your own application. It's a lot harder (and AFAIK impossible with pure java) to disable alt-tabbing out of the application. And impossible, except from exploiting security holes, to lock the ctrl-alt-delete-combination on windows machine.

  • Is it possible to use an AirPort Time Capsule as both a Time Machine and an external hard drive from which to stream from?

    I recently purchased a new 2TB Time Capsule. I purchased it in hopes that I can set it up in 2 ways.
    1. Empty my almost completely full MacBook harddrive onto it (mostly movies, music, and photos) that I can stream directly from via iTunes and my Apple TV (this will allow me to free up much needed space on my MacBook)
    2. Use it as a wireless Time Capsule to back up what is left on my harddrive
    I currently use another external harddrive as a time machine but it is a cumbersome process. I know that Time Capsule's weren't built to be partined for needs such as this, but I've been told by Apple that it is possible. Does anyone know how? Any advice would be greatly appreciated.
    Thanks!

    1. Empty my almost completely full MacBook harddrive onto it (mostly movies, music, and photos) that I can stream directly from via iTunes and my Apple TV
    Yes, you can use the Time Capsule to provide both a wired and wireless network AND media storage to stream from an iTunes host device to an Apple TV. As an example, you can place your iTunes Library on either the TC's internal HDD or an external USB HDD attached to the TC. You can then access this library from iTunes located on a Mac or PC, and then, stream it to the Apple TV.
    2. Use it as a wireless Time Capsule to back up what is left on my harddrive
    Yes, you can use the TC as a backup destination for either Time Machine or any other network-ready backup program. Again you can either use its internal HDD or an attached USB HDD for this purpose.

  • Is it possible to load a dump file collected from sql server to orcle 10gR2

    Hi..
    As a part of data migration from legacy systems , we need to migrate only required tables from Sql server to Oracle 10gr2 .
    At present client is telling that he will give it as dump file.
    My question is , Is it possible to load the dump file collected from sql server to oracle 10gR2?
    Thanks in advance ..

    yes, it is.
    Using for example SQL Developer Migration Workbench even allows you to create unload scripts for the desired SQL Server tables and it also creates the DDL scripts for you to create the Oracle tables similar to the SQL Server table AND it alows creates the SQL*Loader scripts that allow you to load the SQL Server generated dump file into the Oracle db.
    Here the link:
    http://www.oracle.com/technology/tech/migration/workbench/index_sqldev_omwb.html
    If you do not want to use this utility, you can also use SQL*Loader to load the content of the SQL Server dump file into the Oracle database; but in this case you have to write the whole SQL*Loader control scripts on your own.
    Edited by: kgronau on Sep 16, 2009 1:54 PM

  • Is it possible to move the master data from one server to onther server?

        is it possible to move the master data from one server to onther server?

    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device

  • LOGON NOT POSSIBLE. ERROR IN LICENSE CHECK -- NO HWid from message Server

    We could logon to the EC6 system. I
    Stopped the EC6 system and started
    it . It started with License Key
    Error. the License key was available
    and was shown in SLICENSE transaction
    but it was giving LOGON NOT POSSIBLE.
    ERROR IN LICENSE CHECK.
    SO I deleted the TEMP and the Original
    License via command SAPLICENSE -DELETE
    and then REINSTALLED THE LICENSE with
    the details
    SAP System: EC6
    Inst. Number: 0020174764
    Hardware Key: Z1686313186
    System Number: 310590866
    Expires On: 31.12.9999
    Key:
    RZKGNA79K9U4F7D7SGGOWU1V
    The License was successfully installed
    but Still the samer error .LOGON NOT
    POSSIBLE. ERROR IN LICENSE CHECK
    Somehow it is not getting the hardware
    key.But when I run the command
    saplince -get then it returns
    saplicense: HARDWARE KEY = Z1686313186
    DEV_W0 log says that
    M  ***LOG Q16=> ThGetMsHwId, DpMBufHwIdGet (HWID_PENDING) [thxxmbuf.c   509]
    M  *** ERROR => SlicKCheckLicense: did not get hwid from message server [slicch.c     306]
    M  *** ERROR => no hwid from msg-server received [likeyapi_w.c 2268]
    Please Help

    Sergo
    My sapmsEC6 has been assigned to 3601 port as my instanace number is 01 . So that is correct. the Thread which has given didn't help . Thanks for you inputs.
    Yogesh

  • Is it possible to transfer a database from SQL Server 2012 to SQL Server Express 2012?

    Is it possible to transfer a database from SQL Server 2012 to
    SQL Server Express 2012? Ideally I would like to backup the database from SQL Server 2012 and restore it on SQL Server Express 2012. Is that possible?

    Is it possible to transfer a database from SQL Server 2012 to
    SQL Server Express 2012? Ideally I would like to backup the database from SQL Server 2012 and restore it on SQL Server Express 2012. Is that possible?
    Yes it is possible but database size should not be greater than 10 G as max databse size supported for Express 2012 is 10 G
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

Maybe you are looking for

  • Unable to rename white folders

    I'm unable to rename the white folders of an IMAP account. I can rename white folders "On My Mac" and I can rename all blue folders. I just can't rename the white folders of an IMAP account. I get the following error: Error The IMAP command "RENAME"

  • Create a script to create multiple objects without using execute immediate.

    I have a function that requires several objects (4 types, 8 functions) to run. Right now they're in separate sql files. I'd like to combine them into one file that I would run but I'd rather not use the 'execute immediate' since it seems like you hav

  • Mark, flag or find a picture previously found in 'Confirm Additional Faces'

    iPhoto 11 (9.2.3) I came across this issue yesterday and it just seems another case of No, there is no way to do this, Mac making thinkgs difficult again. Often when going through photos in the 'Confirm Additional Faces' windows, you come across a Fa

  • Some workstations slow to open files on 2008r2 share?

    We have been moving from Novell to Microsoft for a couple years company wide.  Until now, other than outlook, the apps were all local with the data being moved from a Novell server to a 2008R2 server.  A week ago we moved our final drive which was th

  • Function Module for Application Log(SLG1)

    HI SapAll. may i know what is the Function Module  to read the data for Applicaiton Log (tcode-SLG1). waiitng for your response. regards. Varma