---- Usage ---- ---- 2010-07-05 ---- ~~Licensed to the Apache Software Foundation (ASF) under one ~~or more contributor license agreements. See the NOTICE file ~~distributed with this work for additional information ~~regarding copyright ownership. The ASF licenses this file ~~to you under the Apache License, Version 2.0 (the ~~"License"); you may not use this file except in compliance ~~with the License. You may obtain a copy of the License at ~~ ~~ http://www.apache.org/licenses/LICENSE-2.0 ~~ ~~Unless required by applicable law or agreed to in writing, ~~software distributed under the License is distributed on an ~~"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~~KIND, either express or implied. See the License for the ~~specific language governing permissions and limitations ~~under the License. Usage The WSDL plugin will use the path environmental variable to choose the WSDL generator - MONO or Microsoft. Within the path field, specify the location of your WSDL file. If you need to specifically choose the vendor yourself, and not rely on the path, add the netHome field. The path is the only required field. You can optionally add the netHome, language, namespace, server and proxy. +----+ npanday.plugin maven-wsdl-plugin wsdl ${MONO_HOME} CS org.apache.maven.test HelloService.wsdl nmaven-site true MD5 my-proxy +----+ * Handling Servers and Proxies The WSDL generation utility allows you to pull the WSDL from a URL. In some case, these URLs may be located behind a proxy and/or require some form of authentication. It is generally not good pratice to embed the username/passwords in the configuration files that you may be distributing or putting under version control. Use the maven settings.xml file to keep this information locally (typically located under ${USER_HOME}/.m2). The server.id and proxy.id map the username/password to the configuration of the WSDL plugin. There is an experimental feature to hash the password (does not work in all cases due to encoding issues). +----+ nmaven-site name pass my-proxy name1 password1 localhost +----+