msn

Capturing MSN Chat via Memory

Is it possible, or does anyone know the best way to capture MSN chats? I was thinking about attaching to the MSN process, and messing about searching for static addresses for conversations, to capture them. (This is all on the windows platform using c++) ...

Legality of 3rd party IM APIs

Is it legal to write instant message software that implements MSN Messener, Yahoo! Messener, or AIM protocols and receive money for it through ads? ...

Auto accepting contacts using phpmsnclass

Hello I'm currently using phpmsnclass to send messages to contacts on the MSN network. But to get the nickname on my "bot" to work I have to accept the "friend-request" my contacts has sent me. From the debuginfo I have found that around line 1672 in the file msn.clas.php it's a kind of auto-accepting feature. But I cant use the doLoop ...

MSN with Python

I have plans to create a simple bot for a game I run and have it sit on MSN and answer queries. I want to use Python to do this and googled around and found MSNP. I thought "great" and "how awesome" but it appears that it's about 5 years old and oddly enough doesn't connect to MSN as they've probably changed one or two small little thing...

Is it possible to programmatically talk to MSN messenger / Live messenger?

Hi chaps, I've been researching how to interact with the MSN messenger / Live messenger service programmatically and I can't find any real documentation on this. The documentation for the Live services only seem to implement in Javascript (they're here: http://dev.live.com/Messenger/) It would be possible to reverse engineer this API t...

How do i interface with the MSN Protocol using Python?

I am trying to connect to the MSN network using Python.. I've done some searching and it seems like http://blitiri.com.ar/p/msnlib/ and http://msnp.sourceforge.net/ are the available libraries. However both seem very old and is there any other up to date library that i can use? Dupplicate of : http://stackoverflow.com/questions/490929/m...

Problem running twisted.words example using msn protocol

I am currently trying to use the Twisted library specifically twisted words to try and interat with MSN. However when i run the sample script provided by twisted , i get an error. Specifically the error is found here http://i42.tinypic.com/wl945w.jpg . The script can be found over here http://twistedmatrix.com/projects/words/documentatio...

Programatically launch MSN or chat client for specific contact

Is there a way to programmatically launch a chat client (eg: MSN Messenger) and automatically open a chat window for a specific contact? I'm hoping for something similar to ShellExec("mailto:[email protected]"), but for chat instead of email. ...

Programatically instigate a Windows Live Messenger Notification popup with VB .Net

I really like the MSN notification popup. Basically the popup you see when you receive a new email etc. I'd like to put timers and set times so I, for instance, get a popup at 2PM saying "Don't forget..." I know I could make my own notification bubble but I'd prefer the WLM one. Thanks ...

PHP Timeout when connecting to nexus.passport.com

Hi all! I'm writing an MSN client in PHP. This is my code for so far: $socket = fsockopen("messenger.hotmail.com", 1863); echo '<b>Connected to 1st server.</b><br />'; //Send MSNP version fputs($socket, "VER 0 MSNP10 CVR0\r\n"); echo fread($socket, 5000) . '<br />'; //Send user-agent fputs($socket, "CVR 1 0x0409 php ".phpversion()." i3...

PHP pfsockopen in a session

Hi all! I'm making an MSN client in PHP. I have this code, which connects to a server and logs in to MSN: $server2 = explode(":", $xfr[3]); $socket2 = pfsockopen($server2[0], (int)$server2[1]); $_SESSION["socket"] = $socket; echo '<b>Connected to 2nd server.</b><br />'; //Send MSNP version fputs($socket2, "VER 0 MSNP10 CVR0\r\n"); echo...

Help me understand this traceback from the twisted.words msn sample

I'm running the twisted.words msn protocol example from the twisted documentation located here: http://twistedmatrix.com/projects/words/documentation/examples/msn_example.py I am aware there is another question about this sample .py on stackoverflow, but this is an entirely different problem. When I run the example, it behaves as expect...

Either PHP's pfsockopen or Microsoft closes connection after about one minute

Hi all! I'm making an MSN client in PHP, which makes a persistent socket connection to one of Microsoft's servers: //Connect to second server $server2 = explode(":", $xfr[3]); $socket2 = pfsockopen($server2[0], (int)$server2[1], $errno, $errstr, 999999); $_SESSION["socket"] = $server2; echo '<b>Connected to 2nd server.</b><br />'; Th...

Is MSN an OpenID provider?

Is MSN an OpenID provider? If so, do you know what the URLs look like? I'm trying to add MSN to the list of providers with special buttons I already have for logging in to a web sit. ...

Good open-source Swing/Java component for doing MSN-like popup notifications

Hi there, I am looking for a good open-source Java component for implementing popup notifications in a Swing desktop application. The component should be able to function like the ones commonly seen in instant messaging applications such as MSN Messenger, so that just as someone sends you a message, a little ontop window slides up from...

Wincap Msn messenger, yahoo messenger, google talk

Does someone know how to use Wincap(or other library) to see messages sent from and to Msn messenger, yahoo messenger, google talk? Thanks ...

How to test MSN Explorer?

A client is seeing bugs on their website using MSN Explorer. I can't reproduce those bugs with IE7 or any other browser, and I can't use MSN Explorer, because it requires a subscription to MSN. What is MSN Explorer based on? I assumed it was exactly the same as IE7 with a different interface, from wikipedia and the user-agent string. ...

Using messengerApi in visual studio (c#) in any windows, compatibility issue.

I'm Trying to develop a project that interacts with Live Messenger (8.5, 9.0 and higher) I can't get it to work in windows XP, whenever i try to instantiate a MessengerClass (available in the messengerAPI) it gives me an exception, however, in windows vista, this error doesn't happen (same exact code, tested in more than one XP and more ...

How to obtain msn contact list?

Given the account and password, how to obtain the contact list of that account in msn? Are there any msn api can do this? Or I have to use the account and password to login and obtain the contact list. ...

VOIP: How to Create a Web app to make Call like skype or msn ?

This is a very newbie question. I want to know how to create a WEB APP to make Call ( using VOIP protocoll I think ). What program languages do I have to learn ( client and server side ) ? ...