c# - Why Visual Studio 2012 generated web service proxy class starts with lowercase letter? -


i using [add web reference] on visual studio 2012, proxy classes generated, problem class name start lowercase letter. makes me crazy.

context xcontext = new context(); 

help me please, how correct uppercase.

if webservice in java, decorating java classes follow let have uppercased c# classes.

try this:

@xmltype(name="protocolitem") public class protocolitem {    ... } 

from change wsdl xsd:complextype name apache cxf

and if wants method first letter uppercased, set "operationname":

@webmethod(operationname="ping", action="ping") @webresult(name="pingreturn") public string ping() {     return "pong"; } 

Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -