Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-dev] eclipselink.core Schema change from Map to List breaks DBWS WSDLGenerator

Committers,
    see
https://bugs.eclipse.org/bugs/show_bug.cgi?id=219024
 
    I am getting a compile failure in dbws after today's refresh that looks to originate from a change in Schema.java in moxy.
    org.eclipse.persistence.tools.dbws.WSDLGenerator.createInlineSchema()
 
 
The method put(String, Import) is undefined for the type List eclipselink.dbws/src/org/eclipse/persistence/tools/dbws WSDLGenerator.java line 241 1203021487447 79258
The method put(String, Import) is undefined for the type List eclipselink.dbws/src/org/eclipse/persistence/tools/dbws WSDLGenerator.java line 247 1203021487447 79259
 
    private org.w3c.dom.Element createInlineSchema() {
        schema.getImports().put(parent.getSchemaLocation(), parent);
 
Caused by...
org.eclipse.persistence.internal.oxm.schema.model
public Schema() {
        namespaceResolver = new NamespaceResolver();
        imports = new HashMap();
        includes = new HashMap();
 
To:   
public Schema() {
        namespaceResolver = new NamespaceResolver();
        imports = new ArrayList();
        includes = new ArrayList();
 
thank you
/michael
 

Back to the top