Firstly you dont have to do this:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-ws-servlet.xml</param-value>
</context-param>
As you have...
Type: Posts; User: jjrun1; Keyword(s):
Firstly you dont have to do this:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring-ws-servlet.xml</param-value>
</context-param>
As you have...
Hi, can you post the web.xml?
For those of you who are interested in code samples, please feel free to check out my google code project:
http://code.google.com/p/spring-samples/source/browse/.
You might find this blog entry helpful:
http://panbhatt.blogspot.com/2011/04/spring-web-service-part-iii-creating.html
Awesome got it to work...
Needed to update the SoapVersion to SoapVersion.SOAP_12 on the message factory:
<bean id="messageFactory"...
Hi there,
A question relating to soap1.2 bindings, I have created a web service that dynamically creates the wsdl for me.
I am using soapui to to test the web service, when I test test the...
Well both Mockito and EasyMock add all mock objects to a collection, specially an ArrayList. When the mocks are added the "equals" method is invoked. Now as you can see from my original post, I...
This problem happens if I use either Mockito or EasyMock extension.
All I ways saying here, is that if I just use EasyMock then I have to use Interfacess.
The problem im facing is that...
I know this post doesnt have much to do with the Spring framework but wanted to get some feedback from fellow developers as this must be a common problem.
Furthermore I using Spring for...
Got it!
The trick was to use org.springframework.scheduling.timer.TimerFactoryBean instead of org.springframework.scheduling.quartz.SchedulerFactoryBean:
<bean id="timerFactory"...
Hi there,
Kinda new to quartz framework and playing around with the quartz scheduler and wanted to know how I can create a job that would run once (i.e.: simulating running once on start-up).
...
Thanks Dave.
Thats not what I want to do, I want to specifically use the temporary path, of which I know I can get from the environment variables. What you have suggested is to use a property valule of which is a...
Yeah but what I what to know how... do you have a sample code or links?
Hi,
I have the following FlatFileItemWriter:
<bean id="accountFlatFileItemWriter" class="org.springframework.batch.item.file.FlatFileItemWriter">
<property name="resource"...
Hi,
Just wanted to use an evironment variable in my applicationContext.xml:
<bean id="csvWriter" class="org.springframework.batch.item.file.FlatFileItemWriter">
<property name="resource"...
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-infrastructure</artifactId>
<version>2.0.1.RELEASE</version>
</dependency>
Found the anwser I was looking for:
http://static.springsource.org/spring-batch/downloads.html
I find it hard to believe that there isn't a Maven repository entry and I think your statement "Thats the best way to start a Spring based project" is a bit subjective.
How is that the sample app...
Hi,
I am a newbie to Spring Batch project and wanted to include the jar into my Maven pom.xml file as I want to use the org.springframework.batch.item.file.FlatFileItemWriter class.
Any...