I would like to use the application-client.xml file but I do not know how to use it in a client application (Java Swing). How do I specify that it should be used?
I am not using a JNDI lookup for the service stub! I am using the wsdl file at runtime to dynamically generate the stub. | URL url = new URL(wsdl); | QName qname = new QName(ns,service); | ServiceFactory factory = ServiceFactory.newInstance(); | | Service service = factory.createService(url,qname); | Stub stub = (Stub)service.getPort(PublisherClient.class); | How can I use the application-client.xml file? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3897599#3897599 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3897599 ------------------------------------------------------- This SF.Net email is sponsored by: Power Architecture Resource Center: Free content, downloads, discussions, and more. http://solutions.newsforge.com/ibmarch.tmpl _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
