You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsif-dev@ws.apache.org by "Adam R. B. Jack" <aj...@apache.org> on 2004/10/12 21:07:05 UTC

Fw: ws-wsif on Gump

Resend from a better account...
> Hi folks,
>
> Does this appear to represent an interface change within AXIS?
>
>
http://brutus.apache.org/gump/public/ws-wsif/ws-wsif/gump_work/build_ws-wsif_ws-wsif.html
>
> dynamic:
>     [mkdir] Created dir:
> /usr/local/gump/public/workspace/ws-wsif/java/build/classes
>     [javac] Compiling 168 source files to
> /usr/local/gump/public/workspace/ws-wsif/java/build/classes
>     [javac] This version of java does not support the classic compiler;
> upgrading to modern
>     [javac]
>
/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
> va/WSIFJavaTestCaseWriter.java:134:
> writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
> org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
> (java.io.PrintWriter,org.w3c.dom.Element)
>     [javac]                 writeComment(pw, p.getDocumentationElement());
>     [javac]                 ^
>     [javac]
>
/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
> va/WSIFJavaTestCaseWriter.java:145:
> writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
> org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
> (java.io.PrintWriter,org.w3c.dom.Element)
>     [javac]                 writeComment(pw, p.getDocumentationElement());
>     [javac]                 ^
>     [javac] Note: Some input files use or override a deprecated API.
>     [javac] Note: Recompile with -deprecation for details.
>     [javac] 2 errors
>
> regards,
>
> Adam
>


Re: backward incompatible change in org.apache.axis.wsdl.toJava.JavaWriter.writeComment? [ Re: Fw: ws-wsif on Gump

Posted by Aleksander Slominski <as...@cs.indiana.edu>.
Dims,

that was ultra quick ;)

thanks,

alek

Davanum Srinivas wrote:

>done.
>
>
>On Tue, 12 Oct 2004 16:45:09 -0500, Aleksander Slominski
><as...@cs.indiana.edu> wrote:
>  
>
>>hi,
>>
>>as it seems org.apache.axis.wsdl.toJava.JavaWriter was modified since
>>1.1 so i wonder how stable toJava API (it seems old method is was in
>>1.1RC2) ?
>>
>>so now in CVS i can see:
>>    protected void writeComment(PrintWriter pw, Element element, boolean
>>addTab)
>>which breaks compatibility with old:
>>    protected void writeComment(PrintWriter pw, Element element)
>>
>>so maybe somebody could add to AXIS CVS:
>>    protected void writeComment(PrintWriter pw, Element element, boolean
>>addTab) {
>>        writeComment(pw, element, true);
>>    }
>>to keep compatibility?
>>
>>BTW: this and lack of setScopedProperty is only breaking change i
>>noticed when porting WSIF to use AXIS 1.2RC1 form 1.1RC2.
>>
>>thanks,
>>
>>alek
>>
>>Adam R. B. Jack wrote:
>>
>>    
>>
>>>Resend from a better account...
>>>
>>>
>>>      
>>>
>>>>Hi folks,
>>>>
>>>>Does this appear to represent an interface change within AXIS?
>>>>
>>>>
>>>>
>>>>
>>>>        
>>>>
>>>http://brutus.apache.org/gump/public/ws-wsif/ws-wsif/gump_work/build_ws-wsif_ws-wsif.html
>>>
>>>
>>>      
>>>
>>>>dynamic:
>>>>   [mkdir] Created dir:
>>>>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
>>>>   [javac] Compiling 168 source files to
>>>>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
>>>>   [javac] This version of java does not support the classic compiler;
>>>>upgrading to modern
>>>>   [javac]
>>>>
>>>>
>>>>
>>>>        
>>>>
>>>/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
>>>
>>>
>>>      
>>>
>>>>va/WSIFJavaTestCaseWriter.java:134:
>>>>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
>>>>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
>>>>(java.io.PrintWriter,org.w3c.dom.Element)
>>>>   [javac]                 writeComment(pw, p.getDocumentationElement());
>>>>   [javac]                 ^
>>>>   [javac]
>>>>
>>>>
>>>>
>>>>        
>>>>
>>>/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
>>>
>>>
>>>      
>>>
>>>>va/WSIFJavaTestCaseWriter.java:145:
>>>>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
>>>>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
>>>>(java.io.PrintWriter,org.w3c.dom.Element)
>>>>   [javac]                 writeComment(pw, p.getDocumentationElement());
>>>>   [javac]                 ^
>>>>   [javac] Note: Some input files use or override a deprecated API.
>>>>   [javac] Note: Recompile with -deprecation for details.
>>>>   [javac] 2 errors
>>>>
>>>>regards,
>>>>
>>>>Adam
>>>>
>>>>
>>>>
>>>>        
>>>>
>>>
>>>      
>>>
>>--
>>The best way to predict the future is to invent it - Alan Kay
>>
>>
>>    
>>
>
>
>  
>


