SOAP의 Attachment를 이용한 파일전송
SOAP이용한 파일전송 소스로 정말 간단하게 전송할수있다.. 이걸로 삽질하시는분들께 큰 도움이 되길...~^^; server-config.wsdd 설정 서버 FileDownloader.java public DataHandler getFiles() throws RemoteException,MetadataVerifyException, TransferException, JDOMException, IOException{ DataHandler dh = null; File file = new File("c:/test.txt"); //첨부할 파일 DataSource fSource = new FileDataSource(file); dh = new DataHandler(fSource); return dh; } 클라이언트..