Hi there,
we have some consultants at the company who have mentioned that @Cacheable could be the cause of memory leaks that we are currently facing.
I saw on a thread that this was...
Type: Posts; User: ravkrr; Keyword(s):
Hi there,
we have some consultants at the company who have mentioned that @Cacheable could be the cause of memory leaks that we are currently facing.
I saw on a thread that this was...
Hi guys,
a colleague of mine wanted to create a simple Client from a WSDL. Having worked on the server side and SOAP UI as client, it was relatively simple.
But I could not find the...
Hi,
checkout this post
http://forum.springsource.org/showthread.php?131107-WSDLException-On-Websphere-6-1
The xml-api jar should be removed, and the right classloader policy...
Hi guys,
I wanted to break down my XSDs and to have one common XSD which would be included in child XSDs.
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema...
I thought I would just document the solution for myself
<sws:dynamic-wsdl id="customerSearchServiceInterface"
portTypeName="CustomerSearchServicePort" ...
Hi Pradeep,
it seems to me your query is about SOAP UI.
Please check SOAP UI's web site, the documentation is very extensive and should help you get started.
All you need is the...
Hi dougman82,
it seems to me that will need to be configured on your servers. Your application is responding to the requests correctly and to me this is where Spring's work gets completed.
...
Hi audiegene,
provide some more information and you will find help quicker
1.) your servlet.xml
2.) your endpoint mapping
If you are able to at least setup the project...
Hi gthomaier,
I have not faced this error before, but if you provide some more information people would be in a better position to help.
So, please let us know the following
...
Having found the solution, I thought I would add the code and it could probably be useful to somebody in the future
@Test
public void testParseMessage() throws Exception {
...
Thanks Maarten,
it makes more sense now
# Default implementation classes for MessageDispatcherServlet's strategy interfaces.
# Used as fallback when no matching beans are found in...
Alright guys I made some progress, but I still need to understand how to get the parser to interact with the message context.
The test now looks like
SaajSoapMessageFactory messageFactory...
Hi guys,
as part of another thread I raised, and because I have difficulty to create the message factory. I wanted to check how Spring is injecting the messageFactory.
So my endpoint is as...
Hi guys,
I wanted to move my Xpath/JDOM codes out of my endpoint and to unit test them.
private XPathExpression<Element> cusIdExpression;
I have finally decided to get it to work with @PayloadRoot and by using specific names for the requests for each method
<xs:element name="method1Request">
<xs:complexType>
...
Hi Maarten,
I have decided to give the SoapAction a try.
I have added the annotations on my methods
@SoapAction(value="method2")
@ResponsePayload...
Hi Maarten,
you are totally right, this is not a remote call. But I want to expose the various methods as operations and which are only going to have the method name as a difference....
Hi Maarten,
thanks for always taking the time to reply.
If I wanted to identify them through the method name, which would always be different (otherwise it won't even compile), how...
Hi guys,
I have several interfaces and each of them have a number of methods. I have recently exposed one of them as a Web Service and tested it with SOAP UI, to demonstrate that it would...
Ok,
to get it to work on WebSphere, the following classloader order had to be used
5257
also, the following jar had to be excluded from the build
Hi guys,
I have created a small Web Service which runs fine on Tomcat, but fails on WebSphere.
I initially got a parser exception
DocumentBuilderFactoryImpl incompatible with...
Hi guys,
I have spent quite some time investigating an issue which was actually highlighted in this Jira ticket.
The error which was being shown in the SOAP response was
and was...
Hi Maarten,
I was thinking there would be another process where I would get the WSDL generated from the Java codes (as would be the case with AXIS2).
But would you suggest, that I follow...
Hi guys,
The Spring Reference preaches to use contract first and would be ideal for new projects.
How about projects which are already coded and which now need to be deployed as web...
Hi guys,
I have exposed my wsdl and I am able to access it on a browser with the URL below
http://localhost:8080/custid-service/CustSearchService.wsdl
However, when I...