You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-dev@xml.apache.org by Achim Derigs <Ac...@InnoviData.COM> on 2001/04/17 14:16:24 UTC

Re: Deploying SOAP services automatically

On Wed, 11 Apr 2001 Achim.Derigs@innovidata.com wrote:

> Hi,
> 
> is it possible to deploy SOAP services packaged in a WAR automatically when the WAR is deployed?

Meanwhile I have written my own `ConfigManager' to realize the above mentioned behavior. My `ConfigManager' extends the `DefaultConfigManager' where I've found a little bug:

*** xml-soap/java/src/org/apache/soap/server/DefaultConfigManager.java	Thu Feb  1 22:32:06 2001
--- ../../external/tss/mcp/databus/soap/src/org/apache/soap/server/DefaultConfigManager.java	Tue Apr 17 13:07:34 2001
***************
*** 102,108 ****
      this.context = context;
    }
  
!   public void setOptions( Hashtable options ) {
      if ( options == null ) return ;
      
      String value = (String) options.get( "filename" );
--- 102,108 ----
      this.context = context;
    }
  
!   public void setOptions( Hashtable options ) throws SOAPException {
      if ( options == null ) return ;
      
      String value = (String) options.get( "filename" );

Regards
Achim