> I just followed the getting started guide. I have all the files > generated by gSOAP in the proyect folder, and I am a newbie in cpp, > but as far as I know I should link just the library files, and there > are no library files generated by gSOAP, just xml and sources. I am > missing some step?
Perhaps. Normally each .c file will be compiled into an .o file, and you link all the .o files and libraries together. If you miss an .o file you'll typically get the errors you're seeing. It's also possible (with GCC at least) to compile all the .c files at the same time (no .o files), in this case missing a .c file from the command line will also cause the problem. Basically you've only compiled half the code and it's complaining that it can't find the rest of it. Cheers, Adam.
