Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way in Visual Studio 2012 to see an error log of the Update Service Reference operation

I've had a lot of issues with updating my service reference to my WCF service. I've had issues with third-party dll's not serializing correctly, and also issues with too many methods in the service. I figure these out by trial and error or looking for similar posts.

It would be helpful if there was an error log to look at. Does anyone know of a log or error log that visual studio writes out for this process?

like image 357
Ben Anderson Avatar asked May 16 '13 20:05

Ben Anderson


2 Answers

Visual Studio calls SVCUTIL.exe to do the majority of the work, IIRC. If you want to see a more verbose output of the process, use SVCUTIL yourself manually.

like image 105
x0n Avatar answered Nov 15 '22 02:11

x0n


You can start VS with log parameter:

Devenv.exe /log <path to log dir>
like image 23
Alexander Bortnik Avatar answered Nov 15 '22 03:11

Alexander Bortnik