Dear sir,
Am student in master 2 in computer science department in the university of yaoundé 1 and for my master thesis, i have to build an anomaly detection algorithm for a network intrusion detection in pharo.i have started reading about pharo. And i have the following question in mine - How can an application develop in pharo be deployed(web application and stand alone application)? - How can i capture frame and packet in a network using pharo? Best Regards, Arnaud |
On Wed, Apr 6, 2016 at 3:08 PM, mathias arnaud nkeumo tsombeng
<[hidden email]> wrote: > Dear sir, Dear Arnaud, > Am student in master 2 in computer science department in the > university of yaoundé 1 and for my master thesis, i have to build an > anomaly detection algorithm for a network intrusion detection in > pharo.i have started reading about pharo. And i have the following > question in mine > - How can an application develop in pharo be deployed(web application > and stand alone application)? Why do you want to deploy your application ? first of all try to do something simple and you could take of deployment issues later. > - How can i capture frame and packet in a network using pharo? I'm not sure you can do that directly in Pharo, but this always possible to use an external application to log the packet and do the analysis inside Pharo. BTW, I will be visiting Yaoundé mid May 2016. We could spend sometimes to discuss about Pharo if you need any help. Regards, -- Serge Stinckwich UCBN & UMI UMMISCO 209 (IRD/UPMC) Every DSL ends up being Smalltalk http://www.doesnotunderstand.org/ |
In reply to this post by Arnaud
On Wed, Apr 6, 2016 at 9:08 PM, mathias arnaud nkeumo tsombeng
<[hidden email]> wrote: > Dear sir, > > Am student in master 2 in computer science department in the > university of yaoundé 1 and for my master thesis, i have to build an > anomaly detection algorithm for a network intrusion detection in > pharo.i have started reading about pharo. And i have the following > question in mine > - How can an application develop in pharo be deployed(web application > and stand alone application)? To deploy a standalone application you would distribute your working IMAGE together with a VM. Depending on which platform you are on, you could rename the VM to your application name with an INI file defining which IMAGE to start, or use a command script. > - How can i capture frame and packet in a network using pharo? In Pharo 5 you probably want to use UFFI to interface to something like http://linux.die.net/man/3/pcap cheers -ben |
In reply to this post by Arnaud
Le 6/4/16 15:08, mathias arnaud nkeumo tsombeng a écrit : > Dear sir, Welcome Mathais arnaud > > Am student in master 2 in computer science department in the > university of yaoundé 1 and for my master thesis, i have to build an > anomaly detection algorithm for a network intrusion detection in > pharo.i have started reading about pharo. And i have the following > question in mine > - How can an application develop in pharo be deployed(web application > and stand alone application)? For standalone, the pharo launcher is an example http://smalltalkhub.com/#!/~Pharo/PharoLauncher I also suggest you to use it. Now focus on your app first > - How can i capture frame and packet in a network using pharo? What is the protocol you want to use because it looks lowlevel to me? In deep into pharo there is a network chapter. http://books.pharo.org > > Best Regards, > Arnaud Did you see that there is a Mooc beta tester program? if you want to learn pharo fast before the Mooc is starting? |
Free forum by Nabble | Edit this page |