Search:

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

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    4
    Views
    5,691

    You are right, it's more than unit testing. I had...

    You are right, it's more than unit testing. I had the problem to enshure that some pre defined SOAP requests could be processed.


    Feel free to use it.

    MfG Mirko
  2. Replies
    4
    Views
    5,691

    I had the same problem. Here is my solution....

    I had the same problem. Here is my solution.
    Subclass AbstractMessageContext:


    package xy;

    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
  3. If you have control over the WebSphere...

    If you have control over the WebSphere installation, you can also try this:


    locate the jre lib directory of your application server (/IBM/WebSphere/AppServer/java/jre/lib)
    create a directory...
  4. Replies
    3
    Views
    1,339

    Try to define your alias on your...

    Try to define your alias on your 'signatureKeyStoreHandler':


    <bean id="signatureKeyStoreHandler" class="org.springframework.ws.soap.security.xwss.callback.KeyStoreCallbackHandler">
    <property...
  5. Replies
    14
    Views
    1,946

    Did you add jars into the classpath of your...

    Did you add jars into the classpath of your tomcat?
    Don't do it.
    All additional jars have to bin inside of your app (war file), in the 'WEB-INF/lib' directory. Otherwise you will get strange...
  6. Replies
    14
    Views
    1,946

    Download...

    Download spring-framework-x.x.x-with-dependencies.zip and add the asm-*.jar files from the lib/asm dir to your app.
    You need asm for cglib.
  7. Replies
    14
    Views
    1,946

    Did you include the asm-*.jar in your application?

    Did you include the asm-*.jar in your application?
  8. Replies
    14
    Views
    1,946

    Which versions of Spring and Tomcat are you using?

    Which versions of Spring and Tomcat are you using?
  9. Replies
    5
    Views
    1,720

    ... or have a look at this ...

    ... or have a look at this

    http://support.bea.com/application_content/product_portlets/support_patterns/wls/InvestigatingTransactionProblemsPattern.html
  10. Replies
    5
    Views
    1,720

    Logging in WLS

    You can also switch on some tx-logging in wls with:

    -Dweblogic.Debug=weblogic.JTAXA,weblogic.JTA2PC,weblogic.JTAJDBC
  11. Replies
    2
    Views
    1,061

    You can control this behavior with the property...

    You can control this behavior with the property 'globalRollbackOnParticipationFailure' of 'AbstractPlatformTransactionManager'.

    MfG Mirko
  12. Problem with Hibernate and JtaTransactionManager

    We have an application which creates some data in the database using
    HibernateTemplate.persist(..) and looks up for this data with
    HibernateTemplate.find(..) later within the same transaction.
    ...
  13. Instead of calling EJBs remotely you can use...

    Instead of calling EJBs remotely you can use Spring Remoting (with Spring HTTP Invoker). You will need a combination of HttpInvokerServiceExporter and HttpInvokerProxyFactoryBean.

    MfG Mirko
  14. It depends on the features you are using. HSQLDB...

    It depends on the features you are using. HSQLDB does not support all the datatypes of oracle. You will also have some problems with Oracle specific selects (rowid, functions, ...).
    So I ended up...
  15. Replies
    6
    Views
    1,313

    Try to start your server with: -Dlog4j.debug ...

    Try to start your server with:

    -Dlog4j.debug

    MfG Mirko
  16. Have a look at this:...

    Have a look at this:
    http://forum.hibernate.org/viewtopic.php?t=934050

    You will need a newer JDBC-Driver.

    MfG Mirko
  17. Replies
    2
    Views
    817

    Check the name of the datasource property in...

    Check the name of the datasource property in ProductJDBCDAO.
    The one You use is 'ds'. Are You sure it is not called 'dataSource'?


    <bean id="productJDBCDAO"...
  18. Replies
    1
    Views
    940

    Have a look at @SuppressWarnings("unchecked")....

    Have a look at @SuppressWarnings("unchecked"). This will do what its name says.
    In the compiler settings section of Your project properties You can also fine tune, what will be reported as error or...
  19. Replies
    5
    Views
    1,210

    I had to use the model of another system without...

    I had to use the model of another system without the option to extend it. To make it persistent I needed a primary key which is not exposed outside my code (real problem but only an example of what...
  20. Replies
    5
    Views
    1,210

    I can tell You about a real problem I had: ...

    I can tell You about a real problem I had:

    Let's declare a class A:


    public class A &#123;
    private String a;
    private String b;

    public void setA&#40;final String a&#41; &#123;
  21. Replies
    5
    Views
    1,210

    I would prefer the first code. The second can...

    I would prefer the first code. The second can result in some trouble (in my experience).

    MfG Mirko
  22. Replies
    2
    Views
    1,855

    ... or Your hava a classloading problem. MfG...

    ... or Your hava a classloading problem.

    MfG Mirko
  23. Thread: Drools support

    by mzeibig
    Replies
    5
    Views
    2,333

    It is included in Spring Modules...

    It is included in Spring Modules
    https://springmodules.dev.java.net/

    MfG Mirko
  24. Thread: List

    by mzeibig
    Replies
    1
    Views
    2,854

    Depends on Your compiler. You can suppress...

    Depends on Your compiler.
    You can suppress warnings with something like:


    @SuppressWarnings&#40;"unchecked"&#41;


    MfG Mirko
  25. You can switch on some debugging output: ...

    You can switch on some debugging output:


    -Dweblogic.Debug=weblogic.JTAXA,weblogic.JTA2PC,weblogic.JTAJDBC


    Or have a look at this document:...
Results 1 to 25 of 31
Page 1 of 2 1 2