i have installed an xp under vmware workstation and i can ping the guest with the adress 192.168.126.131 - so i ve started a wcf duplex service, which works fine if i start srv and client under my host system (using localhost everywhere as path) - but if i start the service srv under the guest i can access http://192.168.126.131:18000/MyService?wsdl but it won t work - i have no idea why. also if i use vmware virtual network editor to forward the port to host won t work :-S
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...