HI All,
   I writing a simple cxf web service. once the service is created and when
look at the wsdl from the service exposed in the weblogic server. That wsdl
has xml schema with lowercase names(Component names). It used to be upper
case in xfire. How can I get the uppercase component names?

Example
when I used this url 
http://172.16.136.185:7001/spring/cxfAuth?wsdl
i get the wsdl..I copied part of it..

- <xs:complexType name="employee">
- <xs:sequence>
  <xs:element minOccurs="0" name="firstName" type="xs:string" /> 
  <xs:element minOccurs="0" name="gid" type="xs:string" /> 
  <xs:element minOccurs="0" name="lastName" type="xs:string" /> 
  <xs:element maxOccurs="unbounded" minOccurs="0" name="Pprivileges"
type="tns:person" /> 
  </xs:sequence>
  </xs:complexType>
- <xs:complexType name="person">
- <xs:sequence>
  <xs:element minOccurs="0" name="lastName" type="xs:string" /> 
  <xs:element minOccurs="0" name="name" type="xs:string" /> 
  </xs:sequence>
  </xs:complexType>


in the above example how can I make person upper case?
-- 
View this message in context: 
http://cxf.547215.n5.nabble.com/How-to-make-CXF-wsdl-to-generate-uppercase-complextype-name-tp3370261p3370261.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to