Well, I've created a webservice that i can find accessing locally at:
http://127.0.0.1:8080/myapp/WSPA?wsdl
Now i need to test my webservice by calling it from another java application to verify it its working fine. I've seen that its working using WebService Client from JBoss plugin on eclipse. But the problem is that i have a method wich recieves a list of SoapFile containing a String and array of bytes. And i need to verify if its working.
@XmlType public class SoapFile implements Serializable { private String fileName; private byte[] fileData; public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public byte[] getFileData() { return fileData; } public void setFileData(byte[] fileData) { this.fileData = fileData; } } I've not found how to create a simple webservice client that consumes that service to test. I would like some direction for this... Tutorial or some website that explains how to make it step by step. How can i create a java client for this webservice?
wsimport, making your task quite easy.