KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > systest > routing > passthrough > SOAPHTTPToSOAPJMSRouter


1 package org.objectweb.celtix.systest.routing.passthrough;
2
3 import javax.xml.namespace.QName JavaDoc;
4
5 import org.objectweb.celtix.systest.routing.DocLitGreeterRouterBase;
6
7 public class SOAPHTTPToSOAPJMSRouter extends DocLitGreeterRouterBase {
8
9     public SOAPHTTPToSOAPJMSRouter() {
10         super();
11
12         serviceName =
13             new QName JavaDoc("http://objectweb.org/hello_world_doc_lit", "SOAPService3");
14         portName =
15             new QName JavaDoc("http://objectweb.org/hello_world_doc_lit", "SoapPort3");
16         
17         enableOneway = false;
18     }
19     
20 }
21
Popular Tags