Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default looking for samples

    Can someone suggest a couple of samples of the following:

    I have an normal windows unmanged c++ App that will open a session with my
    server and exchange some info. That is the app sends some info to the server
    and the server responds with either an answer (other info) or an error
    message .

    I'd like to see a simple skeleton of such an app. Should the server side
    use IIS?
    Are there important pitfalls with this. I've got plenty of experience with
    writing code, but somehow I've avoided internet applications.


    Where should I be looking for info about doing this?

    TIA.
    --
    Gak -
    Finecats
    usfinecats Guest

  2. Similar Questions and Discussions

    1. C# .NET Samples?
      A new discussion was started by RichSabo in Acrobat Windows -- C# .NET Code samples? I need to be able to take uploads from our multiple...
    2. Where I could get the samples about FMS?
      Hi guys, I am a new beginner and looking for some informations about FMS. However I can't find any much sample for study. If you have one, pls let...
    3. Looking for WSE 2.0 samples
      Are there any resources for sample projects using vb.net in VS2003 and WSE 2.0? I have a winforms app and am trying to get my arms around using...
    4. S3D Samples
      Hi all, Finally i?ve managed to get my Shockwave3D stuff online. Check it out at http://www.3dschock.de Would be nice to see some new...
    5. New Shockwave 3D samples
      Chrome Lib samples: http://www.chromelib.com/samples/index.html
  3. #2

    Default RE: looking for samples

    Hello Gak,

    I think there are a lot of solution for such an issue. For example, without
    IIS, you can create a server appliaction with Sockets and communicate with
    TCP. For a solution with IIS (much easy to implment), you may consider a
    solution with Web service. For example, a .NET web service running on IIS.
    The client can be .NET application or an unmanaged C++ application based on
    SOAP toolkit.

    Following newsgroup should be best place for further questions on Sockets
    on Web Service:

    microsoft.public.win32.programmer.networks
    microsoft.public.dotnet.framework.aspnet.webservic e

    If there is any questions, please feel free to let us know.

    Sincerely,

    Luke Zhang

    Microsoft Online Community Support
    ==================================================
    Get notification to my posts through email? Please refer to
    [url]http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif[/url]
    ications.

    Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
    where an initial response from the community or a Microsoft Support
    Engineer within 1 business day is acceptable. Please note that each follow
    up response may take approximately 2 business days as the support
    professional working with you may need further investigation to reach the
    most efficient resolution. The offering is not appropriate for situations
    that require urgent, real-time or phone-based interactions or complex
    project analysis and dump analysis issues. Issues of this nature are best
    handled working with a dedicated Microsoft Support Engineer by contacting
    Microsoft Customer Support Services (CSS) at
    [url]http://msdn.microsoft.com/subscriptions/support/default.aspx[/url].
    ==================================================

    This posting is provided "AS IS" with no warranties, and confers no rights.



    Luke Zhang [MSFT] Guest

  4. #3

    Default RE: looking for samples

    Hello,

    [url]www.codeproject.com[/url] should be a good place to find such sample, I performed
    a search on it and here are what I found:

    A reusable, high performance, socket server class - Part 1
    [url]http://www.codeproject.com/internet/jbsocketserver1.asp[/url]

    Server Client Sockets
    [url]http://www.codeproject.com/internet/server_client_sockets.asp[/url]

    You may refer to it to see if it will help. And here is the complete
    reference of winsock:

    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/win[/url]
    sock/winsock_reference.asp

    Sincerely,

    Luke Zhang

    Microsoft Online Community Support
    ==================================================
    Get notification to my posts through email? Please refer to
    [url]http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif[/url]
    ications.

    Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
    where an initial response from the community or a Microsoft Support
    Engineer within 1 business day is acceptable. Please note that each follow
    up response may take approximately 2 business days as the support
    professional working with you may need further investigation to reach the
    most efficient resolution. The offering is not appropriate for situations
    that require urgent, real-time or phone-based interactions or complex
    project analysis and dump analysis issues. Issues of this nature are best
    handled working with a dedicated Microsoft Support Engineer by contacting
    Microsoft Customer Support Services (CSS) at
    [url]http://msdn.microsoft.com/subscriptions/support/default.aspx[/url].
    ==================================================

    This posting is provided "AS IS" with no warranties, and confers no rights.



    Luke Zhang [MSFT] Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139