I've made the changes you suggested, but I'm still getting the same error. Here are the relavent portions of the xml files...
WEB-INF/web.xml | <servlet> | <servlet-name>FinAidServlet</servlet-name> | <servlet-class>xxx.yyy.services.finaid.GetLOAPortType_Stub</servlet-class> | </servlet> | | <servlet-mapping> | <servlet-name>FinAidServlet</servlet-name> | <url-pattern>/servlet/FinAid</url-pattern> | </servlet-mapping> | | <service-ref> | <service-ref-name>service/FinAidService</service-ref-name> | <service-interface>xxx.yyy.services.finaid.GetLOA</service-interface> | <wsdl-file>WEB-INF/wsdl/finAid.wsdl</wsdl-file> | <jaxrpc-mapping-file>WEB-INF/jaxrpc-mapping.xml</jaxrpc-mapping-file> | </service-ref> | WEB-INF/webservices.xml | <webservice-description> | <webservice-description-name>FinAidServiceJSE</webservice-description-name> | <wsdl-file>WEB-INF/wsdl/finAid.wsdl</wsdl-file> | <jaxrpc-mapping-file>WEB-INF/jaxrpc-mapping.xml</jaxrpc-mapping-file> | <port-component> | <port-component-name>FinAid</port-component-name> | <wsdl-port>getLOAPort</wsdl-port> | <service-endpoint-interface>xxx.yyy.services.finaid.GetLOAPortType</service-endpoint-interface> | <service-impl-bean> | <servlet-link>FinAidServlet</servlet-link> | </service-impl-bean> | </port-component> | </webservice-description> | WEB-INF/jaxrpc-mapping.xml | <package-mapping> | <package-type>xxx.yyy.services.finaid</package-type> | <namespaceURI>http://xxx/yyy/ws/loa/getLOA.wsdl</namespaceURI> | </package-mapping> | Logic Class file | InitialContext iniCtx = new InitialContext(); | iniCtx.lookup("java:comp/env/service/FinAidService"); | Does anything here look wrong? I still don't know why it's not looking for the wsdl in the xxx-exp.war expanded directory. It seems like that would make all the difference. Thanks again, Matt View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3851327#3851327 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3851327 ------------------------------------------------------- This SF.net email is sponsored by: IT Product Guide on ITManagersJournal Use IT products in your business? Tell us what you think of them. Give us Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more http://productguide.itmanagersjournal.com/guidepromo.tmpl _______________________________________________ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
