Return-Path: Delivered-To: apmail-ws-juddi-cvs-archive@www.apache.org Received: (qmail 45852 invoked from network); 27 Mar 2005 02:32:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 27 Mar 2005 02:32:54 -0000 Received: (qmail 4458 invoked by uid 500); 27 Mar 2005 02:32:53 -0000 Delivered-To: apmail-ws-juddi-cvs-archive@ws.apache.org Received: (qmail 4425 invoked by uid 500); 27 Mar 2005 02:32:53 -0000 Mailing-List: contact juddi-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Delivered-To: mailing list juddi-cvs@ws.apache.org Received: (qmail 4412 invoked by uid 99); 27 Mar 2005 02:32:53 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 26 Mar 2005 18:32:53 -0800 Received: (qmail 45833 invoked by uid 1759); 27 Mar 2005 02:32:52 -0000 Date: 27 Mar 2005 02:32:52 -0000 Message-ID: <20050327023252.45832.qmail@minotaur.apache.org> From: sviens@apache.org To: ws-juddi-cvs@apache.org Subject: cvs commit: ws-juddi/src/java/org/apache/juddi/registry RegistryServlet.java X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N sviens 2005/03/26 18:32:52 Modified: src/java/org/apache/juddi/registry RegistryServlet.java Log: Updated error messages related to situations where unsupported requests are recieved. Revision Changes Path 1.24 +2 -2 ws-juddi/src/java/org/apache/juddi/registry/RegistryServlet.java Index: RegistryServlet.java =================================================================== RCS file: /home/cvs/ws-juddi/src/java/org/apache/juddi/registry/RegistryServlet.java,v retrieving revision 1.23 retrieving revision 1.24 diff -u -r1.23 -r1.24 --- RegistryServlet.java 21 Mar 2005 03:53:13 -0000 1.23 +++ RegistryServlet.java 27 Mar 2005 02:32:52 -0000 1.24 @@ -246,7 +246,7 @@ String function = uddiReq.getLocalName(); if ((function == null) || (function.trim().length() == 0)) - throw new FatalErrorException("The name of the UDDI request " + + throw new FatalErrorException("The UDDI request type " + "could not be identified."); // Lookup the appropriate XML handler. Throw an @@ -255,7 +255,7 @@ IHandler requestHandler = maker.lookup(function); if (requestHandler == null) throw new UnsupportedException("The UDDI request " + - "type specified is unknown: " +function); + "type specified is unknown or unsupported: " +function); // Grab the generic attribute value. If one isn't // specified or the value specified is not "2.0" then --------------------------------------------------------------------- To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: juddi-cvs-help@ws.apache.org