Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. A Programming Question

A Programming Question

Scheduled Pinned Locked Moved The Lounge
questionc++sysadminlearning
8 Posts 6 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Offline
    R Offline
    Richard Stringer
    wrote on last edited by
    #1

    HA ! I knew that you would look to chastise me but... I have a new client that is requesting some features that I have never had any "real" experience with although its a fairly common feature these days. We have an application that does insurance calculation, prints all documentation such as applications and ID cards and such for insuring motorcycles. The app is all MFC ( Ver 6.0). The client wants to be able to move the data ( in some form to be determined after they have 600 or so meetings :) ) via the internet to their home office. We have done this in the past using ftp but they want something else. The link will have to be bi-directional as I have to make absolutly certain that the data was recieved and also get a policy # back. I will probably have to write the server program as well as integrate the client stuff in our existing application. The data will have to be sent in ascii as we are talking to a mainframe at the other end and I will probably have to do CGI type stuff as we are not guaranteed as to the serverside software being MS. I can handle the CGI stuff but am at a loss as to how tom get the data from my application using HTTP . So my question is Will somebody write this for me? :) NO NO Actually would someone recommend a good book or two on this < Heavy on code > that I can peruse and gain the necessary knowledge to plan, price, and write this functionality ? Hopefully it will be available on Amazon as In have looked all over town for a decent book and can't find anything suitable. Richard When I reflect upon the number of disagreeable people who I know have gone to better world, I am moved to lead a different life. Mark Twain- Pudd'nhead Wilson's Calendar

    A C M S R 5 Replies Last reply
    0
    • R Richard Stringer

      HA ! I knew that you would look to chastise me but... I have a new client that is requesting some features that I have never had any "real" experience with although its a fairly common feature these days. We have an application that does insurance calculation, prints all documentation such as applications and ID cards and such for insuring motorcycles. The app is all MFC ( Ver 6.0). The client wants to be able to move the data ( in some form to be determined after they have 600 or so meetings :) ) via the internet to their home office. We have done this in the past using ftp but they want something else. The link will have to be bi-directional as I have to make absolutly certain that the data was recieved and also get a policy # back. I will probably have to write the server program as well as integrate the client stuff in our existing application. The data will have to be sent in ascii as we are talking to a mainframe at the other end and I will probably have to do CGI type stuff as we are not guaranteed as to the serverside software being MS. I can handle the CGI stuff but am at a loss as to how tom get the data from my application using HTTP . So my question is Will somebody write this for me? :) NO NO Actually would someone recommend a good book or two on this < Heavy on code > that I can peruse and gain the necessary knowledge to plan, price, and write this functionality ? Hopefully it will be available on Amazon as In have looked all over town for a decent book and can't find anything suitable. Richard When I reflect upon the number of disagreeable people who I know have gone to better world, I am moved to lead a different life. Mark Twain- Pudd'nhead Wilson's Calendar

      A Offline
      A Offline
      Anders Molin
      wrote on last edited by
      #2

      look here[^] for a way to use HTTP from your application... You could also take a look at this[^] book. I have the first edition, and it's really good for everything about network programming... - Anders Money talks, but all mine ever says is "Goodbye!"

      1 Reply Last reply
      0
      • R Richard Stringer

        HA ! I knew that you would look to chastise me but... I have a new client that is requesting some features that I have never had any "real" experience with although its a fairly common feature these days. We have an application that does insurance calculation, prints all documentation such as applications and ID cards and such for insuring motorcycles. The app is all MFC ( Ver 6.0). The client wants to be able to move the data ( in some form to be determined after they have 600 or so meetings :) ) via the internet to their home office. We have done this in the past using ftp but they want something else. The link will have to be bi-directional as I have to make absolutly certain that the data was recieved and also get a policy # back. I will probably have to write the server program as well as integrate the client stuff in our existing application. The data will have to be sent in ascii as we are talking to a mainframe at the other end and I will probably have to do CGI type stuff as we are not guaranteed as to the serverside software being MS. I can handle the CGI stuff but am at a loss as to how tom get the data from my application using HTTP . So my question is Will somebody write this for me? :) NO NO Actually would someone recommend a good book or two on this < Heavy on code > that I can peruse and gain the necessary knowledge to plan, price, and write this functionality ? Hopefully it will be available on Amazon as In have looked all over town for a decent book and can't find anything suitable. Richard When I reflect upon the number of disagreeable people who I know have gone to better world, I am moved to lead a different life. Mark Twain- Pudd'nhead Wilson's Calendar

        C Offline
        C Offline
        Chris Ormerod
        wrote on last edited by
        #3

        Have you looked at Message Queuing(sp?)? This isn't a Microsoft only technology and it supports most of what you want to do and the infrastructure is already there on most servers. It sure beats writing CGI programs to do all this junk :-D


        Have a look at my website: http://www.chrisormerod.cjb.net

        1 Reply Last reply
        0
        • R Richard Stringer

          HA ! I knew that you would look to chastise me but... I have a new client that is requesting some features that I have never had any "real" experience with although its a fairly common feature these days. We have an application that does insurance calculation, prints all documentation such as applications and ID cards and such for insuring motorcycles. The app is all MFC ( Ver 6.0). The client wants to be able to move the data ( in some form to be determined after they have 600 or so meetings :) ) via the internet to their home office. We have done this in the past using ftp but they want something else. The link will have to be bi-directional as I have to make absolutly certain that the data was recieved and also get a policy # back. I will probably have to write the server program as well as integrate the client stuff in our existing application. The data will have to be sent in ascii as we are talking to a mainframe at the other end and I will probably have to do CGI type stuff as we are not guaranteed as to the serverside software being MS. I can handle the CGI stuff but am at a loss as to how tom get the data from my application using HTTP . So my question is Will somebody write this for me? :) NO NO Actually would someone recommend a good book or two on this < Heavy on code > that I can peruse and gain the necessary knowledge to plan, price, and write this functionality ? Hopefully it will be available on Amazon as In have looked all over town for a decent book and can't find anything suitable. Richard When I reflect upon the number of disagreeable people who I know have gone to better world, I am moved to lead a different life. Mark Twain- Pudd'nhead Wilson's Calendar

          M Offline
          M Offline
          Michael A Barnhart
          wrote on last edited by
          #4

          How the server is set up will drive how you want to do the rest. Encluding other usage they may want from the server. CGI is good for learning but in a heavily used area it is not the best. Have you given any consideration to Web Services approach? (May Bob forgive me. This is one area that you can actually work well with the Java religion.) This is the Lounge so; Email me directly and I can share a few trial functions I did a number of years ago with CHttpConnection. You did say MFC app. They have no error checking at all, and are not production (or good CP article) quality, but may help to show some peices. "I will find a new sig someday."

          1 Reply Last reply
          0
          • R Richard Stringer

            HA ! I knew that you would look to chastise me but... I have a new client that is requesting some features that I have never had any "real" experience with although its a fairly common feature these days. We have an application that does insurance calculation, prints all documentation such as applications and ID cards and such for insuring motorcycles. The app is all MFC ( Ver 6.0). The client wants to be able to move the data ( in some form to be determined after they have 600 or so meetings :) ) via the internet to their home office. We have done this in the past using ftp but they want something else. The link will have to be bi-directional as I have to make absolutly certain that the data was recieved and also get a policy # back. I will probably have to write the server program as well as integrate the client stuff in our existing application. The data will have to be sent in ascii as we are talking to a mainframe at the other end and I will probably have to do CGI type stuff as we are not guaranteed as to the serverside software being MS. I can handle the CGI stuff but am at a loss as to how tom get the data from my application using HTTP . So my question is Will somebody write this for me? :) NO NO Actually would someone recommend a good book or two on this < Heavy on code > that I can peruse and gain the necessary knowledge to plan, price, and write this functionality ? Hopefully it will be available on Amazon as In have looked all over town for a decent book and can't find anything suitable. Richard When I reflect upon the number of disagreeable people who I know have gone to better world, I am moved to lead a different life. Mark Twain- Pudd'nhead Wilson's Calendar

            S Offline
            S Offline
            Shaun Wilde
            wrote on last edited by
            #5

            a web service :) in .NET - forget about knowing all those underlying protocols if you don't need to

            Stupidity dies. The end of future offspring. Evolution wins. - A Darwin Awards Haiku

            R 1 Reply Last reply
            0
            • S Shaun Wilde

              a web service :) in .NET - forget about knowing all those underlying protocols if you don't need to

              Stupidity dies. The end of future offspring. Evolution wins. - A Darwin Awards Haiku

              R Offline
              R Offline
              Richard Stringer
              wrote on last edited by
              #6

              As the Soprano family is so fond of saying fergetaboutit. Hey the underlying OS could be Linux - unix - Solaris - or Windows on the server side. On the client side I have to support anything from Win95 - XP. Its gotta be a generic solution client side wise. Server side I think I can do the job ( But am not real sure ) Richard When I reflect upon the number of disagreeable people who I know have gone to better world, I am moved to lead a different life. Mark Twain- Pudd'nhead Wilson's Calendar

              S 1 Reply Last reply
              0
              • R Richard Stringer

                HA ! I knew that you would look to chastise me but... I have a new client that is requesting some features that I have never had any "real" experience with although its a fairly common feature these days. We have an application that does insurance calculation, prints all documentation such as applications and ID cards and such for insuring motorcycles. The app is all MFC ( Ver 6.0). The client wants to be able to move the data ( in some form to be determined after they have 600 or so meetings :) ) via the internet to their home office. We have done this in the past using ftp but they want something else. The link will have to be bi-directional as I have to make absolutly certain that the data was recieved and also get a policy # back. I will probably have to write the server program as well as integrate the client stuff in our existing application. The data will have to be sent in ascii as we are talking to a mainframe at the other end and I will probably have to do CGI type stuff as we are not guaranteed as to the serverside software being MS. I can handle the CGI stuff but am at a loss as to how tom get the data from my application using HTTP . So my question is Will somebody write this for me? :) NO NO Actually would someone recommend a good book or two on this < Heavy on code > that I can peruse and gain the necessary knowledge to plan, price, and write this functionality ? Hopefully it will be available on Amazon as In have looked all over town for a decent book and can't find anything suitable. Richard When I reflect upon the number of disagreeable people who I know have gone to better world, I am moved to lead a different life. Mark Twain- Pudd'nhead Wilson's Calendar

                R Offline
                R Offline
                Ravi Bhavnani
                wrote on last edited by
                #7

                PHP is a good way to go on the server side. /ravi Let's put "civil" back in "civilization" http://www.ravib.com ravib@ravib.com

                1 Reply Last reply
                0
                • R Richard Stringer

                  As the Soprano family is so fond of saying fergetaboutit. Hey the underlying OS could be Linux - unix - Solaris - or Windows on the server side. On the client side I have to support anything from Win95 - XP. Its gotta be a generic solution client side wise. Server side I think I can do the job ( But am not real sure ) Richard When I reflect upon the number of disagreeable people who I know have gone to better world, I am moved to lead a different life. Mark Twain- Pudd'nhead Wilson's Calendar

                  S Offline
                  S Offline
                  Shaun Wilde
                  wrote on last edited by
                  #8

                  but on the client side its just XML sent to a port - nothing OS specific about XML

                  Stupidity dies. The end of future offspring. Evolution wins. - A Darwin Awards Haiku

                  1 Reply Last reply
                  0
                  Reply
                  • Reply as topic
                  Log in to reply
                  • Oldest to Newest
                  • Newest to Oldest
                  • Most Votes


                  • Login

                  • Don't have an account? Register

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • World
                  • Users
                  • Groups