Search:

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

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. I think you need the client interceptor ...

    I think you need the client interceptor

    http://static.springsource.org/spring-ws/sites/1.5/apidocs/org/springframework/ws/client/support/interceptor/ClientInterceptor.html
  2. I am not sure why the example was not working but...

    I am not sure why the example was not working but I ended up creating a maven build file to generate java objects from wsdl

    I could not download the plugin, It turns out it is not available on...
  3. Replies
    2
    Views
    520

    I think Rinzo does a decent job of converting ...

    I think Rinzo does a decent job of converting xml to xsd.

    http://editorxml.sourceforge.net/
  4. look here...

    look here http://blog.dawouds.com/2008/09/maven-2-wsdl-to-java-using-jaxb.html
  5. After looking at maven stack trace, It looks like...

    After looking at maven stack trace, It looks like the plugin is not found at the (http://repository) location hence the build is failing. I am not sure why it is but to resolve your problem do this
    ...
  6. The url to access a spring web service that is...

    The url to access a spring web service that is deployed on tomcat server would be some things like this


    server_url/web_app_context/servlet_mapping_for_msg_dispatch_servlet

    Now getting back...
  7. I am not sure why you need to create db for every...

    I am not sure why you need to create db for every test run, I personally use hsql in memory db and create it once using spring jdbc initialization


    <jdbc:initialize-database...
  8. I had lot of deployment issues with spring web...

    I had lot of deployment issues with spring web service on websphere 6.1 (websphere sucks by the way), We did upgrade to 7.x recently and every thing seem to be working.

    I would suggest you to go...
  9. I am not sure if it is possible to do a JNDI look...

    I am not sure if it is possible to do a JNDI look up for your session bean as spring container boots up, If it does you can implement spring framework InitializingBean interface and inject ejb like...
  10. Replies
    3
    Views
    473

    A singleton means there is only one instance of...

    A singleton means there is only one instance of the object or bean per jvm. To answer your question the same bean/object is shared by all the user sessions.

    Just to elaborate on that, If you...
  11. I think you have of spring jars (versions that...

    I think you have of spring jars (versions that are before 3.x) in your application class path.

    I say this because, You don't really need internet connection to read the schema, If you open the...
  12. I think you can either use p6spy or infrared. I...

    I think you can either use p6spy or infrared. I have been using p6spy for last few years only in dev environment

    http://sourceforge.net/projects/p6spy/
    ...
  13. If my understanding of your use-case is correct ...

    If my understanding of your use-case is correct

    I think you can do the same by using the (Cache Store and Cache Retrival mode properties on EntityManager). If I remeber them correctly you can set...
  14. Replies
    1
    Views
    594

    from Spring class documentaion: ...

    from Spring class documentaion:

    InitializeDatabaseBeanDefinitionParser: Picks up nested {@code script} elements and configures a {@link ResourceDatabasePopulator} for them.
    ...
  15. Replies
    2
    Views
    3,633

    You can use what ever the extension that is...

    You can use what ever the extension that is appropriate for your application

    Servlet Container inteprets the following line as : All the requests with this extension will be handled by servlet...
  16. If I am reading your code correctly (I only...

    If I am reading your code correctly (I only understand parts of it), The only exceptions I see that could be generated are the data base related exceptions

    if they are data base related exceptions...
  17. If you are trying to test the transactional part...

    If you are trying to test the transactional part (integartion testing)

    I would recommend you to go thru this spring documentaion...
  18. Replies
    11
    Views
    3,725

    Sorry I missed the part about not being able to...

    Sorry I missed the part about not being able to change POC class, If I understand you'r requirements, You are trying to extend POC class that is belongs to a third party

    You can do some thing like...
  19. Replies
    11
    Views
    3,725

    You defined bean meta data in the context.xml as...

    You defined bean meta data in the context.xml as create a bean POC and inject a property named (behavior) with a setter injection, Hence you need to define a setter method in your POC class , To...
  20. In your application the beans defined in...

    In your application the beans defined in (applicationctx.xml) are part of parent context and the beans defined (spring-servlet.xml) are part of child context. You enabled <global-method-security> in...
  21. I am not sure why you are getting that exception...

    I am not sure why you are getting that exception but, I did notice that in your config for transaction, You don't have a TransactionManager defined


    <tx:annotation-driven/>


    <bean...
  22. This should get you what you need. public...

    This should get you what you need.


    public class BeanFactoryPostProcessorImpl implements BeanFactoryPostProcessor
    {

    @Override
    public void postProcessBeanFactory(...
  23. here is the faq (3.2 answers your question) ...

    here is the faq (3.2 answers your question)

    http://static.springsource.org/spring-security/site/faq.html
  24. I use jdbc initialize-database in my testing ...

    I use jdbc initialize-database in my testing


    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"...
  25. I had the same problem the domain objects are...

    I had the same problem the domain objects are scattered into multiple java projects, These projects intrun are part of an ear file. Since all the domain objects and mappings are in individual jar...
Results 1 to 25 of 33
Page 1 of 2 1 2