org.codehaus.mojo.axistools.admin.AdminWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axistools-maven-plugin Show documentation
Show all versions of axistools-maven-plugin Show documentation
This plugin supports the wsdl2java and java2wsdl tools from the Apache Axis (1) project.
package org.codehaus.mojo.axistools.admin;
/*
* Copyright 2005 The Codehaus.
*
* Licensed 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.
*/
import org.apache.axis.AxisEngine;
import org.apache.axis.MessageContext;
import org.apache.axis.client.AxisClient;
import org.apache.axis.server.AxisServer;
import org.apache.axis.utils.Admin;
import org.apache.axis.utils.Messages;
import org.apache.axis.utils.XMLUtils;
import org.apache.maven.plugin.logging.Log;
import org.codehaus.mojo.axistools.axis.AxisPluginException;
import org.w3c.dom.Document;
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.io.Writer;
/**
* @author mlake
*/
public class AdminWrapper
extends Admin
{
private Log log;
public AdminWrapper( Log log )
{
this.log = log;
}
public void execute( String[] args )
throws AxisPluginException
{
int i = 0;
try
{
AxisEngine engine;
if ( args[0].equals( "client" ) )
{
engine = new AxisClient();
}
else
{
engine = new AxisServer();
}
engine.setShouldSaveConfig( false );
engine.init();
MessageContext msgContext = new MessageContext( engine );
Writer osWriter = new OutputStreamWriter( new FileOutputStream( args[1] ), XMLUtils.getEncoding() );
PrintWriter writer = new PrintWriter( new BufferedWriter( osWriter ) );
try
{
for ( i = 2; i < args.length; i++ )
{
log.debug( Messages.getMessage( "process00", args[i] ) );
Document doc = XMLUtils.newDocument( new FileInputStream( args[i] ) );
Document result = process( msgContext, doc.getDocumentElement() );
if ( result != null )
{
System.out.println( XMLUtils.DocumentToString( result ) );
}
}
Document document = Admin.listConfig( engine );
XMLUtils.DocumentToWriter( document, writer );
writer.println();
}
catch ( Exception e )
{
log.error( Messages.getMessage( "errorProcess00", args[i] ), e );
throw e;
}
finally
{
writer.close();
}
}
catch ( Exception e )
{
throw new AxisPluginException( "Axis Admin had a problem, it returned a failure status: " + e.getMessage() );
}
}
}