我们可以使用Axis2 Web Service输出html内容吗?它真的可以吗?

时间:2015-12-08 20:13:37

标签: java html web-services axis2

我只是想用Axis2编写一个简单的Web服务,它可以在访问时显示一个html页面。

所以这就是我到目前为止所做的事情...... 我写了尝试在Axis2中编写一个带有java类文件的Web服务,该文件将使用html输出进行打印,这里的问题是 - Axis 2将html输出嵌入到WSDL标签中。是否真的可以使用Axis2 Web Service实现html响应。?

service.xml

<service name="TestService">
        <description>
            This is a sample Web service with two operations, echo and ping.
        </description>
        <parameter name="serviceClass">com.xxx.xxxx.MyService</parameter>
        <operation name="getString">
..................
.......
</service>

MyService.Java

public class MyService {
     public void getString() {
         System.out.println("<html><body><h1>Hello</h1></body></html>");
        }

}

0 个答案:

没有答案