[JBoss JIRA] Created: (JBWS-2648) WSDL is not refreshing after the web service implementation has been updated
by Gina Kim (JIRA)
WSDL is not refreshing after the web service implementation has been updated
----------------------------------------------------------------------------
Key: JBWS-2648
URL: https://jira.jboss.org/jira/browse/JBWS-2648
Project: JBoss Web Services
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: jbossws-native, tools-jaxws
Affects Versions: jbossws-native-3.1.0
Environment: JBoss AS 4.2.3 Eclipse 4.2.1
Reporter: Gina Kim
I've created a bottom up web service and it deployed successfully. I then made a small change in the java implementation of the web service and tried to redeploy the web service. Now I'm getting this error:
ERROR [MainDeployer] Could not start deployment:
...
org.jboss.ws.WSException: patientID is not a valid property on class AuditPhiExport
at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getElementPropertyAccessor(JAXBContextImpl.java:926)
at org.jboss.ws.metadata.accessor.JAXBAccessorFactory.create(JAXBAccessorFactory.java:49)
at org.jboss.ws.metadata.umdm.EndpointMetaData.createAccessor(EndpointMetaData.java:717)
at org.jboss.ws.metadata.umdm.EndpointMetaData.eagerInitializeAccessors(EndpointMetaData.java:673)
...
Previously the parameter was called patientId (lower case d), and I just changed it to uppder case D. I tried refreshing the projects and wsdls but this error won't go away.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 2 months
[JBoss JIRA] Created: (JBWS-2655) no soap 1.2 inline multireferences support
by Wojciech Oczkowski (JIRA)
no soap 1.2 inline multireferences support
------------------------------------------
Key: JBWS-2655
URL: https://jira.jboss.org/jira/browse/JBWS-2655
Project: JBoss Web Services
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: jbossws-native
Affects Versions: jbossws-native-3.0.2
Environment: debian, jboss-4.2, sun-java-6
Reporter: Wojciech Oczkowski
jbossws doesn't seem to support inline multireferences from soap 1.2 while consuming webservices from other enviroments (php for example)
result like:
<item>
<name>item1</name>
<product enc:id="ref1">
<name>product1</name>
</product>
</item>
<item>
<name>item2</name>
<product enc:ref="#ref1"/>
</item>
is unmarshaled with item2 object with product object filled with null's
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 2 months
[JBoss JIRA] Created: (JBWS-2587) Investigate why jaxws.samples.wssecurity.* tests are failing when running whole test suite
by Richard Opalka (JIRA)
Investigate why jaxws.samples.wssecurity.* tests are failing when running whole test suite
------------------------------------------------------------------------------------------
Key: JBWS-2587
URL: https://jira.jboss.org/jira/browse/JBWS-2587
Project: JBoss Web Services
Issue Type: Task
Security Level: Public (Everyone can see)
Components: jbossws-native
Affects Versions: jbossws-native-3.1.0
Reporter: Richard Opalka
Assignee: Alessio Soldano
Priority: Optional
Fix For: jbossws-native-3.1.1
Results :
Failed tests:
testUsernameTokenNegative(org.jboss.test.ws.jaxws.samples.wssecurity.SimpleUsernameTestCase)
testUsernameTokenNegative(org.jboss.test.ws.jaxws.samples.wssecurity.SimpleDispatchTestCase)
Tests run: 1438, Failures: 2, Errors: 0, Skipped: 0
I'd like to see that fixed. Feel free to reschedule to next release Alessio (since code freeze is away already)
but if you have some time could you have a look now? The strange thing for me is we can't reproduce it on hudson.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 3 months
[JBoss JIRA] Created: (JBWS-2662) WebServiceContext injection into WS Provider leads to memory leaks
by Sergey Graschenko (JIRA)
WebServiceContext injection into WS Provider leads to memory leaks
------------------------------------------------------------------
Key: JBWS-2662
URL: https://jira.jboss.org/jira/browse/JBWS-2662
Project: JBoss Web Services
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: jbossws-native
Affects Versions: jbossws-native-3.0.5
Environment: Debian Linux 2.6.18-4-686, Java HotSpot(TM) Server VM (build 14.0-b13, mixed mode), JBoss AS 5.0.1.GA
Reporter: Sergey Graschenko
JBoss AS going out of memory after a few hrs of mild load (~100 request/minute) having the following code
@WebServiceProvider(serviceName = "SampleService", portName = "SamplePort", wsdlLocation = "WEB-INF/wsdl/sample.wsdl")
@BindingType(value = HTTPBinding.HTTP_BINDING)
@ServiceMode(value = Service.Mode.PAYLOAD)
public class SampleProvider extends AbstractServiceProvider implements Provider<Source> {
@Resource(type = Object.class)
protected WebServiceContext wsContext;
public Source invoke(Source req) {
MessageContext mc = wsContext.getMessageContext();
String path = ((String) mc.get(MessageContext.PATH_INFO)).substring(1);
JAXBSource result;
//
// whatever
//
return result;
}
}
As I mentioned in referenced forum thread, if I set wsContext to null after use, memory leak goes away.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 3 months