Different source for the WSDL files
Author: i.sharp@pcisystems.co.uk (Iain Sharp)
When doing call in to uniface web services, the wsdl files are generally placed in <install_dir>\\uniface\\webapps\\uniface\\WEB-INF\\wsdl When I am running different versions of our applications from the same machine, I can use different virtual folders and map them to the correct UST values in the web.xml file, e.g.
-<servlet-mapping> <servlet-name>srd</servlet-name> <url-pattern>/services/*</url-pattern> </servlet-mapping> -<servlet-mapping> <servlet-name>srdt</servlet-name> <url-pattern>/services_test/*</url-pattern> </servlet-mapping> -<servlet-mapping> <servlet-name>srdd</servlet-name> <url-pattern>/services_devel/*</url-pattern> </servlet-mapping>
Question :- Is there a parameter in here I am unaware of which can also redirect the path for the wsdl files above? I am currently having to be aware of what version the wsdl files relate to, and copy and paste to test the different versions....




