Search:

Type: Posts; User: jjrun1; Keyword(s):

Search: Search took 0.03 seconds.

  1. Replies
    7
    Views
    2,067

    Attempt #1

    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...
  2. Replies
    7
    Views
    2,067

    Extra information needed

    Hi, can you post the web.xml?
  3. Code Samples

    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/.
  4. Reference Article

    You might find this blog entry helpful:
    http://panbhatt.blogspot.com/2011/04/spring-web-service-part-iii-creating.html
  5. Solution

    Awesome got it to work...

    Needed to update the SoapVersion to SoapVersion.SOAP_12 on the message factory:

    <bean id="messageFactory"...
  6. Cannot create message: incorrect content-type for SOAP version

    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...
  7. Replies
    5
    Views
    1,350

    Well both Mockito and EasyMock add all mock...

    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...
  8. Replies
    5
    Views
    1,350

    This problem happens if I use either Mockito or...

    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...
  9. Replies
    5
    Views
    1,350

    Integration Testing with Spring and Mocks

    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...
  10. Thread: Run Once

    by jjrun1
    Replies
    1
    Views
    1,590

    Got it! The trick was to use...

    Got it!

    The trick was to use org.springframework.scheduling.timer.TimerFactoryBean instead of org.springframework.scheduling.quartz.SchedulerFactoryBean:


    <bean id="timerFactory"...
  11. Thread: Run Once

    by jjrun1
    Replies
    1
    Views
    1,590

    Run Once

    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).

    ...
  12. Replies
    4
    Views
    1,402

    Thanks Dave.

    Thanks Dave.
  13. Replies
    2
    Views
    826

    Thats not what I want to do, I want to...

    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...
  14. Replies
    4
    Views
    1,402

    Yeah but what I what to know how... do you have a...

    Yeah but what I what to know how... do you have a sample code or links?
  15. Replies
    4
    Views
    1,402

    BeanWrapperFieldExtractor Formatting Fields

    Hi,

    I have the following FlatFileItemWriter:



    <bean id="accountFlatFileItemWriter" class="org.springframework.batch.item.file.FlatFileItemWriter">
    <property name="resource"...
  16. Replies
    2
    Views
    826

    Environment Variables

    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"...
  17. Replies
    4
    Views
    957

    pom.xml

    <dependency>
    <groupId>org.springframework.batch</groupId>
    <artifactId>spring-batch-infrastructure</artifactId>
    <version>2.0.1.RELEASE</version>
    </dependency>
  18. Replies
    4
    Views
    957

    Found the anwser I was looking for:...

    Found the anwser I was looking for:
    http://static.springsource.org/spring-batch/downloads.html
  19. Replies
    4
    Views
    957

    I find it hard to believe that there isn't a...

    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...
  20. Replies
    4
    Views
    957

    FlatFileItemWriter

    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...
Results 1 to 20 of 20