Code Search for Developers
 
 
  

MessageService.java from Frame2 Web Application Framework at Krugle


Show MessageService.java syntax highlighted

/*
 * Copyright 2002-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.megatome.example ;

import org.w3c.dom.Element;

/**
 * Simple message-style service sample.
 */
public class MessageService {
    /**
     * Service method, which simply echoes back any XML it receives.
     * 
     * @param elems an array of DOM Elements, one for each SOAP body element
     * @return an array of DOM Elements to be sent in the response body
     */ 
    public Element[] echoElements(Element [] elems) {
        return elems;
    }
}




See more files for this project here

Frame2 Web Application Framework

Frame2 is an alternative to using Struts for web application development. Frame2 also supports web services in an MVC context.

Project homepage: http://sourceforge.net/projects/frame2
Programming language(s): Java,JSP,XML
License: other

  jaxbgen/
    ObjectFactory.java
    User.java
  xmlhandlers/
    AckResponder.java
    UserService.java
  AddUserHandler.java
  DisplayUsers.java
  DisplayUsersHandler.java
  LogHandler.java
  MessageService.java
  TestMsg.java
  User.java
  UserStorage.java