[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Entity bean java.util.Map

2007-08-27 Thread mr_d
Hello, I don't know if I'm in the wrong forum, if it is the case, sorry for the inconvenience. I have a little problem with a property of an entity bean. I'm using EJB3, Jboss 4.2.0 GA. and Java 1.5 I need to have on an entity bean a MapString, String. When I deploy, I have the following

[jboss-user] [JBossWS] - Re: MTOM + WS Security = problem

2007-06-27 Thread mr_d
Hello! Thanks for your answers, richard_opalka wrote : MTOM attachments do not need to be inlined. I agree, but if mtom is used and it is inlined, I don't see the point of using mtom: we can have the binary parameter inlined like the others. I thought that one of the advantages of mtom was

[jboss-user] [JBossWS] - Re: MTOM + WS Security = problem

2007-06-27 Thread mr_d
richard_opalka wrote : | * if attachment size is lesser than some preconfigured size then MTOM attachment is inlined | * if attachment size is greater than some preconfigured size then MTOM attachment is sent as MIME part. | Thank you for this explanation, Yes, Im working with

[jboss-user] [JBossWS] - Re: MTOM + WS Security = problem

2007-06-25 Thread mr_d
Hello, Thanks for your answers, @richard_opalka: I agree, they are compatible, so to use attachments with WS Security, MTOM is the only and right way. @davideling: I have the same config. As I said on my first post, mtom only works, and ws security only also works. Are you sure that your

[jboss-user] [JBossWS] - MTOM + WS Security = problem

2007-06-22 Thread mr_d
Hello, Has anyone tried to have a web service with mtom *and* ws security activated? I did some tests with a web service as an ejb3 stateless bean and a Java standalone client (using the client parts of JbossWS): mtom only works, ws-security only works. But when I enable both, I get an

[jboss-user] [JBossWS] - Re: MTOM + WS Security = problem

2007-06-22 Thread mr_d
Hello davideling, Thanks for your reply, My annotations on my service implementation are: | @BindingType(javax.xml.ws.soap.SOAPBinding.SOAP11HTTP_MTOM_BINDING) | @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, parameterStyle = SOAPBinding.ParameterStyle.BARE) |