Silverlight访问 Apache服务器(Tomcat,Geronimo)中部署的Webservice

Silverlight 访问 Apache服务器中的Webservice

开发环境

Vs2010 、 Silverlight4 、 Java Jdk1.6 U 21 、 Apache-tomcat-6.0.20 、 Myeclipse8.5 、 Apache-ant-1.8.1 、 Axis2 、 Geronimo-tomcat6-javaee5-2.2.

       下载地址:

Apache-tomcat : http://apache.ziply.com/tomcat/

Apache-ant   : http://apache.ziply.com/ant/

Axis2 : http://apache.ziply.com/ws/axis2/

Geronimo-tomcat : http://apache.ziply.com/geronimo/

编写 Webservice

       其实就是写个 java class ,步骤如下:

1、 使用 Myeclipse 新建个 java project

2、 在工程的 src 目录下新建个 java class (注:没有用 package ) SlWebServiceHelloWorld.java ,内容如下:

3、 找到这个 SlWebServiceHelloWorld 的 class 文件 ,发布的时候有用。

SlWebServiceHelloWorld.java

public class SlWebServiceHelloWorld {

  /**

     * Webservice 业务方法

     *

     * @return   " XXX , Hello World!"

     */       

    public String sayHelloWorld(String name) {

            return name + ", Hello World!" ;

    }

}

生成 Axis2

Axis2 是一套崭新的 WebService 引擎,该版本是对 Axis1.x 重新设计的产物。 Axis2 不仅支持 SOAP1.1 和 SOAP1.2 ,还集成了非常流行的 REST WebService ,同时还支持 Spring 、 JSON 等技术。我们直接使用现成的 Axis2 War 文件。

1、  将 下载好的 axis2-1.5.1 和   apache-ant-1.8.1 解压。

2、  通过 运行 , 进入 axis2-1.5.1\webapp 文件夹下

2010112614242165.gif

3、  配置好 Ant!

set ANT_HOME= D:\ apache-ant-1.8.1   (Ant 解压的路径 )

set PATH=%ANT_HOME%\bin  

4、  打开 axis2-1.5.1\webapp\WEB-INF , 在文件夹下新建个 名为 pojo 的文件夹,把

SlWebServiceHelloWorld.class (上步编写好 java 类的 Class 文件) 粘帖到这

2010112614245894.gif

5、  运行 ant 命令    自动在上级添加 dist 文件夹 ,生成 axis2.war

2010112614252927.gif

6、  打开 axis2-1.5.1\dist 文件夹, 你会发现已经有 axis2.war 存在

2010112614260194.gif

发布 Axis2

众所周知,若要允许 Silverlight 控件访问其他域上的服务,该服务必须明确选择允许跨域访问。 Silverlight 4 支持两种不同的机制供服务选择跨域访问:

在承载服务的域的根目录中放置一个 clientaccesspolicy.xml 文件,以配置服务允许跨域访问。

在承载服务的域的根目录中放置一个有效的 crossdomain.xml 文件。

我们这边使用的是 clientaccesspolicy.xml 。内容如下:

clientaccesspolicy.xml

<?xml version="1.0" encoding="utf-8"?>

<access-policy>

  <cross-domain-access>

    <policy>

      <allow-from http-request-headers="SOAPAction">

        <domain uri="*"/>

      </allow-from>

      <grant-to>

        <resource path="/" include-subpaths="true"/>

      </grant-to>

    </policy>

  </cross-domain-access>

</access-policy>

(1) 使用 Tomcat 发布

、把clientaccesspolicy.xml 放在apache-tomcat-6.0.20\webapps\ROOT 下。

2 、把 axis2.war 文件 复制 粘帖到 Tomcat 的 webapps   文件夹下

              apache-tomcat-6.0.20\webapps\axis2.war

1、 启动 Tomcat ( apache-tomcat-6.0.20\bin\startup.bat )

2、 在浏览器中输入: http://localhost:8080/axis2/services/listServices   结果如下:

2010112614264695.gif

你会发现有你部署上的 SlWebServiceHelloWorld 。

