From: <jbo...@li...> - 2006-06-29 09:17:04
|
Author: tho...@jb... Date: 2006-06-29 05:16:57 -0400 (Thu, 29 Jun 2006) New Revision: 513 Modified: trunk/src/test/java/org/jboss/test/ws/wsse/WebClientTestCase.java Log: Add fixme Modified: trunk/src/test/java/org/jboss/test/ws/wsse/WebClientTestCase.java =================================================================== --- trunk/src/test/java/org/jboss/test/ws/wsse/WebClientTestCase.java 2006-06-29 08:36:26 UTC (rev 512) +++ trunk/src/test/java/org/jboss/test/ws/wsse/WebClientTestCase.java 2006-06-29 09:16:57 UTC (rev 513) @@ -1,33 +1,30 @@ /* - * JBoss, Home of Professional Open Source - * Copyright 2005, JBoss Inc., and individual contributors as indicated - * by the @authors tag. See the copyright.txt in the distribution for a - * full listing of individual contributors. - * - * This is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation; either version 2.1 of - * the License, or (at your option) any later version. - * - * This software is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this software; if not, write to the Free - * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA - * 02110-1301 USA, or see the FSF site: http://www.fsf.org. - */ + * JBoss, Home of Professional Open Source + * Copyright 2005, JBoss Inc., and individual contributors as indicated + * by the @authors tag. See the copyright.txt in the distribution for a + * full listing of individual contributors. + * + * This is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this software; if not, write to the Free + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA, or see the FSF site: http://www.fsf.org. + */ package org.jboss.test.ws.wsse; import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; -import javax.naming.InitialContext; -import javax.xml.rpc.Service; - import junit.framework.Test; import org.jboss.test.ws.JBossWSTest; @@ -55,6 +52,8 @@ */ public void testWebClient() throws Exception { + System.out.println("FIXME: JBAS-3350"); + URL url = new URL("http://" + getServerHost() + ":8080/jbossws-wsse-rpc/RpcTestClientServlet?input=Hello"); BufferedReader br = new BufferedReader(new InputStreamReader(url.openStream())); String res = br.readLine(); |