views:

210

answers:

1

Is there a framework or code already available that will give me more control over the code that gets generated based off my web references?

I'm working at a new company. And the Web Services Proxies are all self contained in their own assembly. I would really rather generate this whole project. Every time they change something on the Services-side (Java) the WSDL references have to be dropped and re-added. (I can't figure out what those guys are doing on their end that messes with the WSDL bad enough that this needs to be done so much) Their are 10 of these references. I'd rather codegen the whole thing at compile time. Every time.

What are my options?

+1  A: 

You probably want to use the ServiceDescriptionImporter

Ryan Rinaldi