On Tue, Jan 26, 2010 at 4:23 PM, Stephen Russell <[email protected]> wrote: > I am attempting to compile the java classes from one of my WCF > services for a java workflow app I have to do. joy :( > > Anywho I have a jar file of all the classes in the WSDL2Java that I > ran agains my service. > > I get 75 .java files and when I javac them I only get 73 output. more joy! > > I -classpath the output directory because that seems to be where it is > failing the compile. > > <code> > package CIMS.CaseJacket; > > public class MulticastDelegate extends CIMS.CaseJacket.Delegate > implements java.io.Serializable { > public MulticastDelegate() { > } > > public MulticastDelegate( > javax.xml.namespace.QName factoryType, > org.apache.axis.message.MessageElement [] _any) { > super( > factoryType, > _any); > } > > I get a cannot find symbol: > > constructor Delegate {javax.xml.namespace.QName factoryType, > org.apache.axis.message.MessageElement : class > CIMS.CaseJacket.Delegate > > > Anyone have an idea about this? I am just getting a headache over it.
I can probably help, being petty good at both Java & .NET. But I need more info. If you're WCF service uses any of the Async patterns common in .NET, I would expect Axis to choke on it because the equivalents do not exist in Java. (So much for interop.) However, the problem may be simpler than that. Contact me offline. I don't have a ton of free time ATM but I like these kinds of problems, and maybe can lend a hand. - Publius > -- > Stephen Russell > Sr. Production Systems Programmer > SQL Server DBA > Web and Winform Development > Independent Contractor > Memphis TN > > 901.246-0159 > [excessive quoting removed by server] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[email protected] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