-- 
The best way to predict the future is to invent it - Alan Kay


Re: backward incompatible change in org.apache.axis.wsdl.toJava.JavaWriter.writeComment? [ Re: Fw: ws-wsif on Gump

Posted by Aleksander Slominski <as...@cs.indiana.edu>.
Dims,

that was ultra quick ;)

thanks,

alek

Davanum Srinivas wrote:

>done.
>
>
>On Tue, 12 Oct 2004 16:45:09 -0500, Aleksander Slominski
><as...@cs.indiana.edu> wrote:
>  
>
>>hi,
>>
>>as it seems org.apache.axis.wsdl.toJava.JavaWriter was modified since
>>1.1 so i wonder how stable toJava API (it seems old method is was in
>>1.1RC2) ?
>>
>>so now in CVS i can see:
>>    protected void writeComment(PrintWriter pw, Element element, boolean
>>addTab)
>>which breaks compatibility with old:
>>    protected void writeComment(PrintWriter pw, Element element)
>>
>>so maybe somebody could add to AXIS CVS:
>>    protected void writeComment(PrintWriter pw, Element element, boolean
>>addTab) {
>>        writeComment(pw, element, true);
>>    }
>>to keep compatibility?
>>
>>BTW: this and lack of setScopedProperty is only breaking change i
>>noticed when porting WSIF to use AXIS 1.2RC1 form 1.1RC2.
>>
>>thanks,
>>
>>alek
>>
>>Adam R. B. Jack wrote:
>>
>>    
>>
>>>Resend from a better account...
>>>
>>>
>>>      
>>>
>>>>Hi folks,
>>>>
>>>>Does this appear to represent an interface change within AXIS?
>>>>
>>>>
>>>>
>>>>
>>>>        
>>>>
>>>http://brutus.apache.org/gump/public/ws-wsif/ws-wsif/gump_work/build_ws-wsif_ws-wsif.html
>>>
>>>
>>>      
>>>
>>>>dynamic:
>>>>   [mkdir] Created dir:
>>>>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
>>>>   [javac] Compiling 168 source files to
>>>>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
>>>>   [javac] This version of java does not support the classic compiler;
>>>>upgrading to modern
>>>>   [javac]
>>>>
>>>>
>>>>
>>>>        
>>>>
>>>/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
>>>
>>>
>>>      
>>>
>>>>va/WSIFJavaTestCaseWriter.java:134:
>>>>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
>>>>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
>>>>(java.io.PrintWriter,org.w3c.dom.Element)
>>>>   [javac]                 writeComment(pw, p.getDocumentationElement());
>>>>   [javac]                 ^
>>>>   [javac]
>>>>
>>>>
>>>>
>>>>        
>>>>
>>>/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
>>>
>>>
>>>      
>>>
>>>>va/WSIFJavaTestCaseWriter.java:145:
>>>>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
>>>>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
>>>>(java.io.PrintWriter,org.w3c.dom.Element)
>>>>   [javac]                 writeComment(pw, p.getDocumentationElement());
>>>>   [javac]                 ^
>>>>   [javac] Note: Some input files use or override a deprecated API.
>>>>   [javac] Note: Recompile with -deprecation for details.
>>>>   [javac] 2 errors
>>>>
>>>>regards,
>>>>
>>>>Adam
>>>>
>>>>
>>>>
>>>>        
>>>>
>>>
>>>      
>>>
>>--
>>The best way to predict the future is to invent it - Alan Kay
>>
>>
>>    
>>
>
>
>  
>


