You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2004/03/22 23:55:24 UTC

DO NOT REPLY [Bug 27860] - nullpointer exception caused by ...SOAPBindingStub.createCall

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=27860>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=27860

nullpointer exception caused by ...SOAPBindingStub.createCall





------- Additional Comments From dominic.battre@gmx.de  2004-03-22 22:55 -------
FWIW: The following patch "fixes" the problem but I don't know how many new ones
are created as I don't understand the code ;-)

cvs server: Diffing .
Index: JavaStubWriter.java
===================================================================
RCS file:
/home/cvspublic/ws-axis/java/src/org/apache/axis/wsdl/toJava/JavaStubWriter.java,v
retrieving revision 1.129
diff -U2 -r1.129 JavaStubWriter.java
--- JavaStubWriter.java 25 Feb 2004 14:02:52 -0000      1.129
+++ JavaStubWriter.java 22 Mar 2004 22:49:45 -0000
@@ -961,5 +961,5 @@
             // will be checked, the end delegate is DefaultTypeMappingImpl
             // that'll get it right with the base type name
-            pw.println("            cachedSerFactories.add(null);");
+            pw.println("            cachedSerFactories.add(simplesf);");
             pw.println("            cachedDeserFactories.add(simpledf);");
         } else {

Re: DO NOT REPLY [Bug 27860] - nullpointer exception caused by ...SOAPBindingStub.createCall

Posted by Davanum Srinivas <di...@yahoo.com>.
Dominic,

Can you please create the issue in JIRA? (http://issues.apache.org/jira). 

BTW, How were you able to create the bug in bugzilla? we shut it down as we migrated to JIRA?

thanks,
dims

--- bugzilla@apache.org wrote:
> DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
> RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
> <http://issues.apache.org/bugzilla/show_bug.cgi?id=27860>.
> ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
> INSERTED IN THE BUG DATABASE.
> 
> http://issues.apache.org/bugzilla/show_bug.cgi?id=27860
> 
> nullpointer exception caused by ...SOAPBindingStub.createCall
> 
> 
> 
> 
> 
> ------- Additional Comments From dominic.battre@gmx.de  2004-03-22 22:55 -------
> FWIW: The following patch "fixes" the problem but I don't know how many new ones
> are created as I don't understand the code ;-)
> 
> cvs server: Diffing .
> Index: JavaStubWriter.java
> ===================================================================
> RCS file:
> /home/cvspublic/ws-axis/java/src/org/apache/axis/wsdl/toJava/JavaStubWriter.java,v
> retrieving revision 1.129
> diff -U2 -r1.129 JavaStubWriter.java
> --- JavaStubWriter.java 25 Feb 2004 14:02:52 -0000      1.129
> +++ JavaStubWriter.java 22 Mar 2004 22:49:45 -0000
> @@ -961,5 +961,5 @@
>              // will be checked, the end delegate is DefaultTypeMappingImpl
>              // that'll get it right with the base type name
> -            pw.println("            cachedSerFactories.add(null);");
> +            pw.println("            cachedSerFactories.add(simplesf);");
>              pw.println("            cachedDeserFactories.add(simpledf);");
>          } else {


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