hi,
how can i control what kind of mapping gets generated by the
wsdl2java tool?
my intention is to not generate any xml <-> java mapping at all, since
the message that gets transported will be highly structured content
and an xml mapping for it exists as part of the 'business logic' anyway.
ideally, i would like to have something like this generated for the
port type by wsdl2java, and no mapper classes at all:
public interface MyPortType extends java.rmi.Remote {
public javax.xml.soap.SOAPElement myCall(javax.xml.soap.SOAPElement body)
throws java.rmi.RemoteException;
}
is this possible?
thanks a lot in advance.
regards
patrick peck