Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 7318 invoked from network); 27 Mar 2007 06:24:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Mar 2007 06:24:26 -0000 Received: (qmail 75150 invoked by uid 500); 27 Mar 2007 06:24:32 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 74462 invoked by uid 500); 27 Mar 2007 06:24:30 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 74451 invoked by uid 99); 27 Mar 2007 06:24:30 -0000 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Mar 2007 23:24:30 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 80B43714064 for ; Mon, 26 Mar 2007 23:23:32 -0700 (PDT) Message-ID: <18062578.1174976612524.JavaMail.jira@brutus> Date: Mon, 26 Mar 2007 23:23:32 -0700 (PDT) From: "Charitha Kankanamge (JIRA)" To: axis-dev@ws.apache.org Subject: [jira] Updated: (AXIS2-2332) MTOM sample client fails in Axis2 nightly build In-Reply-To: <10222656.1174044309927.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/AXIS2-2332?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Charitha Kankanamge updated AXIS2-2332: --------------------------------------- Attachment: patch.patch Attached a patch > MTOM sample client fails in Axis2 nightly build > ----------------------------------------------- > > Key: AXIS2-2332 > URL: https://issues.apache.org/jira/browse/AXIS2-2332 > Project: Axis 2.0 (Axis2) > Issue Type: Bug > Components: samples > Affects Versions: nightly > Environment: winxp, jdk15, tomcat16 > Reporter: Charitha Kankanamge > Attachments: patch.patch > > > I got compile errors when running mtom sample client (ant run.client -Dfile "file to be send" -Ddest "destination file name" ) > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:33: > cannot find symbol > [javac] symbol : class MTOMSampleStub > [javac] location: package sample.mtom.service > [javac] import sample.mtom.service.MTOMSampleStub; > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:34: > package sample.mtom.service.MTOMSampleStub does not exist > [javac] import sample.mtom.service.MTOMSampleStub.AttachmentRequest; > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:35: > package sample.mtom.service.MTOMSampleStub does not exist > [javac] import sample.mtom.service.MTOMSampleStub.AttachmentResponse; > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:36: > package sample.mtom.service.MTOMSampleStub does not exist > [javac] import sample.mtom.service.MTOMSampleStub.AttachmentType; > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:37: > package sample.mtom.service.MTOMSampleStub does not exist > [javac] import sample.mtom.service.MTOMSampleStub.Base64Binary; > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:81: > cannot find symbol > [javac] symbol : class MTOMSampleStub > [javac] location: class sample.mtom.client.Client > [javac] MTOMSampleStub serviceStub = new MTOMSampleStub( > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:81: > cannot find symbol > [javac] symbol : class MTOMSampleStub > [javac] location: class sample.mtom.client.Client > [javac] MTOMSampleStub serviceStub = new MTOMSampleStub( > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:101 > : cannot find symbol > [javac] symbol : class AttachmentRequest > [javac] location: class sample.mtom.client.Client > [javac] AttachmentRequest attachmentRequest = new AttachmentRequest(); > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:101 > : cannot find symbol > [javac] symbol : class AttachmentRequest > [javac] location: class sample.mtom.client.Client > [javac] AttachmentRequest attachmentRequest = new AttachmentRequest(); > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:102 > : cannot find symbol > [javac] symbol : class AttachmentType > [javac] location: class sample.mtom.client.Client > [javac] AttachmentType attachmentType = new AttachmentType(); > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:102 > : cannot find symbol > [javac] symbol : class AttachmentType > [javac] location: class sample.mtom.client.Client > [javac] AttachmentType attachmentType = new AttachmentType(); > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:103 > : cannot find symbol > [javac] symbol : class Base64Binary > [javac] location: class sample.mtom.client.Client > [javac] Base64Binary base64Binary = new Base64Binary(); > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:103 > : cannot find symbol > [javac] symbol : class Base64Binary > [javac] location: class sample.mtom.client.Client > [javac] Base64Binary base64Binary = new Base64Binary(); > [javac] ^ > [javac] C:\Axis2\axis2-SNAPSHOT\samples\mtom\build\client\src\sample\mtom\client\Client.java:117 > : cannot find symbol > [javac] symbol : class AttachmentResponse > [javac] location: class sample.mtom.client.Client > [javac] AttachmentResponse response = serviceStub.attachment(attachmentRequest); > [javac] ^ > [javac] Note: Some input files use unchecked or unsafe operations. > [javac] Note: Recompile with -Xlint:unchecked for details. > [javac] 14 errors > BUILD FAILED -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org For additional commands, e-mail: axis-dev-help@ws.apache.org