This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of Darcy DeClute's Scrum Master Certification Guide: The Definitive Resource for Passing the CSM and PSM Exams and have Darcy DeClute on-line!
See this thread for details.
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

Binding operation has no corresponding portType operation:

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,I am trying to do wsdl2java using axis2 wsdl2java class. i keep getting this error for one of the operations in wsdl. this operation is a notification type, meaning it does not have input but only output. I have all the necessary jars in the class path but i keep getting this error. the jars i use are :
all the axis lib jar and xalan,xerces,xmlapi.


Binding operation has no corresponding portType operation: name = getType, input name = null, output name = null
at org.apache.axis.wsdl.symbolTable.SymbolTable.populateBindings(SymbolTable.java:2818)
at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:796)
at org.apache.axis.wsdl.symbolTable.SymbolTable.add(SymbolTable.java:571)
at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:546)
at org.apache.axis.wsdl.gen.Parser.run(Parser.java:426)
at org.apache.axis.wsdl.toJava.Emitter.run(Emitter.java:620)

really apprciate help
 
Ranch Hand
Posts: 2198
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
Make sure that all <operation> elements in the <binding> element in the WSDL has <operation> elements with matching names in the <portType> element references by the <binding> element.
Example:

Best wishes!
 
He's my best friend. Not yours. Mine. You can have this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic