SWF Verification works differently with FAXS vs FMS

Here's the setup: loader.swf loads up player.swf and player.swf then connects to the server to play the stream. In FMS-based SWF Verification, it'
s the player.swf that gets verified.  However, if we change the above scenario where the player.swf obtains the license from FAXS and the license server sends a list of valid SWF hashes, it appears that verification is done on the loader.swf. That looks like a bug. Any suggestions ?
Eli

In FMS-based SWF verification, player.swf would be present on the FMS server, in order to perform the SWF verification.
In Flash Access-based SWF verification, the Flash Access license specifies the SWF hash of the authorized SWF (loader.swf in this example). In order to play the content, the client will verify that the hash of the current SWF matches the SWF hash specified in the license. There are two ways to set the SWF whitelist in the license: 1) Specify the whitelist at the time you create the policy, or 2) The license server fills in the SWF whitelist at the time it issues the license. With Flash Access, there is an additional packaging step (to apply the policy and encrypt the content), and a license server must be deployed in order for the client to obtain a license. However, aside from disabling FMS SWF verification, no other changes on the CDN should be required to deliver the encrypted content through the CDN.

Similar Messages

  • Does swf verification work with swz flex libraries ?

    i  posted earlier  :
    Hello
    In my application i have video player  that uses VideoDisplay class of flex sdk 4.5. we implenent swf  verifaction. i tried to play videos on  rtmpe several times , and it  did'nt play , seemed like   my swf did'tn pass swf verification, during  all day i tried to figure out what's wrong, then i tried to compile all  flex sdk libraries ( framework_4.5.0.17689.swz, osmf_1.0.0.16316.swz and  ex ) into my main file  , instead of  having them as rsl, finaly i  succeeded to connect to rtmpe and to play the video. Could you help me  please? what should i do? why does'nt it  pass swf vereficiation when  the linkage  of flex sdk libraries is default(rsl- swz files). i can't merged them into code, it Weights to much ,800 kb.
    after trying some things i came to conclusion that fms can't handle with swz, then it reaches swz refference it fails . so my question now is : is this something that can be configured on fms  to verify swz as well ?
    thank you/

    Before i dig more into, how do you plan to host your swf's, would your main file when hosted would play fine and at runtime get linked to your other libraries needed?
    Also you can try one more thing, create main file with all needed flex libraries, keep it in SWF's folder of application. Then try connecting using main file without having all the libraries (basically as rsl) and see if in this case it connects.

  • Embed + compiler define works different with air 3.7+ comparing to 3.5

    Hello.
    I've noticed that new compiler works differently when using construct Embed with conditional compilation (comoiler define option).
    It looks like new compiler always embeds files in output swf even if Embed construct is used in dead code. Here is full example:
    package {
      import flash.display.MovieClip;
      public class Main extends MovieClip {
        CONFIG::FOO {
          [Embed(source="foo.mp3")]
          public static var MusicTrack: Class;
        CONFIG::BAR {
          [Embed(source="bar.mp3")]
          public static var MusicTrack: Class;
    I have 2 files: foo.mp3 (~2MB) and bar.mp3 (~2.3MB). I want to embed only one of them defining CONFIG::FOO as true and CONFIG::BAR as false.
    When I compile it using AIR 3.5 with following command I get (as expected) file with size ~2.0MB:
    /opt/adobe_sdks/flex_sdk_4.6_AIR_3.5/bin/mxmlc -compiler.source-path . -swf-version 14 -define=CONFIG::FOO,true -define=CONFIG::BAR,false -o Main.swf -- Main.as
    /private/tmp/bug/Main.swf (2030814 bytes)
    But when I use newer AIR sdk (I tried with 3.7, 3.8 and 4.0 beta) I'm getting file with size ~4.3MB.
    /opt/adobe_sdks/AIR_4.0/bin/mxmlc -compiler.source-path . -swf-version 14 -define=CONFIG::FOO,true -define=CONFIG::BAR,false -o Main.swf -- Main.as
    4328386 bytes written to /private/tmp/bug/Main.swf in 9,634 seconds
    Is it expected behaviour? Is there any chance that new compiler will work in this case the same as older one?

    Another difference I encountered is that using compiler definition directly in Embed construction doesn't work. Here is example:
    public class Assets {
      [Embed(source=CONFIG::MUSIC_MP3_PATH)]
      public static var MusicTrack: Class;
    Then I pass option to the compiler:
    -define=CONFIG::MUSIC_MP3_PATH,"'sfx/music.mp3'"
    With AIR 3.5 SDK it works fine. With AIR 3.7, 3.8 and 4.0 beta I'm getting file which is smaller in size (by mp3 file size) and when running I get error: TypeError: Error #1007: Instantiation attempted on a non-constructor. (when it tries to create new instance of MusicTrack).

  • SQL Script working differently with 8i and 9i

    Hi
    I am facing strange problem with my simple SQL script called from a shell script. It bahaves differently with ORACLE 8.1.7.4 and 9.2.0.1. The machine is same.
    sqlplus -s / @Tech.sql WKC625 11 11 '11 22' ""
    This is working with 9i but it does't work with ORACLE 8.
    Actually what happens is that the argument in single quotes (') is taken as 2 separate argument.
    The Tech.sql is :
    spool add
    insert into TECH values ('&1','&2','&3','&4','&5','');
    commit;
    quit
    I tried putting double quotes also. Is something got changes between ORACLE 8 and 9i.
    Please help
    Surendra

    Are you sure it works in 9?
    If you are using UNIX, then the O/S will strip the quotes while processing the arguments. You need to use 2 single quotes around 11 22, just as you have around the empty string at the end.
    I believe that Windows does the same, but I do not use windows.
    John

  • Final .swf file works different (and BAD) like while runing in flex

    OK, next question!
    How is it possible, that when I compile Flex project, everything works, but when I click on html file from bin-debug folder, nothing works?!
    I use SDK 3.2. and flash player version is set up to 10.0.0.
    When I run the project, I am able to load image and work with it. When I run html file from bin-debug folder, I am suddenly NOT ABLE to load that image!
    What's wrong?
    This is my code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" height="632">
        <mx:Script>
            <![CDATA[
                private var fileRef            : FileReference; //browser souboru
                private var fileFilter        : FileFilter; //seznam pozadovanych koncovek souboru (obrazky = ".jpg ...")
                private var loader            : Loader; //nahraje obrazek z browseru
                private var photoBitmap        : Bitmap; //nahrany obrazek ze souboru
                private var photoData        : BitmapData; //data obrazku ze souboru (pristup k pixelum obrazku)
                private var shape            : Shape = new Shape();
                public function Browse() : void
                    fileFilter = new FileFilter("Images (*.jpg, *.jpeg, *.gif, *.png)", "*.jpg; *.jpeg; *.gif; *.png");
                    fileRef = new FileReference();
                    fileRef.browse([fileFilter])
                    fileRef.addEventListener(Event.SELECT, onImageSelect);
                private function onImageSelect(event:Event) : void
                    photoPanel.title = fileRef.name;
                    fileRef.load();
                    fileRef.addEventListener(Event.COMPLETE, onDataLoaded);
                private function onDataLoaded(event:Event) : void
                    var tempFileRef : FileReference = FileReference(event.target);
                    loader = new Loader();
                    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onPhotoLoaded) ;
                    loader.loadBytes(tempFileRef.data);
                private function onPhotoLoaded(event:Event) : void
                    photoBitmap = Bitmap(event.target.content);
                    photoImage.source = photoBitmap;
                private var isDrawing        : Boolean;
                private var drawSize        : Number;
                private var drawColor        : Number;
                private function onImageMouseDown(event:MouseEvent) : void
                    isDrawing = true;
                private function onImageMouseUp(event:MouseEvent) : void
                private function onImageMouseMove(event:MouseEvent) : void
                    shape.graphics.beginFill(0xFF0000);
                    shape.graphics.drawRect(event.localX-1, event.localY-1, 3, 3);
                    shape.graphics.endFill();
                    photoImage.addChild(shape);
            ]]>
        </mx:Script>
        <mx:Button x="10" y="418" label="Upload" click = "Browse()" />
        <mx:Panel x="10" y="10" width="400" height="400" layout="absolute" id="photoPanel" backgroundColor="#D9D4D4">
            <mx:Image x="0" y="0" id="photoImage" mouseMove="onImageMouseMove(event)"/>
        </mx:Panel>
    </mx:Application>
    IN HTML pages I call the swf file this way
                <script type="text/javascript">
                    if (AC_FL_RunContent == 0) {
                       alert("This page requires AC_RunActiveContent.js.");
                 } else {
                       AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0','nam e','postcard','width','700','height','500','align','middle','id','postcard','src','postcar d','quality','high','bgcolor','#ffffff','allowscriptaccess','sameDomain','allowfullscreen' ,'false','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','postcard' ); //end AC code
                </script>
                <noscript>
                    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" name="postcard" width="700" height="500" align="middle" id="postcard">
                    <param name="allowScriptAccess" value="sameDomain" />
                    <param name="allowFullScreen" value="false" />
                    <param name="movie" value="postcard.swf" />
                  <param name="quality" value="high" />
                  <param name="bgcolor" value="#ffffff" />
                  <embed src="postcard.swf" quality="high" bgcolor="#ffffff" width="700" height="500" name="postcard" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
                    </object>
                </noscript>

    Is there a difference in the URL in the address bar in the browser?
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Why does final keyword work differently with collection

    I have tried final on StringBuffer but when i changed the value of StringBuffer object its throws a compile time error but when i did same thing with vector it work perfectly fine.
    any one knows the reason? please send me in details.
    final Vector v = new Vector();
    v.add("String1");
    v.add("String2");
    final StringBuffer sb  = new StringBuffer();
    sb = sb.append("xyz");

    Because you haven't understood the keyword final. when you make a reference final you may not change the object to which it points to.
    final StringBuffer sb  = new StringBuffer();This is valid because this is the first time you instatiate sb
    sb = sb.append("xyz");this is invalid because you are trying to assign a new object to a reference that may only be assigned to once.
    Compare
    final int testInt = 1;
    testInt = 2; //errorthe vector works because you do not assign vector reference v a new Vector object

  • InetAddress.getLocalHost works differently with jdk1.4.0 beta65 and rc

    I am using jdk1.4.0 on Linux with two network interfaces, one of them with a private IP.
    When using jdk1.4.0beta65
    InetAddress.getLocalHost seems to return the IP of the first entry in /etc/hosts corresponding to my machine's hostname.
    With jdk1.4.0 rc I get the last entry in /etc/hosts.
    I changed the order of these entries in /etc/hosts to check if it is really the reason.
    I had problems with an application when getLocalHost returned the private IP.
    Of course changing the order would solve my problem.
    Is there any reason why this changed?
    cu
    Achim

    I don't have the answer for you but why don't you try the following trick and see if you get a more consistent result:
    try {
        Socket socket=new Socket("java.sun.com",80);
        InetAddress addr=socket.getLocalAddress();
        String HostName=addr.getHostName();
        String HostAddr=addr.getHostAddress();
    } catch (Throwable e) {}
    V.V.

  • Combo box works differently with UDO

    Hi guys,
    I have created a combo box on a UDO. I am trying to catch the event of when a value is selected in the combo box, but it is not working as it should. I have used the same code on a simple form and it works. It doesn't work on the UDO however. Here is my code:
    I declare the combo box:
                oItem = oForm.Items.Add("CntDetails", SAPbouiCOM.BoFormItemTypes.it_COMBO_BOX);
                oItem.Left = 300;
                oItem.Width = 60;
                oItem.Top = 290;
                oItem.Height = 14;
                oItem.AffectsFormMode = true;
                oItem.FromPane = 1;
                oItem.ToPane = 1;
                oCombo = ((SAPbouiCOM.ComboBox)(oItem.Specific));
                oCombo.DataBind.SetBound(true, "@CENTRIX_OJEA", "U_CENTRIX_CntDetails");
                oCombo.ValidValues.Add("All", "All");
                oCombo.ValidValues.Add("None", "None");
                oCombo.ValidValues.Add("More", "More");
                oCombo.Select(0, SAPbouiCOM.BoSearchKey.psk_Index);
    The in the ItemEvent part I use this code:
            if (pVal.ItemUID == "CntDetails" && pVal.EventType.Equals(SAPbouiCOM.BoEventTypes.et_COMBO_SELECT) && pVal.Before_Action == false)
                try
                    Globals.SBO_Application.MessageBox("test", 1, "OK", "Cancel", "");
                catch
                    Globals.SBO_Application.MessageBox("Error", 1, "OK", "Cancel", "");
    Am I doing something wrong?
    Thanks

    Hi Costas,
    Put a breakpoint in this line of code
    if (pVal.ItemUID == "CntDetails" && pVal.EventType.Equals(SAPbouiCOM.BoEventTypes.et_COMBO_SELECT) && pVal.Before_Action == false)
    See if it is reached.
    Regards,
    Vítor Vieira

  • Windwos 8 wont let me connect to doamin but worked different with older os's

    Hi guys i keep getting this error when i connect to my domain. Sometimes it alomost lets me login to connect to it but then it says its invailid. The server is windows 2008r2 enterprise.
    The following error occurred when DNS was queried for the service location (SRV) resource record used to locate an Active Directory Domain Controller (AD DC) for domain "cjcdsb.com":
    The error was: "DNS name does not exist."
    (error code 0x0000232B RCODE_NAME_ERROR)
    The query was for the SRV record for _ldap._tcp.dc._msdcs.cjcdsb.com
    Common causes of this error include the following:
    - The DNS SRV records required to locate a AD DC for the domain are not registered in DNS. These records are registered with a DNS server automatically when a AD DC is added to a domain. They are updated by the AD DC at set intervals. This computer is configured
    to use DNS servers with the following IP addresses:
    192.168.0.101
    - One or more of the following zones do not include delegation to its child zone:
    cjcdsb.com
    com
    . (the root zone)
    Theres also an event id error 408 on dns?
    Thanks in advance for any help i can get with this

    Ok heres the problem computers ipconfig
       Host Name . . . . . . . . . . . . : Carter
       Primary Dns Suffix  . . . . . . . :
       Node Type . . . . . . . . . . . . : Hybrid
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : cgocable.net
                                           cjcdsb.com
       System Quarantine State . . . . . : Not Restricted
    Wireless LAN adapter Local Area Connection* 13:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Microsoft Hosted Network Virtual Adapte
       Physical Address. . . . . . . . . : B8-76-3F-95-AA-AC
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
    Ethernet adapter Bluetooth Network Connection:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Bluetooth Device (Personal Area Network
       Physical Address. . . . . . . . . : B8-76-3F-95-AA-AC
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
    Wireless LAN adapter Local Area Connection* 11:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter
       Physical Address. . . . . . . . . : B8-76-3F-95-AA-AD
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
    Ethernet adapter Ethernet:
       Connection-specific DNS Suffix  . : cjcdsb.com
       Description . . . . . . . . . . . : Realtek PCIe FE Family Controller
       Physical Address. . . . . . . . . : 74-46-A0-84-45-D6
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       IPv6 Address. . . . . . . . . . . : 2001:1970:46c1:3201:718e:bfc3:a22e:8b21
    referred)
       Temporary IPv6 Address. . . . . . : 2001:1970:46c1:3201:d1f3:3f0d:ac36:c709
    referred)
       Link-local IPv6 Address . . . . . : fe80::718e:bfc3:a22e:8b21%14(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.0.106(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Lease Obtained. . . . . . . . . . : May 16, 2014 5:27:22 PM
       Lease Expires . . . . . . . . . . : May 24, 2014 10:56:43 AM
       Default Gateway . . . . . . . . . : fe80::cad3:a3ff:fe69:90c7%14
                                           192.168.0.1
       DHCP Server . . . . . . . . . . . : 192.168.0.1
       DHCPv6 IAID . . . . . . . . . . . : 376719008
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-18-E5-01-5B-74-46-A0-84-45-
       DNS Servers . . . . . . . . . . . : 2001:1970:c000::53
                                           192.168.0.101
       NetBIOS over Tcpip. . . . . . . . : Enabled
       Connection-specific DNS Suffix Search List :
                                           cgocable.net
                                           cjcdsb.com
    Wireless LAN adapter Wi-Fi:
       Connection-specific DNS Suffix  . : cjcdsb.com
       Description . . . . . . . . . . . : Ralink RT3290 802.11bgn Wi-Fi Adapter
       Physical Address. . . . . . . . . : B8-76-3F-95-AA-AB
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       IPv6 Address. . . . . . . . . . . : 2001:1970:46c1:3201:4936:2897:c3bc:427c
    referred)
       Temporary IPv6 Address. . . . . . : 2001:1970:46c1:3201:9111:3b66:e21d:f289
    referred)
       Link-local IPv6 Address . . . . . : fe80::4936:2897:c3bc:427c%13(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.0.110(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Lease Obtained. . . . . . . . . . : May 16, 2014 5:34:49 PM
       Lease Expires . . . . . . . . . . : May 24, 2014 10:12:33 AM
       Default Gateway . . . . . . . . . : fe80::cad3:a3ff:fe69:90c7%13
                                           192.168.0.1
       DHCP Server . . . . . . . . . . . : 192.168.0.1
       DHCPv6 IAID . . . . . . . . . . . : 213415487
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-18-E5-01-5B-74-46-A0-84-45-
       DNS Servers . . . . . . . . . . . : 2001:1970:c000::53
                                           192.168.0.101
       NetBIOS over Tcpip. . . . . . . . : Enabled
       Connection-specific DNS Suffix Search List :
                                           cgocable.net
                                           cjcdsb.com
    Ethernet adapter VMware Network Adapter VMnet1:
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for VMn
    1
       Physical Address. . . . . . . . . : 00-50-56-C0-00-01
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
       Link-local IPv6 Address . . . . . : fe80::fc72:d546:af42:f3fa%43(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.64.1(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . :
       DHCPv6 IAID . . . . . . . . . . . : 956321878
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-18-E5-01-5B-74-46-A0-84-45-
       DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
                                           fec0:0:0:ffff::2%1
                                           fec0:0:0:ffff::3%1
       NetBIOS over Tcpip. . . . . . . . : Enabled
    Ethernet adapter VMware Network Adapter VMnet8:
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter for VMn
    8
       Physical Address. . . . . . . . . : 00-50-56-C0-00-08
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
       Link-local IPv6 Address . . . . . : fe80::7c76:51d8:be61:29b1%44(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.209.1(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . :
       DHCPv6 IAID . . . . . . . . . . . : 973099094
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-18-E5-01-5B-74-46-A0-84-45-
       DNS Servers . . . . . . . . . . . : fec0:0:0:ffff::1%1
                                           fec0:0:0:ffff::2%1
                                           fec0:0:0:ffff::3%1
       NetBIOS over Tcpip. . . . . . . . : Enabled
    Tunnel adapter Teredo Tunneling Pseudo-Interface:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.{F0D28F40-B52E-40A5-80EB-A3B500B58A67}:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter #4
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.{3DB9FB12-7DDF-4C1D-893A-FDC2E5176EF4}:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter #7
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes
    Tunnel adapter isatap.cjcdsb.com:
       Media State . . . . . . . . . . . : Media disconnected
       Connection-specific DNS Suffix  . : cjcdsb.com
       Description . . . . . . . . . . . : Microsoft ISATAP Adapter #10
       Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
       DHCP Enabled. . . . . . . . . . . : No
       Autoconfiguration Enabled . . . . : Yes

  • Behavior work differently with SimpleUniverse

    I initially created an application using the SimpleUniverse utility. I add a behavior one of my transform groups so that an object would change orientation on a button click.
    I then switched over to a regular Universe and constructed my own viewing branch. Now the behavior will NOT work although it did before.
    Can anyone help me and let me know what I'm missing?
    Thanks in advance.
    Here is my buildViewBranch code: and below is the code for the Canvas3D
    public BranchGroup buildViewBranch() {
              BranchGroup viewBranch = new BranchGroup();
              TransformGroup vpTrans = new TransformGroup();
              view = new View();
              ViewPlatform vipl = new ViewPlatform();
              PhysicalBody pb = new PhysicalBody();
              PhysicalEnvironment pe = new PhysicalEnvironment();
              //Attach elements of the view
              view.attachViewPlatform(vipl);
              view.setPhysicalBody(pb);
              view.setPhysicalEnvironment(pe);
              view.addCanvas3D(canv);
              vpTrans.addChild(vipl);
              view.setFieldOfView(field_of_view);// degrees for a distance of meters
              //This matrix places the camera on the +z axis looking towards the origin
              Matrix4f v_mat = new Matrix4f( 1f, 0,0,0f,
                                                      0,1f,0,0f,
                                                      0,0,1f,7f,
                                                      0,0,0,1f);
              Transform3D shiftV = new Transform3D();
              shiftV.set(v_mat);
              vpTrans.setTransform(shiftV);
              view.startView();
              view.startBehaviorScheduler();
              System.out.println("Behavior running: " + view.isBehaviorSchedulerRunning());
              viewBranch.addChild(vpTrans);
              return viewBranch;
    Here is the Canv initiation that I use:
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
              GraphicsDevice[] gs = ge.getScreenDevices();
              //Creates a graphics template to pole the monitor for the best configuration
         GraphicsConfigTemplate3D gct3d = new GraphicsConfigTemplate3D();
              //gct3d.setStereo(GraphicsConfigTemplate.PREFERRED);
              gct3d.setSceneAntialiasing(GraphicsConfigTemplate.UNNECESSARY);
              //The best graphic configuration is obtained for device 0 as this device is usually the
              //main monitor
              java.awt.GraphicsConfiguration config = gs[0].getBestConfiguration(gct3d);
         canv = new Canvas3D(config);

    I now have a better idea of what's going wrong. When I run the function
    view.isBehaviorSchedulerRunning()
    I get false before and after I run the function
    view.startBehaviorScheduler();
    What do I do? I need help. I would greatly any suggestions.
    What do I need to do to get the behavior scheduler working right?
    Kitcrew

  • SWF Verification with chat login?

    HI All,
    I am having a problem/confusion, please clear out the issue.
    When i apply SWF Verification on a chat application (which has video and audio streaming as well) everything is fine, video and audio streaming works when same file exists in SWF folder and all that, shared objects only works when swf files match etc. But user cannot connect to a chat session.
    We can see the list of rooms available to join(because they come through shared object) but when we try to join a room FMS rejects user.
    In FMS Admin console it throws exception when FMS rejects login. When we provide that exception(FlashCom/3.0.4 or FlashCom/3.0.1 depending upon which version we'r using) in the <UserAgentExceptions> tag the login works fine and chat session is created, but then FMS is not secure anymore, we can connect from any other swf file also which donot exist in SWFs folder.
    On the Adobe SWF Verrification help page it says
    Note: SWF files connecting to Flash Media Administration Server cannot be verified.
    Is this note related to my problem? I think it is, if it is then what is the solution?
    Anyone know what exception should be provided to only allow chat session verification to pass or something like that.

    No, this is specific that you're having FMS connect back to FMS itself, and it's not capable of being s SWF Verification client.  So, you'll need to open that hole in SWF Verification like you wanted.  However, you should patch that hole in another way.  For instance, when a client connects to chat you should make sure that its IP is from the local IP - that way you can be sure it's the local FMS connecting.  You can do this via script or you can configure a special connection path for it if needed.
    Asa

  • SWF Verification and HTTP Streaming from FMS 4.0.1

    Is it possible to do SWF Verification with HTTP Streaming? (If calling the box directly)
    My gut says No, and I haven't seen any examples or mentions of this in the forums, and I was hoping I could get a clear cut answer from someone that has either tried it or from Adobe.
    Thanks.
    -Will

    Hi,
    As of now, you cannot use SWFVerification to protect HTTP Streaming, as HTTP Streaming does not require connection with core process of FMS, but request is handled by f4f module in apache. The current way to ensure protection of HTTP streams is to use Flash Access for encryption of fragments. You can find more about Flash Access here at http://www.adobe.com/products/flashaccess/
    Thanks,
    Abhishek

  • FMS 4, Can't mak make NetStream to work remotely with RTMP

    Hi,
    We are working with FMS 4 server for a while for a 2 directions video application, and it works great with rtmp.
    We now want to use its rtmfp abilities after we used Cirrus for testing in the last few days and it also worked well.
    Locally - everything is working fine, but when we try the application on the remote server - we have some problems.
    Each side get the NetStatusEvent code "NetConnection.Connect.Success" and "NetStream.Publish.Start" when publish starts.
    However, when we are trying to play the stream, nothing happens. (Locally, we are getting "NetStream.Play.Start" and "NetStream.Play.Reset" - remotely: nothing).
    I did open ports 1024-65535 UDP on the server and since we are able to connect Cirrus, I believe the clients are fine.
    I also changed the Adaptor.xml HostPort element to
    <HostPort public="xxx.xxx.xxx.xxx:19350-65535">:19350-65535</HostPort> where xxx.xxx.xxx.xxx is the same public IP of our FMS Server as the one used by the client.
    Again, it is working beautifully both locally and with Cirrus. RTMP also works well with the remote server.
    What am I missing?

    Can you just check this link: http://help.adobe.com/en_US/flashmediaserver/configadmin/WSdb9a8c2ed4c02d261d76cb3412a40a4 90be-8000.html#WS829c643386b9152167c57eb5131f88a5f28-7fff and make sure you are doing or have set everything properly. If you have already done that - please ignore. Do let me know if you have already gone through this link and have set up everything properly and its still not working.
    Also have you checked http://cc.rtmfp.net/ - this is RTMFP connectivity checker - try it out - you will know if things are set up properly.

  • .swf works differently on different servers

    I made a flash navigation 2 years ago that works fine (http://fwp.mt.gov/education/ecosystem/home.html - it's the bar with Discover, Explore, Conserve, Learn and Resources, with images on the right of a compass, bear, antelope, toad, and sage grouse), but I had to make some updates to it and now it's breaking. It breaks on one server, but works ok on another.  On the site where it is breaking (a test server) as I click around some of the words disappear, sometimes the wrong images show up. It makes no sense. The navigation is passed two parameters from the page that loads it. I have debug code turned on so I can see that the correct parameters are being passed, and they are passed correctly on both servers. I can't understand how a .swf could work fine on one server and break on another.
    Any ideas?
    Cheryl

    The problem is the video is behaving like it is embedded. You
    wait for a long time for the entire movie to download. Here is a
    link
    http://pgtest.photonicsg.com/_source/cart/toothbrush_pulsar_004.htm

  • FF 3.15 worked perfect with Snow Leopard. But everything after that, till FF 8, crashes left and right. On Facebook. And on ALL different language websites. Should I stop using FF? Heard Chrome is good.

    [Edit: It should be FF 3.5. I mistyped FF 3.15]
    I have MAC OSX Snow Leopard. 10.6.8.
    FF 3.5 [apologies; I mistyped 3.15] worked perfect with Snow Leopard. NO problems.
    But '''everything''' after that, till FF 8, crashes left and right.
    Facebook crashes the most within few short seconds.
    And NO different language websites even open.
    I read online to use Safe Mode and try. I did. No change.
    I read online to reset font cache or or something using atsUtil from the Terminal. I did. Nothing.
    It is super frustrating. Same problem in my wife's Mac as well.
    Should I stop using FF? I heard Chrome is good.
    Try any of these news paper sites:
    www.prothom-alo.com
    www.dailyjanakantha.com
    www.Facebook.com
    Even ESPN videos quit randomly. But YouTube videos are fine!
    Potheek Aami.

    All your add-ons and plugins are up to date?
    There has been a recent bug with Apples Java update:
    https://bugzilla.mozilla.org/show_bug.cgi?id=700835
    I have similar issues, although most of the time the browser only freezes for a short time.

Maybe you are looking for

  • How to connect you macbook pro to your tv

    I am trying to connect my 13 inch macbook pro to my Polaroid HDTV but I am not getting any signals. Any solutions?

  • Automatic startup ... how do I set this up?

    I want my system to start up automatically in the morning, so that it's all ready to go when I need it. How do I go about this? Basically, I'm looking to have it turn on, open my mail, check my iCal, and warm up what I'm working on. Any help would be

  • Several F-47

    Hi, Has anybody tried to post several down payment requests and the subsequent down payment with F110? And finally to clear all of them agains one final invoice? Why would I do this: this would be a form of partial payments made to the same invoice.

  • Where can I download and install AquaLogic.WCFilter.dll from?

    I have installed Oracle Webcenter's Accelerator for .Net and trying to browse the WSRP webservice (http://<MyIIS-Defaultwebsite>/wsrpproducer/1.0/WSRPBaseService.asmx) installed in my IIS but getting the following error. [NullReferenceException: Obje

  • Why are two different CPU in Device Manager in Satellite P100?

    Device Manager shows my Core 2 Duo as: one T7200 2.00 GHz one T7600 2.33 GHz Can someone please explain what this means? Arjen.