CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Thread: internet

  1. #1
    Join Date
    Feb 2006
    Posts
    65

    Question internet

    im a beginner.
    could somebody tell me how (and if) can i create a (simple??) program (using c++ non visual) that can search an inputed string in google's internet search page?

    (obviously the computer will be connected at the time to the internet..)

    thanks.!!!

  2. #2
    Join Date
    Feb 2006
    Location
    London
    Posts
    238

    Re: internet


  3. #3
    Join Date
    Aug 2002
    Posts
    879

  4. #4
    Join Date
    Feb 2006
    Posts
    65

    Re: internet

    can you publish a code for that google search (and saving the result of page 1 in string array)? i dint understand what was written in all the other sites..

  5. #5
    Join Date
    Aug 2002
    Posts
    879

    Re: internet

    Here is a nice example how to use the api
    http://www.cs.fsu.edu/~engelen/googleapi.html

  6. #6
    Join Date
    Feb 2006
    Posts
    65

    Re: internet

    Step 2: Generate the SOAP Stub Routines with the gSOAP Compiler
    Before you can compile and run your program, you need to generate C/C++ sources using our SOAP stub compiler. The generated sources take care of the SOAP serialization and deserialization of the data required to access the Google API service which makes programming a SOAP C/C++ application a breeze.
    The input to our SOAP stub compiler is a specification of the names of the SOAP methods and the data structures given as C/C++ declarations. Click here to get the header file specification based on the Google Web API WSDL. Save this file as googleapi.h.

    Use the gSOAP compiler to process the header file:

    soapcpp2 -c googleapi.h
    Visit the download page to obtain the gSOAP packages with the compiler.



    This was the page's instructuions, but i cant seem to compile the googleapi.h with that gSOAP compiler........ what command should i type in the gSOAP?
    "soapcpp2 -c googleapi.h" ???????

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured