Encrypted packets between server - client (swf file)

hello guys,
can some1 know how can i decrypt some packets which are sended between server - client (swf file) ?
ty

You shouldn't need to sync u/gid's. 
The first thing that comes to my mind here is simple filesystem perms.  To test I would make the shared dir world/group readable/writeable - IE chmod 777 /my/shared/folder. then try connecting from the remote client.  Remember, there are two sets of access permissions...Share level and filesystem level.
You can do user/group mapping if you're in a Windows AD or domain environment, but with stand-alone Samba servers this is not necessary.
I would also check the samba check list at the following link for a decent, simple set of items to look at for basic troubleshooting...
http://us3.samba.org/samba/docs/man/Sam … nosis.html

Similar Messages

  • Communications between 2 separated .swf files AS 3

    Hello,
    I have spend hours searching it over internet but i have found only codes which solves this problem in Action Script 2.0 like this http://blog.circlecube.com/2008/03/tutorial/local-connection-actionscript-communicate-betw een-seperate-flash-files-tutorial/
    and i want to solve it out with action script 3.0
    My problem is that i simply want to communicate between two separated .swf files in one HTML page.
    So if you have any ideas i would appreciate any help.
    thx

    You can talk between movies using javascript as the middleman. Here's a link that provides some information on that for both AS2 and AS3...
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15683
    It can be a little confusing to make it work, so take your time with it.

  • Server Client transfer file

    Hi!!
    i'm starting to use socket and i have a problem: i have a client and a server and i want that the client sends a file (file isn't only a text file) to the server so that the server can open it. Or that the server sends the file to the client (it's the same non problem).
    Please is there someone that can write the code for helping me. I don't know how can resolve this problem of file.
    Thanks.......

    I have a client that sends a file to a server using
    pakets of a maximum of 50 bytes. When the server
    receives a packet it "acknowledges" it (like TCP
    would do) sending a packet back to the client
    indicating if the packet has (or has not) been
    received in order with errors...My first question is 'why'? Why use UDP? Why use such a tiny packet size?Why re-invent TCP?
    This will never be a commercial project so I would just stop right now.

  • Comparision between Modules and SWF files

    I've used modules and SWF files in my flex apps but don't
    seem to see or figure out what the basic difference between the two
    is.
    I'm interested in comparisions *excluding* file size. For
    instance:
    When would one use SWF files instead of Modules?
    Are there things possible/not possible when using one or the
    other?
    Any other pros/cons?

    Obviously you can use Application SWFs to break a large
    application into dynamically loaded parts. Modules were created to
    address the ease-of-use issue. Module SWFs provide an easier
    mechanism for communication between the Modules and main (shell)
    application SWF. Modules also give us a way to enhance that
    mechanism in the future which would be limiting if working solely
    with Applications.
    Further, Modules can be reduced in SWF-size compiling them
    against the symbols loaded in the shell application. This makes
    them much smaller and faster to download. That was possible with
    Application SWFs by using Runtime Shared Libraries. However, using
    RSLs is tedious compared to using Modules.
    I have an example of using Modules on my blog. The example
    covers the size optimization of Modules as well as communication
    with Modules.

  • J2EE, possible to serve clients jsp files that are outside the war file?

    Hi, I was wondering with a J2EE webserver if it was possible to serve clients webpages from jsp files that were outside the client.
    For example say you got your war file in the auto deploy directory on the server and also on the server you got a directory full of jsp files that could be accessed by the webserver just like normal jsp files inside the war file?
    ...I want to do this because I want to be able to add jsp files without rebuilding the war file.
    ....Or is it possible to make the webserver rebuild itself, eg to add or remove files?
    Thanks

    If you are using a S1WS6.1, please try to find a line with WEBAPP in server.xml.
    You should find a line like this.
    <WEBAPP uri="/simple" path="/opt/SUNWwbsvr/https-test/webapps/https-test/simple" enabled="true"/>
    The path parameter shows the directory where the S1WS refers to when the webapplication is executed.
    You can put a jsp into the directory and modify it accordingly.
    Please refer to the following docs. They might help.
    http://docs.sun.com/source/817-6251/pwadeply.html#wp25317
    http://docs.sun.com/source/817-6251/pwadeply.html#wp25890
    thanks,
    -Yuji

  • What is the best approach to send/recv multiple types of network packets from server/client?

    I am writing two programs (server.vi) and (client.vi).  that communicate with each other over a TCP connection. 
    After the client opens a TCP connection with the server, the server responds with a packet of type "A".  The client sends another packet of type "A" back to the server as an acknowledgement.  At this point the server starts sending a continous stream of packets of type "B" to the client.  And the client starts sending a continous stream of packets with type "C". 
    This means the sending an receiving of packet with types B and C will be in parallel. 
    How should I implement something like this in labview?
    Here is one idea i have and I was hoping someone could either comment or provide a better suggestion.
    1. the server has two while loops
         a. first while loop consists of a TCP read function that receives packets of type "C".
         b. second while loop consists of a TCP write function that sends packets of type "B"
    2. the client has two while loops
        a. first while loop consists of a TCP write function that sends packets of type "C"
         b. second while loop consists of a TCP read function that receives packets of type "B".
    This way we are sending and receiving packets of type "B" and "C" in parallel. 
    Does this make any sense? Is there a more clever / better aproach to doing this?

    Putting the sending and receiving code in separate loops is a reasonable thing to do. You will need a bit of logic to handle a dropped connection, since you will need to pass the new connection information to both loops when the connection is re-established.

  • Samba UID/GID syncing between server/client

    I'm very confused about this. I'm trying to get a file share server up and running which is used by several people. I've only configured a Samba server so far for one user to use. The UID and GID of the users do not match on the server and client, and as a result I can't write to the share.
    More detailed explanation: The share on the server is owned by user "john" and group "data". The user john has a different UID on the client and the group data does not exist on the client (does it need to exist?). So the share shows up in the client as 1001:1001 and john can't write to it. How can this be fixed in an easy manner? I can't imagine having to manually adjust all uid's and gid's? There has to be an easier way, right?

    You shouldn't need to sync u/gid's. 
    The first thing that comes to my mind here is simple filesystem perms.  To test I would make the shared dir world/group readable/writeable - IE chmod 777 /my/shared/folder. then try connecting from the remote client.  Remember, there are two sets of access permissions...Share level and filesystem level.
    You can do user/group mapping if you're in a Windows AD or domain environment, but with stand-alone Samba servers this is not necessary.
    I would also check the samba check list at the following link for a decent, simple set of items to look at for basic troubleshooting...
    http://us3.samba.org/samba/docs/man/Sam … nosis.html

  • FAQ: How do I load an external SWF file into a parent SWF file?

    A ton of Flash users visit Adobe’s we site every month wondering  about how to load an external SWF file from within another SWF.
    Adobe's own TechNote on the subject attempts to answer the basic question, along with some common follow-up questions, including:
    How do I load more than one SWF?
    How do I load a SWF into a specific location in the display list?
    How do I resize the loaded SWF?
    How do I set its X and Y location?
    Here are some additional resources that elaborate on loading content and on working with the display list:
    Sample files for the above TechNote. A set of 3 FLA and 3 corresponding SWF files, including a parent SWF and 2 SWFs that the parent loads.
    Help > AS3 Developer’s Guide > Loading an external SWF file
    Help > AS3 Developer’s Guide > Loading display content dynamically
    Loading multiple external SWFs within a main SWF – CreativeCow.net forums
    Video tutorial: ActionScript 101 – Episode 6: Adding named objects to the Stage. By Doug Winnie. An example of how to add the loaded external asset to the Stage and modify its location or other properties.
    Video tutorial: Preloading in ActionScript 3.0.  By Lee Brimelow. A slightly more complicated example, showing how to  make the parent SWF display information about the progress of loading  the external SWF.
    Tutorial: Loading and unloading SWFs - FlashAndMath.com
    This article provides several examples of how to communicate between a parent SWF file and the loaded SWF:
    SWF to SWF Communcation via ActionScript 3.0 (by kglad)

    quote:
    Originally posted by:
    NedWebs
    You now seem to want to get rid of the swf once it has loaded
    and played itself thru. To do that you would need to have something
    in the swf itself that triggers its removal in its last frame. The
    following might work...
    MovieClip(this.parent).removeChild(this);
    Unfortunately I couldn't get this to work. I placed it on the
    last frame of the SWF to be called - is that right?
    I am not sure I am doing it correctly...

  • Communication between two clients

    In Java Networking, communication between server-client or bwtween server-multiple clients is general. But How will be the communication between two cients, means two clients can send & receive messages to & from each other(being guided by server).

    Sorry,
    I didn't get your reply clearly.
    I want, if Server is running, and two clients(two instance of a same program) are opened, whatever message(string)client1 send to Server,then the Server needs to send those to client2.Again, the some response should come from client2 to client1 thru Server.
    How can I implement this?
    If you have idea, or some sample code about this, please let me know.
    Regards.

  • Cross domain error while displaying .SWF files in  portal

    Hi Experts,
    i am working on EP ,
    i am trying to display a .swf file in a iview but that file is  giving an error as
    Add a cross domain policy file to the external data web server
    this swf file is retriving data from BI system.
    Please suggest !!
    i got a solution of putting a crossdoaim.xml file in root directory but thats not possible

    I think two urls will work for you:
    Xcelsius SWF with QaaWS through SSL: Cannot access external data
    http://livedocs.adobe.com/flex/3/html/help.html?content=security2_04.html

  • How to get swf file of any mxml file in flex1.5

    hi all,
    can anybody tell i have one mxml file now when i run this i
    file server generate swf file dynemically ....now my requirement is
    i need that swf file
    so how can i get that swf file from which location i get this
    file......
    plz tell me aasp
    thanks in advance

    Rather than letting the server compile the SWF at request
    time via the URL, you can pre-compile the SWF using MXMLC. Without
    telling you anymore there's information in the docs and an article
    on the Flex devnet about using MXMLC.

  • Failure to play swf files

    I have been having problems after opening HTML files that
    contain embedded swf files with Dreamweaver. They play fine on my
    machine, but when placed on the web server, the swf files do not
    appear.
    Any ideas as to what is the problem?

    Please help!
    I  uploaded my site to "hostmonster".
    My index.html page has a .swf file that should play automatically when you type in my site.  All I get is a white box.  I have the two files in the Scripts folder, also have the Clear_Skin_1.swf file and the FLVPlayer_Progressive.swf file in the remote site.
    Hostmonster says the .swf file is corrupt, yet when I'm in Dreamweaver CS4 and go to the remote site, and I double-click on the .swf file, it plays with no problem.
    This is my first site with Dreamweaver, it works fine locally, but just a white box when you type in my site.
    I have disabled this feature for now, I can put it back up if someone can help me out.
    Thanks so much!

  • MaxDB Server/client upgrade

    Hi,
    Can anyone please let me know the difference between server & client software. If i upgrade client only with out server are there any backdrops.
    What components are going to get upgraded when i do client only or both.
    Thanks in advance

    > Can anyone please let me know the difference between server & client software. If i upgrade client only with out server are there any backdrops.
    Hi Koby,
    just a remark: if you don't know what client and server software means, you probably shouldn't install/update anything like it.
    Anyhow, let's see if we can give an answer to your question.
    The database client software is the software used to use the database.
    It includes different client libraries for programmers, dba tools like dbmcli and sqlcli.
    The jdbc driver is a part of the client software as well.
    On the other hand the server component includes things like the x_server, the dbmserver executable and the MaxDB kernel as well.
    Be aware that in this context the distinction between client and server is made on the software layer.
    It's about the roles that the different programs play in the system and not about on which machine the software is installed.
    Therefore you will typically find all the client software parts also on the database server.
    It useful to have it there, as most often we want to be able to access the database also when we're logged on to the database server.
    On any client computer (the SAP Web Application servers would be the clients of the database here) on the other hand, you will just have the client packages installed because there we don't need any part of the server programs.
    Now if you ask what happens when you just upgrade the client software and leave the server software as it is, we already know that you're talking about the machine on which the database server runs.
    Due to the software structure of MaxDB (release dependent and independent parts), it is possible to upgrade the client software and leave the database software alone.
    The client software belongs to the independent parts and therefore does not impair the software the database kernel runs with.
    Anyhow, since you need to stop the whole MaxDB software when you're raising the version of the independent software part (which is used in a shared manner by all MaxDB components on the same machine), just upgrading the client software would be wasting the downtime of the system.
    Since you should perform the upgrade on the test systems first and perform tests on them afterwards (somehow this part of the test system concept seems to be the most overlooked one) you can be sure that the upgrade of the server components won't harm your system - in fact usually a patch should remove bugs and or improve performance and reliability.
    Therefore: when on the database server and installing a patch - patch your database as well!
    best regards,
    Lars

  • Server 2012 R2 File Server - 2008 R2/Win7 Clients Access Denied. SMB 3 Encryption.

    I've setup a Server 2012 R2 File Server. When creating shares I selected to enable encryption.
    Now Windows 7 and 2008 R2 clients cannot access. Pretty clear that this is SMB 3 encryption the cause.
    OK. So can I enable these Windows 7 and 2008 R2 clients to access encrypted SMB 3 shares?
    I can find no answer or documentation on this.

    So can I enable these Windows 7 and 2008 R2 clients to access encrypted SMB 3 shares?
    No, you can't. These Windows 7 and 2008 R2 clients talking to Windows Server 2012 R2, they will negotiate to the lowest common protocol which would be SMB 2.1 enabling communication, while not taking advantage of the SMB 3.0 specific capabilities (encryption
    included).
    There's no built-in encryption inside SMB 2.1

  • Copy a .swf file from server side to client using signed applet

    Hello All,
    I already have my applet signed and its working pretty well. However I want to know how can I import a .swf file into clients machine. The .swf file initially is on server side, my applet checks whether this .swf file exists already on client machine. If not it copies it to his machine.
    I know how to chk if the file already exits on client machine but I am not sure how to copy this .swf file to his machine if its missing.
    May be I need to set some input buffers from server side and then copy them to his machine.
    Can some one throw some light on this issue ??

    Hello to all Java Code Masters out thr,
    I am trying to copy a .swf file from server side to client side, however I am unsuccessful in writing the correct data. By correct data I mean that , the data does gets saved on the client side in the .swf file, and the size of the .swf file on client side is as expected, but some how I don't know why the data is not the same as expected.
    I tried opening up both the swf file, one which is on server side and the other which is on client side. And both looked different in the notepad.
    When I opens up the client side .swf file on browser it shows nothing while the .swf file on server side worked fine.
    Here is a snap shot of the two .swf files when opened in notepad:
    clientside.swf
    &#22339;&#2131;&#51395;&#40056;&#48612;&#28681;&#56220;&#6234;&#31352;&#65363;&#27474;&#26039;&#46793;&#52076;&#11698;&#45679;&#32228;&#9617;&#45643;&#52076;&#54002;&#56237;&#62930;&#57181;&#27635;&#46965;&#48804;&#30062;&#60407;&#31086;&#2937;&#37359;&#28873;&#49741;&#8252;&#10112;&#503;&#8501;&#16164;&#43397;&#16140;&#10313;&#8264;&#537;&#13737;&#16956;&#43411;&#586;&#4917;&#43544;&#22918;&#4216;&#49632;&#40179;&#64495;&#64206;&#44335;&#61334;&#19077;&#57113;&#61099;&#53246;&#52863;&#52855;&#52985;&#32246;&#63967;&#27542;&#13055;&#32611;&#52219;&#26476;&#56728;&#25064;&#57340;&#63580;&#65317;&#56023;&#32706;&#57446;&#19865;&#24183;&#40928;&#65057;&#61684;&#25313;&#64294;&#45864;&#44950;&#25919;&#7115;&#8035;&#44004;&#31973;&#18921;&#32575;&#18967;&#25451;&#63915;&#44668;&#30262;&#32651;&#11230;&#60116;&#21241;&#51902;&#30302;&#2462;&#38913;&#38887;&#2904;&#47227;&#11350;&#25775;&#35978;&#25879;&#38313;&#61967;&#15065;&#8627;&#33840;&#11456;&#12040;&#52418;&#33633;&#6640;&#63050;&#65270;&#39008;&#42184;&#40462;&#49876;&#16324;&#15399;&#60051;&#62263;&#26562;&#19076;&#47084;&#16512;&#51385;&#58710;&#13280;&#42314;&#13071;&#55199;&#17948;&#14772;&#61464;&#8985;&#9032;&#16254;&#42612;&#16367;&#47121;&#16212;&#60451;serverside.swf
    CWS�� x���     p��ZxzS�Rk�e��l��-o��}�%K�l�������]��ku���nu��nyy���pM�< �'�5!$����I
    (H �
    5<B
    ��J5��Yx��������/����J������w����}���
    k�2c��lg���a��\�%��serverside.swf is what I expect to be saved, but clientside.swf is what i get.
    Below is a code snippet which I am trying :
      public void writeswftoclient(String swfcontent) {
        String userHome = System.getProperty("user.home" );
        String ImoracleDirectory = userHome + "\\MyFolder";
        File fdirectory = new File(ImoracleDirectory);
        if(!fdirectory.isDirectory()) {
          fdirectory.mkdir();
        String playlist = ImoracleDirectory + "\\clientside.swf";
        File fplaylist = new File(playlist);
        try {
          Writer output = null;
          output = new BufferedWriter(new FileWriter(fplaylist,true));
          *System.out.println(swfcontent);*
          *output.write(swfcontent);*
          output.close();
        catch (Exception e) {
          System.out.println("Cannot create or write to the playlist");
      }In above code I am trying to write the string swfcontent, which contains the data shown above in serverside.swf, to clientside.swf.
    Interesting thing is that I am doing System.out.println(swfcontent); just before writing the data to clientside.swf using output.write(swfcontent);. And System.out.println does print the write data on the java console. However I dont know out of what reason the data doesnt get written correctly on the client's computer.
    Kindly help me in this plzzzzzzzzzz.

Maybe you are looking for

  • Can't see photos in gallery

    Good day I have upgraded to Nokia Belle, I have the Nokia N8-00.  Can anyone assist in advising me why can I not see my photos in my gallery, only if I restart phone I can see them for a while, but then if I check again theres nothing just a black sc

  • Quicktime stopped playing audio online

    I have a powerpoint lesson online and there is audio attached that plays through quicktime but it has stopped working and instead of an audio player there is not just a small quicktime icon in its place. How do I fix it so it will play again? This is

  • What is replacing Encore?

    I am really angry that Encore is effectively a hidden option in CC subscription model. Don't Adobe realsie that clients (this is the real world) nee CDs/DVDs still and that to make it impossible (I have followed instructions to download PPCS6 and uni

  • Query regarding Production

    Hi All, If client does not want the production module,but he want all the excise related information,Is it possible in SAP B1.If yes,How we can do that. For e.g when we are generating RG 23A Part-1 report,it is picking some values from production mod

  • Error inserting data after creating a trigger (caused by commit)

    Hi, I have registered a schema so that XML files are stored in a table XMLREADINGS. I create an AFTER INSERT tigger on this table. The trigger is very basic (inserting the system date into a test table). I discovered that it works fine so long as the