You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2004/12/10 15:54:24 UTC

cvs commit: ws-axis/java/src/org/apache/axis/components/encoding DefaultXMLEncoder.java XMLEncoderFactory.java

dims        2004/12/10 06:54:24

  Modified:    java/src/org/apache/axis/components/encoding
                        XMLEncoderFactory.java
  Added:       java/src/org/apache/axis/components/encoding
                        DefaultXMLEncoder.java
  Log:
  Adding a default encoder (nusoap sends ISO-8859-1 to us, working with FR^2 on IRC to see if this fixes the problem)
  
  Revision  Changes    Path
  1.5       +1 -1      ws-axis/java/src/org/apache/axis/components/encoding/XMLEncoderFactory.java
  
  Index: XMLEncoderFactory.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/components/encoding/XMLEncoderFactory.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- XMLEncoderFactory.java	21 Apr 2004 02:40:35 -0000	1.4
  +++ XMLEncoderFactory.java	10 Dec 2004 14:54:24 -0000	1.5
  @@ -78,7 +78,7 @@
       public static XMLEncoder getEncoder(String encoding) throws UnsupportedEncodingException {
           XMLEncoder encoder = (XMLEncoder) encoderMap.get(encoding);
           if (encoder == null) {
  -            throw new UnsupportedEncodingException(Messages.getMessage("unsupportedEncoding00", encoding));
  +            encoderMap.put(encoding, new DefaultXMLEncoder(encoding));
           }
           return encoder;
       }
  
  
  
  1.1                  ws-axis/java/src/org/apache/axis/components/encoding/DefaultXMLEncoder.java
  
  Index: DefaultXMLEncoder.java
  ===================================================================
  /*
   * Copyright 2001-2004 The Apache Software Foundation.
   * 
   * 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.
   */
  
  package org.apache.axis.components.encoding;
  
  public class DefaultXMLEncoder extends UTF8Encoder {
      private String encoding = null;
  
      public DefaultXMLEncoder(String encoding) {
          this.encoding = encoding;
      }
  
      /**
       * gets the encoding supported by this encoder
       *
       * @return string
       */
      public String getEncoding() {
          return encoding;
      }
  }