-- 
The best way to predict the future is to invent it - Alan Kay


Re: backward incompatible change in org.apache.axis.wsdl.toJava.JavaWriter.writeComment? [ Re: Fw: ws-wsif on Gump

Posted by Davanum Srinivas <da...@gmail.com>.
done.


On Tue, 12 Oct 2004 16:45:09 -0500, Aleksander Slominski
<as...@cs.indiana.edu> wrote:
> hi,
> 
> as it seems org.apache.axis.wsdl.toJava.JavaWriter was modified since
> 1.1 so i wonder how stable toJava API (it seems old method is was in
> 1.1RC2) ?
> 
> so now in CVS i can see:
>     protected void writeComment(PrintWriter pw, Element element, boolean
> addTab)
> which breaks compatibility with old:
>     protected void writeComment(PrintWriter pw, Element element)
> 
> so maybe somebody could add to AXIS CVS:
>     protected void writeComment(PrintWriter pw, Element element, boolean
> addTab) {
>         writeComment(pw, element, true);
>     }
> to keep compatibility?
> 
> BTW: this and lack of setScopedProperty is only breaking change i
> noticed when porting WSIF to use AXIS 1.2RC1 form 1.1RC2.
> 
> thanks,
> 
> alek
> 
> Adam R. B. Jack wrote:
> 
> >Resend from a better account...
> >
> >
> >>Hi folks,
> >>
> >>Does this appear to represent an interface change within AXIS?
> >>
> >>
> >>
> >>
> >http://brutus.apache.org/gump/public/ws-wsif/ws-wsif/gump_work/build_ws-wsif_ws-wsif.html
> >
> >
> >>dynamic:
> >>    [mkdir] Created dir:
> >>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
> >>    [javac] Compiling 168 source files to
> >>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
> >>    [javac] This version of java does not support the classic compiler;
> >>upgrading to modern
> >>    [javac]
> >>
> >>
> >>
> >/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
> >
> >
> >>va/WSIFJavaTestCaseWriter.java:134:
> >>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
> >>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
> >>(java.io.PrintWriter,org.w3c.dom.Element)
> >>    [javac]                 writeComment(pw, p.getDocumentationElement());
> >>    [javac]                 ^
> >>    [javac]
> >>
> >>
> >>
> >/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
> >
> >
> >>va/WSIFJavaTestCaseWriter.java:145:
> >>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
> >>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
> >>(java.io.PrintWriter,org.w3c.dom.Element)
> >>    [javac]                 writeComment(pw, p.getDocumentationElement());
> >>    [javac]                 ^
> >>    [javac] Note: Some input files use or override a deprecated API.
> >>    [javac] Note: Recompile with -deprecation for details.
> >>    [javac] 2 errors
> >>
> >>regards,
> >>
> >>Adam
> >>
> >>
> >>
> >
> >
> >
> 
> --
> The best way to predict the future is to invent it - Alan Kay
> 
> 


-- 
Davanum Srinivas - http://webservices.apache.org/~dims/

Re: backward incompatible change in org.apache.axis.wsdl.toJava.JavaWriter.writeComment? [ Re: Fw: ws-wsif on Gump

Posted by Davanum Srinivas <da...@gmail.com>.
done.


On Tue, 12 Oct 2004 16:45:09 -0500, Aleksander Slominski
<as...@cs.indiana.edu> wrote:
> hi,
> 
> as it seems org.apache.axis.wsdl.toJava.JavaWriter was modified since
> 1.1 so i wonder how stable toJava API (it seems old method is was in
> 1.1RC2) ?
> 
> so now in CVS i can see:
>     protected void writeComment(PrintWriter pw, Element element, boolean
> addTab)
> which breaks compatibility with old:
>     protected void writeComment(PrintWriter pw, Element element)
> 
> so maybe somebody could add to AXIS CVS:
>     protected void writeComment(PrintWriter pw, Element element, boolean
> addTab) {
>         writeComment(pw, element, true);
>     }
> to keep compatibility?
> 
> BTW: this and lack of setScopedProperty is only breaking change i
> noticed when porting WSIF to use AXIS 1.2RC1 form 1.1RC2.
> 
> thanks,
> 
> alek
> 
> Adam R. B. Jack wrote:
> 
> >Resend from a better account...
> >
> >
> >>Hi folks,
> >>
> >>Does this appear to represent an interface change within AXIS?
> >>
> >>
> >>
> >>
> >http://brutus.apache.org/gump/public/ws-wsif/ws-wsif/gump_work/build_ws-wsif_ws-wsif.html
> >
> >
> >>dynamic:
> >>    [mkdir] Created dir:
> >>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
> >>    [javac] Compiling 168 source files to
> >>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
> >>    [javac] This version of java does not support the classic compiler;
> >>upgrading to modern
> >>    [javac]
> >>
> >>
> >>
> >/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
> >
> >
> >>va/WSIFJavaTestCaseWriter.java:134:
> >>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
> >>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
> >>(java.io.PrintWriter,org.w3c.dom.Element)
> >>    [javac]                 writeComment(pw, p.getDocumentationElement());
> >>    [javac]                 ^
> >>    [javac]
> >>
> >>
> >>
> >/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
> >
> >
> >>va/WSIFJavaTestCaseWriter.java:145:
> >>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
> >>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
> >>(java.io.PrintWriter,org.w3c.dom.Element)
> >>    [javac]                 writeComment(pw, p.getDocumentationElement());
> >>    [javac]                 ^
> >>    [javac] Note: Some input files use or override a deprecated API.
> >>    [javac] Note: Recompile with -deprecation for details.
> >>    [javac] 2 errors
> >>
> >>regards,
> >>
> >>Adam
> >>
> >>
> >>
> >
> >
> >
> 
> --
> The best way to predict the future is to invent it - Alan Kay
> 
> 


-- 
Davanum Srinivas - http://webservices.apache.org/~dims/

backward incompatible change in org.apache.axis.wsdl.toJava.JavaWriter.writeComment? [ Re: Fw: ws-wsif on Gump

Posted by Aleksander Slominski <as...@cs.indiana.edu>.
hi,

as it seems org.apache.axis.wsdl.toJava.JavaWriter was modified since 
1.1 so i wonder how stable toJava API (it seems old method is was in 
1.1RC2) ?

so now in CVS i can see:
    protected void writeComment(PrintWriter pw, Element element, boolean 
addTab)
which breaks compatibility with old:
    protected void writeComment(PrintWriter pw, Element element)

so maybe somebody could add to AXIS CVS:
    protected void writeComment(PrintWriter pw, Element element, boolean 
addTab) {
        writeComment(pw, element, true);
    }
to keep compatibility?

BTW: this and lack of setScopedProperty is only breaking change i 
noticed when porting WSIF to use AXIS 1.2RC1 form 1.1RC2.

thanks,

alek

Adam R. B. Jack wrote:

>Resend from a better account...
>  
>
>>Hi folks,
>>
>>Does this appear to represent an interface change within AXIS?
>>
>>
>>    
>>
>http://brutus.apache.org/gump/public/ws-wsif/ws-wsif/gump_work/build_ws-wsif_ws-wsif.html
>  
>
>>dynamic:
>>    [mkdir] Created dir:
>>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
>>    [javac] Compiling 168 source files to
>>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
>>    [javac] This version of java does not support the classic compiler;
>>upgrading to modern
>>    [javac]
>>
>>    
>>
>/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
>  
>
>>va/WSIFJavaTestCaseWriter.java:134:
>>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
>>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
>>(java.io.PrintWriter,org.w3c.dom.Element)
>>    [javac]                 writeComment(pw, p.getDocumentationElement());
>>    [javac]                 ^
>>    [javac]
>>
>>    
>>
>/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
>  
>
>>va/WSIFJavaTestCaseWriter.java:145:
>>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
>>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
>>(java.io.PrintWriter,org.w3c.dom.Element)
>>    [javac]                 writeComment(pw, p.getDocumentationElement());
>>    [javac]                 ^
>>    [javac] Note: Some input files use or override a deprecated API.
>>    [javac] Note: Recompile with -deprecation for details.
>>    [javac] 2 errors
>>
>>regards,
>>
>>Adam
>>
>>    
>>
>
>  
>


-- 
The best way to predict the future is to invent it - Alan Kay


backward incompatible change in org.apache.axis.wsdl.toJava.JavaWriter.writeComment? [ Re: Fw: ws-wsif on Gump

Posted by Aleksander Slominski <as...@cs.indiana.edu>.
hi,

as it seems org.apache.axis.wsdl.toJava.JavaWriter was modified since 
1.1 so i wonder how stable toJava API (it seems old method is was in 
1.1RC2) ?

so now in CVS i can see:
    protected void writeComment(PrintWriter pw, Element element, boolean 
addTab)
which breaks compatibility with old:
    protected void writeComment(PrintWriter pw, Element element)

so maybe somebody could add to AXIS CVS:
    protected void writeComment(PrintWriter pw, Element element, boolean 
addTab) {
        writeComment(pw, element, true);
    }
to keep compatibility?

BTW: this and lack of setScopedProperty is only breaking change i 
noticed when porting WSIF to use AXIS 1.2RC1 form 1.1RC2.

thanks,

alek

Adam R. B. Jack wrote:

>Resend from a better account...
>  
>
>>Hi folks,
>>
>>Does this appear to represent an interface change within AXIS?
>>
>>
>>    
>>
>http://brutus.apache.org/gump/public/ws-wsif/ws-wsif/gump_work/build_ws-wsif_ws-wsif.html
>  
>
>>dynamic:
>>    [mkdir] Created dir:
>>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
>>    [javac] Compiling 168 source files to
>>/usr/local/gump/public/workspace/ws-wsif/java/build/classes
>>    [javac] This version of java does not support the classic compiler;
>>upgrading to modern
>>    [javac]
>>
>>    
>>
>/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
>  
>
>>va/WSIFJavaTestCaseWriter.java:134:
>>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
>>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
>>(java.io.PrintWriter,org.w3c.dom.Element)
>>    [javac]                 writeComment(pw, p.getDocumentationElement());
>>    [javac]                 ^
>>    [javac]
>>
>>    
>>
>/usr/local/gump/public/workspace/ws-wsif/java/src/org/apache/wsif/tools/toja
>  
>
>>va/WSIFJavaTestCaseWriter.java:145:
>>writeComment(java.io.PrintWriter,org.w3c.dom.Element,boolean) in
>>org.apache.axis.wsdl.toJava.JavaWriter cannot be applied to
>>(java.io.PrintWriter,org.w3c.dom.Element)
>>    [javac]                 writeComment(pw, p.getDocumentationElement());
>>    [javac]                 ^
>>    [javac] Note: Some input files use or override a deprecated API.
>>    [javac] Note: Recompile with -deprecation for details.
>>    [javac] 2 errors
>>
>>regards,
>>
>>Adam
>>
>>    
>>
>
>  
>


-- 
The best way to predict the future is to invent it - Alan Kay