Hello! I hope someone can help with this stuff. I tried to set up a sample webservice/client stuff, the service is the default c# helloworld service which comes with the ide, the client is a simple c++ mfc app. I followed the tutorials on msdn to create and deploy the service, which worked fine. Then i followed the instructions on how to create a client, add web resource etc. The problem is, that when i try to run the client from my system (windows 2000 sp4) it fails before even starting, saying: "The procedure entry point getaddrinfo could not be located in the dynamic link library WS2_32.dll." It runs finely on windows 2003 though. I googled around a bit for the cause of this problem, but i couldn't find any solutions for win 2000, only xp or 2003. I checked the 2003 and 2000 ws2_32.dll-s with depends, and in the 2000 version i didn't find the mentioned function. Why does my compiler include references to a function not in my dll? If anyone can help me to solve this problem, please post a reply. Ngetal
I
Imre Koszo
@Imre Koszo
Posts
-
windows 2000 / VC++ 2005 web service access problem in ws2_32.dll -
In your language how do you say???In Hungarian this would be: Isten hozott a Kódprojekten!
-
c++ and canonical xmlWell i get a string like: " Hello, world! " with all the whitespaces and linefeeds and the like, and i have to give back something like this: " Hello, world! " normalizing the line feeds and whitespaces etc. as written in w3c's c14n standard (http://www.w3.org/TR/2001/REC-xml-c14n-20010315) so i have to make a c14n canonicalizer.
-
c++ and canonical xmlHello! I have to write a class in c++ which takes a char* as input, which is the content of an xml document, and gives back the canonical form of it without comments. The problem is: i have to use msxml 4.0 or older, i cannot use .net, libxml etc. I have been searching the web for a while now but nothing. If anybody could help me please do so.