hi, i am running a webservice on apache axis and trying to give a String and an attachment (jpeg image) as response.
for example a really simple webservice:
package testService;
public class Service {
public String test() {
return "ok";
}
}
how can i add an attachment when the test function is called? i found example code for soap clients adding attachments. but how does it work on the server side?