What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! Bug Reports » Chat LOg viewer Broken

Chat LOg viewer Broken
Author: Message:
si3rra
Full Member
***

Avatar
i'm with stupid -->

Posts: 175
Reputation: 1
42 / Male / Flag
Joined: Jan 2003
RE: Chat LOg viewer Broken
MsgPlusOnLineLogs Service


You have created a service.

To test this service, you will need to create a client and use it to call the service. You can do this using the svcutil.exe tool from the command line with the following syntax:



svcutil.exe https://service.msgplus.net/MsgPlusService/MsgPlusOnLineLogs.svc/mex

This will generate a configuration file and a code file that contains the client class. Add the two files to your client application and use the generated client class to call the Service. For example:


C#

class Test
{
    static void Main()
    {
        MsgPlusOnLineLogsClient client = new MsgPlusOnLineLogsClient();

        // Use the 'client' variable to call operations on the service.

        // Always close the client.
        client.Close();
    }
}



Visual Basic

Class Test
    Shared Sub Main()
        Dim client As MsgPlusOnLineLogsClient = New MsgPlusOnLineLogsClient()
        ' Use the 'client' variable to call operations on the service.

        ' Always close the client.
        client.Close()
    End Sub
End Class
12-17-2011 12:43 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Chat LOg viewer Broken - by pablindo on 12-16-2011 at 12:58 PM
RE: Chat LOg viewer Broken - by si3rra on 12-17-2011 at 12:43 AM
RE: Chat LOg viewer Broken - by CookieRevised on 12-17-2011 at 03:43 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On