[JBoss Tools] - Matrix of supported platforms, runtimes and technologies in JBossTools/JBDS
by Max Rydahl Andersen
Max Rydahl Andersen [http://community.jboss.org/people/maxandersen] modified the document:
"Matrix of supported platforms, runtimes and technologies in JBossTools/JBDS"
To view the document, visit: http://community.jboss.org/docs/DOC-14297
--------------------------------------------------------------
h2. *This matrix is currently out of date, do not rely on it!*
The following matrix explains what versions of platforms, runtimes and technologies are supported by what versions of JBoss Tools/JBDS.
|| Eclipse || JBoss Tools || JBDS || EAP || AS || Seam || JSF || RichFaces (the latest supported version) ||
| 3.7/Indigo | 3.3.0 | 5.0 | 4.3,5.0,6.0 | 7.0,6.0,5.1, 5.0, 4.2, 4.0, 3.2 |
|
|
|
| 3.6/Helios | 3.2.0 | 4.0.0/4.1.0 | 4.3,5.0 | 6.0,5.1, 5.0, 4.2, 4.0, 3.2 |
|
|
|
| 3.5/Galileo | 3.1.0 | 3.0.0 | 4.3, 5.0 | 5.1, 5.0, 4.2, 4.0, 3.2 | 2.2, 2.1, 2.0, 1.2 | 2.0 (in VPE), 1.2, 1.1 | 3.3.x |
| 3.4.2/Ganymede | 3.0.x | 2.1.0 | 4.3, 5.0 | 5.0, 4.2, 4.0, 3.2 | 2.2, 2.1, 2.0, 1.2 | 1.2, 1.1 | 3.3.1 |
| 3.3.2/Europa | 2.1.2 | 1.1.0 | 4.3 | 5.0, 4.2, 4.0, 3.2 | 2.0, 1.2 | 1.2, 1.1 | 3.3.0 |
| 3.3.1.1/Europa | 2.0.1 | 1.0.0 | 4.2 | 4.2, 4.0, 3.2 | 2.0, 1.2 | 1.2, 1.1 | 3.1.0 |
--------------------------------------------------------------
Comment by going to Community
[http://community.jboss.org/docs/DOC-14297]
Create a new document in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=102&co...]
14 years, 4 months
[JBoss Web Services] - WebService deployment failed
by 忠雨 胡
忠雨 胡 [http://community.jboss.org/people/he_man888] created the document:
"WebService deployment failed"
To view the document, visit: http://community.jboss.org/docs/DOC-17396
--------------------------------------------------------------
Hi everyone:
I try to deploy a simple webservice on JBoss AS 7.0.2.Final "Arc", but always failed.
The console show nothing about webservice's detect and deployment,however, the serivice indeed is a webservice implementation.
This has puzzled me for a few days.
Any suggestion will be appreciated.
below are the source codes:
=============================================================
package com.wasu.as.sp.service.core;
import javax.ejb.Stateless;
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
@Stateless
@WebService(name="TestService",
targetNamespace = " http://core.service.sp.as.wasu.com/ http://core.service.sp.as.wasu.com",
serviceName = "TestService")
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public class TestService implements ITestServiceLocal, ITestServiceRemote {
@Override
@WebMethod
public int add(int i, int j) {
return i+j;
}
@Override
@WebMethod
public int dec(int i, int j) {
return i - j;
}
}
===================================================================
for detail, pls refer to the TestService.zip and the logs.
Many thanks.
--------------------------------------------------------------
Comment by going to Community
[http://community.jboss.org/docs/DOC-17396]
Create a new document in JBoss Web Services at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=102&co...]
14 years, 4 months
[JBoss Web Services] - WebService deployment failed.
by 忠雨 胡
忠雨 胡 [http://community.jboss.org/people/he_man888] created the discussion
"WebService deployment failed."
To view the discussion, visit: http://community.jboss.org/message/639776#639776
--------------------------------------------------------------
Hi everyone:
I try to deploy a simple webservice on JBoss AS 7.0.2.Final "Arc", but always failed.
The console show nothing about webservice's detect and deployment,however, the serivice indeed is a webservice implementation.
This has puzzled me for a few days.
Any suggestion will be appreciated.
below are the source codes:
=============================================================
package com.wasu.as.sp.service.core;
import javax.ejb.Stateless;
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
@Stateless
@WebService(name="TestService",
targetNamespace = " http://core.service.sp.as.wasu.com http://core.service.sp.as.wasu.com",
serviceName = "TestService")
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public class TestService implements ITestServiceLocal, ITestServiceRemote {
@Override
@WebMethod
public int add(int i, int j) {
return i+j;
}
@Override
@WebMethod
public int dec(int i, int j) {
return i - j;
}
}
===================================================================
for detail, pls refer to the TestService.zip and the logs.
Many thanks.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/639776#639776]
Start a new discussion in JBoss Web Services at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
14 years, 4 months