找不到与 WSDD 操作匹配的 Java 操作

发布于 2024-11-05 17:57:17 字数 377 浏览 3 评论 0原文

我为以下代码创建了一个 Web 服务,但出现异常:

org.apache.axis.InternalException:java.lang.Exception:调用函数时无法找到与 WSDD 操作“andrQues”(0 args)”匹配的 Java 操作。

public class Ques {
    public String[] AndrQues(){
        String ques[] = {"name??", "age??", "grade??"};
        return ques;
    }

}

有谁知道为什么会发生这种情况?而且 wsdl 也不是正在生成。

I hv created a web service for the following code but am getting an exception:

org.apache.axis.InternalException: java.lang.Exception: Couldn't find a matching Java operation for WSDD operation "andrQues" (0 args)" on invoking the function.

public class Ques {
    public String[] AndrQues(){
        String ques[] = {"name??", "age??", "grade??"};
        return ques;
    }

}

Does anyone know why its occuring? Also the wsdl is not getting generated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

肤浅与狂妄 2024-11-12 17:57:17

我发现了错误。
只需将“AndrQues”更改为“andrQues”,程序就可以正常运行。

I found the error.
Just need to change the "AndrQues" to "andrQues" and program runs fine.

不再让梦枯萎 2024-11-12 17:57:17

您的方法名称有问题,请确保您的方法名称拼写正确。请注意首先使用您的方法的事情,后者是小写的意思。

只是你需要将“AndrQues”更改为“andrQues”,因为默认情况下网络服务将名称转换为小写。

这会有所帮助..

There is something wrong with your method name make sure that you have spelled your method Name correct. take care about the thing that use your method first latter in small means lower case.

just u need to change "AndrQues" to "andrQues" because by Default the web-services taking name into the lower case.

this will help..

酒浓于脸红 2024-11-12 17:57:17

就我而言,缺少调用 WSSoapHttpBindingImpl.java 的接口 WSPort.java 的入口。

public interface <classname> extends java.rmi.Remote 
{
   public <methodname>(<params>) throws java.rmi.RemoteException;
}

In my case, entry into the interface WSPort.java invoking WSSoapHttpBindingImpl.java was missing.

public interface <classname> extends java.rmi.Remote 
{
   public <methodname>(<params>) throws java.rmi.RemoteException;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文