Search:

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

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    540

    got code from repo in error state. rechecked out...

    got code from repo in error state. rechecked out the next day and all good.
  2. Replies
    1
    Views
    540

    ROO 1.1.0.M2 create "addons" broken

    Hi

    I can create addon using

    project --template parameter in 1.1.0.M1

    But with M2 release, it seems the --template has been replaced by
    addon create
    command.
  3. Replies
    5
    Views
    3,569

    Entity(polymorphism = PolymorphismType.EXPLICIT)...

    Entity(polymorphism = PolymorphismType.EXPLICIT)
    should be applied to your subclass so when you select from A
    it will exlcude instances of B.
  4. Not really... specially with WS-Addressing, it...

    Not really... specially with WS-Addressing, it gives a whole new use case for application of WebService solution in an asynchronous way.
  5. Replies
    3
    Views
    968

    Since you are updating database, do so during the...

    Since you are updating database, do so during the handleRequest
    and update gain during handleResponse. To keep track of the right handleRequest, handleResponse pair, use ThreadLocal variable to keep...
  6. This applies to web services in general but...

    This applies to web services in general but Spring WS definitely supports all these out of the box.

    The transport medium can be

    - Email
    - JMS
    - Embedded Sun's Http Server (with JDK1.6)

    on...
  7. Yes it is possible. To find out how, read up...

    Yes it is possible. To find out how, read up Spring-WS documentation. Don't be lazy specially since you are doing your thesis.
  8. Since you are wanting to clean up the connections...

    Since you are wanting to clean up the connections yourselves I am guessing you are creating them yourselves too and not using connection pooling through application server.

    If that is the case,...
  9. Replies
    1
    Views
    771

    Spring WS supports contract first web services. I...

    Spring WS supports contract first web services. I would suggest you to read Spring WS documentation, Chapter 3, in particular.

    If you are still not convinced about it then you can go ahead and use...
  10. read this ...

    read this
    http://static.springsource.org/spring/docs/2.5.6/reference/jms.html

    Let spring do it for you.
  11. You have caseNum as xsd:nonnegativeInteger in...

    You have caseNum as xsd:nonnegativeInteger in your schema while you are passing it as string. Change that and try and validate again.
  12. Replies
    4
    Views
    1,625

    You can provide the endpoint adapters in the...

    You can provide the endpoint adapters in the order you want by defining the bean soapmessagedispatcher. By default it uses the adapters in the properties file located in the same directory as the...
  13. Replies
    6
    Views
    1,683

    Instead of can't, i meant it shouldn't. The whole...

    Instead of can't, i meant it shouldn't. The whole purpose of enclosing the bean def inside the property is so it doesn't get ref from outside. If needed to be ref from outside, it is better to have...
  14. Replies
    1
    Views
    2,063

    see this...

    see this
    http://hc.apache.org/httpclient-3.x/performance.html
  15. it is final. that's why. see the api or code. ...

    it is final. that's why. see the api or code.

    Don't see the need to extend PayloadLoggingInterceptor. It is a nice and simple interceptor to do logging, if you want more, implement...
  16. XwsSecurity Interception - the correct xws-security implementation for 1.5.7?

    I am using Xws Security where my client and service are both spring ws 1.5.7 based.

    The client and the server both reside in the same eclipse project. So whatever server has, the client has too.
    ...
  17. Replies
    6
    Views
    1,683

    good, any special reason in creating separate...

    good, any special reason in creating separate request and response logger without setting LoggerName property?

    Also,
    <list><bean

    can't have id, no?
  18. Replies
    15
    Views
    5,938

    Remember that you can't use...

    Remember that you can't use PayloadRootQNameEndpointMapping when encrypting the whole soap body. You would need to use SoapAction header or WS-Addressing when doing full body encryption.

    Use...
  19. Replies
    15
    Views
    5,938

    Spring-WS doesn't directly support WS-Policy. You...

    Spring-WS doesn't directly support WS-Policy. You can edit the Spring-WS generated WSDL file to add policies.
  20. Replies
    6
    Views
    1,683

    PayloadLoggingInterceptor is there for that...

    PayloadLoggingInterceptor is there for that reason. If needed, create a special logger to do just that.

    Otherwise write your own interceptor, it is in the spirit of Spring's design to use...
  21. Replies
    4
    Views
    2,151

    ERROR being the higher level, none of the...

    ERROR being the higher level, none of the previously seen Soap messages are visible.

    May be it is better to log soap messages into a rolling log instance and separate from the main log file.
    ...
  22. Replies
    4
    Views
    1,684

    can you try setting the schema property to the...

    can you try setting the schema property to the Jaxb2Marshaller.

    DescribeInstances is that your top element?

    Or you could always do something like this to see your Jaxb elements are all good
    ...
  23. You can have two services with same endpoint but...

    You can have two services with same endpoint but one operating through payload for soap1.1 and another through WS-Addressing for soap1.2
    The underlying bean would be same just two different mappings...
  24. The problem is quite clear and it is the hashCode...

    The problem is quite clear and it is the hashCode method having null ref.

    Firstly it is null at the moment (as the stack trace shows).

    Why use HashSet?

    because of this

    uniqueConstraints =...
  25. Replies
    1
    Views
    773

    look in spring samples folder that comes with the...

    look in spring samples folder that comes with the downloaded zip file.

    Petclinic project is a nice place to start with.
Results 1 to 25 of 30
Page 1 of 2 1 2