3、 点击页面中的 SlWebServiceHelloWorld ,你能看见 部署的 webservice  结果如下:

2010112614272297.gif

4、 测试你的 webservice 运行

http://localhost:8080/axis2/services/SlWebServiceHelloWorld/sayHelloWorld?name=” Sweet ”

结果如下:

2010112614275812.gif

恭喜你, webservice 部署 ok !

(2)         使用 Geronimo 发布

1、 把 clientaccesspolicy.xml 放在 

geronimo-tomcat6-javaee5-2.2\repository\org\apache\geronimo\configs\welcome-tomcat\2.2\welcome-tomcat-2.2.car  

2、 运行 Geronimo 服务,并登陆后台

http://localhost:8080/console/portal/Welcome

UserName:      system

PassWord :      manager

3、 点击“ 部署新应用 ” 部署 Axis2.war

2010112614283031.gif

4、部署成功 点击“ web 应用程序”, 在浏览器中运行 http://localhost:8080/axis2/services/listServices

效果如下:

2010112614295650.gif

和 Tomcat 一样 ,你会发现有你部署上的 SlWebServiceHelloWorld 。

5、 点击页面中的 SlWebServiceHelloWorld ,你能看见 部署的 webservice  结果如下:

2010112614303212.gif

和 Tomcat 部署一样

6、 测试下运行的 webservice

http://localhost:8080/axis2/services/SlWebServiceHelloWorld/sayHelloWorld?name="Geronimo "

因为 Tomcat 和 Geronimo 部署的项目都一样 , 所以 效果都一样。

Silverlight 测试 Webservice

1、  新建个 silverlight 项目 ,命名为: SlApacheWebServiceTest

2、  Add  Service Reference ,填入

http://localhost:8081/axis2/services/SlWebServiceHelloWorld?wsdl

命名为: ApacheSR   如下:

2010112614310765.gif

3、  设计界面,编写方法。 因为用于测试,所以界面 比较随便。效果如下:

左边文本框填入信息,右边文本框接收信息。

2010112614314037.gif

Xaml

< UserControl x : Class ="SlApacheWebServiceTest.MainPage"

     xmlns ="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

     xmlns : x ="http://schemas.microsoft.com/winfx/2006/xaml"

     xmlns : d ="http://schemas.microsoft.com/expression/blend/2008"

     xmlns : mc ="http://schemas.openxmlformats.org/markup-compatibility/2006"

     mc : Ignorable ="d"

     d : DesignHeight ="300" d : DesignWidth ="800">

    < Grid >

        < TextBox x : Name ="tbName"

                  Height ="79"

                  Width ="200"

                  Margin ="131,81,469,139" />

        < Button x : Name ="btnSend"

                 Content =" 获 ? 取 ¨? 信 ? 息 ¡é"

                 Height ="100"

                 Width ="450"

                 Click ="btnSend_Click"

                 Margin ="131,167,205,33" />

        < TextBox x : Name ="tbMessage"

                  Height ="79"

                  Width ="200"

                  Margin ="395,81,205,139" />

    </ Grid >

</ UserControl >

Cs

namespace SlApacheWebServiceTest

{

    public partial class MainPage : UserControl

    {

        public MainPage()

        {

            InitializeComponent();

        }

        private void btnSend_Click(object sender, RoutedEventArgs e)

        {

            ApacheSR.SlWebServiceHelloWorldPortTypeClient ws = new ApacheSR.SlWebServiceHelloWorldPortTypeClient ();

            ws.sayHelloWorldAsync(tbName.Text.Trim());

            ws.sayHelloWorldCompleted += new EventHandler <ApacheSR.sayHelloWorldCompletedEventArgs >(ws_sayHelloWorldCompleted);

        }

        void ws_sayHelloWorldCompleted(object sender, ApacheSR.sayHelloWorldCompletedEventArgs e) {

            tbMessage.Text = e.Result.ToString();

        }

    }

}

4、  F5 运行,输入 Sweet , 得到结果 Sweet, Hello World! 。 效果如下:

2010112614322190.gif

测试 Pass !  

