English 中文(简体)
利用JDK1.5创建网络服务用户
原标题:create Web Service client using JDK1.5

我需要利用JDK1.5创建网络服务客户...... 是否可能?

在JDK1.6中,我知道有一份<代码>wsimport的效用,为这一服务生成了工艺品,并且预示了早先版本使用的<代码>wsdl2java,但我无法在JDK安装中找到。

java -version
java version "1.5.0_05"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_05-b05)
Java HotSpot(TM) Client VM (build 1.5.0_05-b05, mixed mode)
最佳回答

我使用了日本宇宙航空研究开发机构。

See: http://codeproject.com/KB/java/edujini_webservice_java.aspx

问题回答

暂无回答




相关问题
I am confused with Enumerations

If enums are used from jdk1.5 onwards , what was the use of java.util.Enumeration interface before jdk1.5 ? Can anybody help me explore this with an example please ?

XML to Java Object only using Java5 (no external libs)

normally I would use JaxB, XMLBeans or Simple to convert a XML file to a Java Object. In this case I can however only use Java5 and no external libraries (for several reasons). What is the best way ...

TimeZone.setDefault changes in JDK6

I just noticed that JDK 6 has a different approach to setting a default TimeZone than JDK5. Previously the new default would be stored in a thread-local variable. With JDK6 (I just reviewed 1.6.0.18)...

How to Debug while Porting from Java 1.5 to 1.6?

I have a distributed JBoss-based application that shows a buggy behavior when compiled and run with Java 1.6. It shows an another bug when compiled with Java 1.5 and run with Java 1.6. But it works ...

Java generics and "..."

What do T and S mean? public void main(String... abc) ; what does ... mean? Is ... called generic as well?

热门标签