How can webservice be called through postman after it is released?

the service has been generated

clipboard.png

@ WebService
public class HelloWorld {

 @WebMethod
    public String sayHello(String str){
         System.out.println("get Message...");
         String result = "Hello World, "+str;
         return result;
    }
    public static void main(String[] args) {
        System.out.println("server is running");
        String address="http://localhost:8888/HelloWorld";
        Object implementor =new HelloWorld();
         Endpoint.publish(address, implementor);

    }

}

how can I call my sayHello method in postman

May.19,2022

you have to encapsulate the request information into the xml format specified by the soap protocol before you can call through postman . Instead of doing this, you might as well directly use the soap test tool.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b30eb1-2bd47.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b30eb1-2bd47.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?