1

Is there anyway to deactivate the automatic generation of a service while importing a WSDL in WSO2 GREG?

Community
  • 1
  • 1
nize
  • 1,012
  • 1
  • 11
  • 27

1 Answers1

1

You need to uncomment following entry in GREG_HOME/repositroy/conf/registry.xml

  <property name="createService">false</property>
Shelan Perera
  • 1,753
  • 1
  • 11
  • 10
  • A clarification. This property is configured per handler, so using the default handlers you have it in both '' and '' – nize Apr 24 '13 at 13:58
  • Yes. Those are two ways you can upload wsdls. One is as a single file. So it will hit WSDLMediaTypeHandler or as an archive so it will hit ZipWSDLMediaTypeHandler. so you need to uncomment in both if you use them. – Shelan Perera Apr 24 '13 at 15:28