Re: Abstract classes and inheritance

2005-12-06 Thread Ales St
Title: Abstract classes and inheritance Hi, my problem is, that i have representation of my abstract class SymbolType in XXXSoapBindingStub.java: qName = new javax.xml.namespace.QName("http://www.opengis.net/sld", "SymbolType");    cachedSerQNames.add(qNa

AW: Abstract classes and inheritance

2005-12-06 Thread Knötzinger Markus
Title: Abstract classes and inheritance I didn't change wsdls, but put the method into the class that represents my webservice. After generating the stub it should occur int the XXXSoapBindingStub.java. -Ursprüngliche Nachricht-Von: Ales St [mailto:[EMAIL PROTECTED]Ges

Re: Abstract classes and inheritance

2005-12-06 Thread Ales St
Title: Abstract classes and inheritance Hi Markus, you add your  dummyMethod(Message message) in your XXXSoapBindingImpl.java or somewhere else?Or do you change a wsdl? Because in this file I have some methods for example like your dummy method :void dummyMethod(SymbolType symbol) and it

AW: Abstract classes and inheritance

2005-12-06 Thread Knötzinger Markus
Title: Abstract classes and inheritance Hi Ales, well, of course, one cannot instantiate an abstract class. But it doesn't matter if the base class is abstract or not. It comes to the same. Well, almost.   My method in the service: Message[] getMessages() { return {new DefaultMe

Re: Abstract classes and inheritance

2005-12-06 Thread Ales St
Title: Abstract classes and inheritance Hi I have dot a similar problem, you can find it on http://marc.theaimsgroup.com/?l=axis-user&m=113377937503146&w=2 . And to your problem I have got some questions: I thing that your metod getMessage() must return instance of 'DefaultMes

AW: Abstract classes and inheritance

2005-12-06 Thread Knötzinger Markus
Title: Abstract classes and inheritance Ok, finally I solved this issue. First I want to mention that I'm using Axis 1.2.1   The major problem was, that while creating the stub, the inheriting class had not been produced. (It was there, but only because I have two services in the same

AW: Abstract classes and inheritance

2005-12-01 Thread Knötzinger Markus
Title: Abstract classes and inheritance Hi, I'm sorry, I have not got the hang of it, yet. Markus   -Ursprüngliche Nachricht-Von: Ales St [mailto:[EMAIL PROTECTED]Gesendet: Donnerstag, 1. Dezember 2005 10:24An: axis-user@ws.apache.orgBetreff: Re: Abstract classe

Re: Abstract classes and inheritance

2005-12-01 Thread Ales St
Title: Abstract classes and inheritance Hi, do you solved your problem? Because I have got a similar problem, and I don't know how to solve it. If you selve it, write me please. Thank you                 Ales  - Original Message - From: Knötzinger Markus To: '

Abstract classes and inheritance

2005-11-30 Thread Knötzinger Markus
Title: Abstract classes and inheritance Hello everyone, I got stuck with a problem concerning abstract classes. I've got an abstract class called 'Message' and a concrete one called 'DefaultMessage' which does inherit 'Message'. I've got a method ge