(注意:我使用的 Tomcat 端口为 8081 ,大家注意自己的端口!

  跨域文件 clientaccesspolicy.xml 的路径:

  Tomcat : apache-tomcat-6.0.20\webapps\ROOT

Geronimo 

geronimo-tomcat6-javaee5-2.2\repository\org\apache\geronimo\configs\welcome-tomcat\2.2\welcome-tomcat-2.2.car  

转载于:https://www.cnblogs.com/luxiaofeng54/archive/2010/11/26/1888749.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/378814.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

那些帮助你成为优秀前端工程师的讲座——《性能篇》

这篇文章是前端优秀讲座和讨论列表系列连载第七篇&#xff0c;介绍前端性能优化技巧。前端领域发展迅速&#xff0c;只有时刻掌握前端发展趋势和技术动态&#xff0c;学习前沿的开发思想和理念才能让自己跟上时代的步伐&#xff0c;保持自己的技术优势。 您可能感兴趣的相关文章…

mca终端_MCA的完整形式是什么?

mca终端1)MCA&#xff1a;计算机应用硕士 (1) MCA: Master of Computer Application) MCA is an abbreviation of Master of Computer Application. It is a masters degree program for post-graduation in Computer applications. This post-graduate course duration is abo…

钢铁侠java_现代版“钢铁侠”,无所不能的程序员,java工程师实现人造器官!...

一位名叫利亚姆泽贝迪(Liam Zebedee)的软件工程师已经厌倦了糖尿病患者的生活挑战&#xff0c;因此他决定入侵他的胰岛素泵&#xff0c;并将其转变成一种崭新的高科技胰腺胰腺。Zebedee详细介绍了查找和订购零件的过程&#xff0c;为智能胰岛素泵编写软件的代码以及在其博客中组…

Windows下的Memcache安装 (转)

Windows下的Memcache安装&#xff1a;1. 下载memcache的windows稳定版&#xff0c;解压放某个盘下面&#xff0c;比如在c:\memcached2. 在终端&#xff08;也即cmd命令界面&#xff09;下输入 ‘c:\memcached\memcached.exe -d install’ 安装3. 再输入&#xff1a; ‘c:\memca…

C#中实现js中的eval函数功能

在js中有eval函数&#xff0c;比如 eval&#xff08;‘33*4’&#xff09;结果为15&#xff1b; 但C#中想要完成这样的功能&#xff0c;却没有相应的函数&#xff0c;可以用sql语句的方式实现&#xff0c;比如&#xff0c;执行 select 33*4 的方式。 可以先构造公式 Formula …

查看照片的指定位置的像素点值,并在照片中绘制一条指定像素颜色的线段

查看照片的指定位置的像素点值&#xff0c;并在照片中绘制一条指定像素的线段 import cv2 img cv2.imread(E:\Python-workspace\OpenCV\yanyu/beyond.png,1)#1为彩色图片&#xff0c;0为灰度图片 (b,g,r) img[20,20]#取照片的(20,20)处的像素点&#xff0c;左上角为(0,0)&am…

大数据和云计算涉及的技术_云计算涉及的风险

大数据和云计算涉及的技术In todays life using of cloud is very common among people, we use different clouds like Google cloud, cloud Azure etc. to store our photos, Videos, documents, data etc. to save space as well as we think that we will be able to retri…

int 转interger java_Java中Integer和int之间的转换

int到Integer:int a3;Integer Anew Integer(a);或:Integer AInteger.valueOf(a);Integer到int:Integer Anew Integer(5);int aA.intValue();至于Integer.parseInt(String str)则是将String类型转为int类型。int类型是放在栈空间的&#xff0c;Integer是作为对象放在堆空间的;in…

图像分割-二阶导数零交叉点的含义

已知&#xff1a; 二阶导数在灰度斜坡和灰度台阶过渡处会产生双边缘响应。 二阶导数的符号可以用于确定边缘的过渡是从亮到暗还是暗到亮。 斜坡开始处&#xff0c;二阶导数为负&#xff0c;斜坡结束二阶导数为正&#xff0c;斜坡上&#xff0c;二阶导数为0.&#xff08;亮到暗…

采购子系统-流程图、表结构、内容简介

