English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

4 answers

What have you got so far????

2007-11-30 03:47:17 · answer #1 · answered by ? 6 · 1 0

public class WelcomeMessage
{
public static void main(String[]args)
{
System.out.println("Welcome to Java Programming");
}
}

2007-12-03 13:42:11 · answer #2 · answered by Anonymous · 0 0

OK, here is a version that will work if you want to write an annotated Web Service method that returns that statement. (Works fine for me in BEA WebLogic) If you want a simple version for your homework, try writing it yourself.

package com.mybiz.ws;

import javax.jws.WebMethod;
import javax.jws.WebService;

@WebService
public class WelcomeWS {

@WebMethod
public String welcome() {
return "Welcome to Java Programming";
}

}

2007-11-30 04:14:53 · answer #3 · answered by Jim Maryland 7 · 0 0

Thanks! informative and gives me better knowledge on the subject

2016-08-26 08:56:33 · answer #4 · answered by lissa 4 · 0 0

fedest.com, questions and answers