设计说明&#xff1a; 流程图&#xff1a; 表结构&#xff1a; -- {*******************************************************} -- { } -- { GSP } -- { …

题目53:Goldbach's Conjecture

http://ac.jobdu.com/problem.php?cid1040&pid52 题目描述&#xff1a;Goldbachs Conjecture: For any even number n greater than or equal to 4, there exists at least one pair of prime numbers p1 and p2 such that n p1 p2. This conjecture has not been prov…

Anaconda下安装TensorFlow和OpenCV(都是心血呀~)

从国庆放假到现在的6号&#xff0c;我整整搞了将近五天多。安装个TensorFlow和OpenCV不下五次&#xff0c;各种问题各种解决&#xff0c;下载后卸载&#xff0c;卸载后下载&#xff0c;我快吐了啊这个国庆&#xff0c;但是最终还是达到了自己的目标&#xff08;我太难了&#x…

图像分割-基本边缘检测roberts,prewitt,sobel,canny,laplace

执行边缘检测的三个基本步骤&#xff1a; 1、为降噪对图像进行平滑处理。&#xff08;导数对噪声具有敏感性。图像的正负分量检测困难&#xff09; 2、边缘点的检测。&#xff08;提取边缘点的潜在候选者&#xff09; 3、边缘定位。&#xff08;从候选者中选出真是边缘点成员&a…

goroutine并发扫描MySQL表_goroutine 并发之搜索文件内容

golang并发编程 - 例子解析February 26, 2013最近在看《Programming in Go》, 其中关于并发编程写得很不错, 受益非浅, 其中有一些例子是需要多思考才能想明白的, 所以我打算记录下来, 强化一下思路《Programming in Go》在 Chapter 7. Concurrent Programming 里面一共用3个例…

软件开发模型和软件过程模型_什么是软件和软件过程?

软件开发模型和软件过程模型软件 (Software) Software is a set of instructions which instructs the computer for performing different operations. Software is nothing else but a general name for computer programs. 软件是一组指令&#xff0c;指导计算机执行不同的操…

甲骨文CEO埃里森称将在Sun裁员1000人

据国外网站报道&#xff0c;甲骨文CEO拉利埃里森周三表示&#xff0c;在完成对Sun的收购后&#xff0c;将对该公司裁员1000人。不过他同时也表示&#xff0c;未来几个月还要新雇2000人加强Sun的业务。 分析师们曾预测甲骨文完成收购后&#xff0c;将在Sun大裁员。不过埃里森和甲…

改变Jupyter的默认项目路径

开始接触Jupyter&#xff0c;看见它默认的工作路径是C盘&#xff0c;很难受想换下工作空间路径 管理员身份打开你的Anaconda Prompt 输入jupyter notebook --generate-config&#xff0c;找到你的配置文件位置 修改一下路径即可 一般情况到这一步就已经修改成功了&#xff…

arm-linux-gcc/ld/objcopy/objdump使用总结[zz]

地址&#xff1a;http://hi.baidu.com/xiaoyue1800/item/a11a2c4a26da4b04c11613d9arm-linux工具的功能如下&#xff1a;arm-linux-addr2line 把程序地址转换为文件名和行号。在命令行中给它一个地址和一个可执行文件名&#xff0c;它就会使用这个可执行文件的调试信息指出在给…

图像分割-LOG检测器和DOG检测器

边缘检测是以较小的算子为基础的&#xff0c;具有两个建议 1、灰度变化与图像尺寸无关&#xff0c;因此检测要求使用不同尺寸的算子。 2、灰度的突然变化会在一阶导数产生波峰波谷&#xff0c;在二阶导数产生零交叉 大的算子检测模糊边缘&#xff0c;小的算子检测锐度集中的细节…

java const string_深入研究Java String

开始写 Java 一年来&#xff0c;一直都是遇到什么问题再去解决&#xff0c;还没有主动的深入的去学习过 Java 语言的特性和深入阅读 JDK 的源码。既然决定今后靠 Java吃饭&#xff0c;还是得花些心思在上面&#xff0c;放弃一些打游戏的时间&#xff0c;系统深入的去学习。Java…