[jboss-user] [JBoss Portal] - Re: Universal per portlet instance configuration for all use

2008-12-19 Thread mrostan
Hi, we have implemented a new CustomizationManager (by extending the default CustomizationManagerService), we have defined "scopes" associated to the instances, if the scope is 'window' the customization is associated to the window (and not the user), so you can edit the preferences (with the cu

[jboss-user] [JBoss Portal] - Re: Universal per portlet instance configuration for all use

2008-12-16 Thread mrostan
Hi, somebody knows a way to solve this ? I mean, how can I customize the editor to set the preferences for all the users? Thanks in advance Martin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4196967#4196967 Reply to the post : http://www.jboss.com/index.ht

[jboss-user] [JBossWS] - Re: Signature is invalid error when the message contains \r

2008-02-28 Thread mrostan
Thank you Richard, good news ! Martin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4132975#4132975 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4132975 ___ jboss-user maili

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

2008-02-26 Thread mrostan
Associated JIRA issue: http://jira.jboss.org/jira/browse/JBWS-2014 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4132268#4132268 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4132268

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

2008-02-26 Thread mrostan
Hi all. We've continued testing MTOM+WS-Security Signature, we need interoperation with Microsoft clients, so swaRef is not an option and we need MTOM and signatures working well. We have found the following problems: 1) On the server side: 1.a) The WS-Security handlers are not invoked, to solv

[jboss-user] [JBossWS] - Re: My WS doesn't send any attachment... why?

2008-02-25 Thread mrostan
Hi Claudio. I'm very glad to hear good news. Just remember this is a workaround, and with version 2.0.4 your original web service (return List) should work. Regards, Martin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4132015#4132015 Reply to the post :

[jboss-user] [JBossWS] - Re: Retrieving alias for WS Secure client

2008-02-25 Thread mrostan
Hi all We have modified JBossWS 2.0.1 to leave an array of the certificates used in the signature/encryption process available in the message context: | Certificate[] certificates = msgContext.get("MESSAGE_CERTIFICATES"); | There's not an automatic validation against JAAS implemented (as de

[jboss-user] [JBossWS] - Re: My WS doesn't send any attachment... why?

2008-02-25 Thread mrostan
Hi Claudio. Well, I've tested a case very similar to yours, in the same versions (JBoss 4.2.2 with the default JBossWS: 2.0.1 SP2) I've changed one thing from my previous suggestion, annotate the dummy field with @XmlAttachmentRef: | public class DocumentsSet { | @XmlAttachmentRef |

[jboss-user] [JBossWS] - Re: My WS doesn't send any attachment... why?

2008-02-24 Thread mrostan
Hi Claudio. Maybe I was not clear enough, I'm not sure you have tried my solution, so here is an example: Create a wrapper class, let's say Documentos: | public class Documentos { | @XmlMimeType("application/octet-stream") | private String dummy; | | private List documentos; |

[jboss-user] [JBossWS] - Re: Using the jboss-ws-security with signature breaks when t

2008-02-22 Thread mrostan
Look at this topic, it seems to be similar, but not related to the log level: http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4131555 Martin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4131557#4131557 Reply to the post : http://www.jboss.com/index

[jboss-user] [JBossWS] - Signature is invalid error when the message contains \r

2008-02-22 Thread mrostan
Hi. Well, I know it seems hard to believe. The signature verification fails if a string argument contains a \r character. To verify it simply modify the JAX-WS SimpleSignTestCase and change Kermit to Ke\r\nmit (I have tested it with \r\n, but if you remove \r it works) | in0.setMsg("Ke\r\nmit"

[jboss-user] [JBossWS] - Re: My WS doesn't send any attachment... why?

2008-02-22 Thread mrostan
I believe it's a problem in ReflectiveAttachmentRefScanner, the recursion for collections (arrays or lists) is not working, the annotations are searched in the array or list type and not in the contained type. The workaround we have found is to add a wrapper object with a string and the collect

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

2008-02-22 Thread mrostan
Hi, we are also trying to use WS-Security + MTOM in JBossWS 2.0.1 and 2.0.3, we are sending big files so we need binary attachments instead of inline encoded data. Here is the result of our tests: - In JBossWS 2.0.1 you must change the configuration of the endpoint by adding ##SOAP11_HTTP_MTOM

[jboss-user] [JBossWS] - Re: Change the endpoint address in runtime using Dispatch

2008-02-19 Thread mrostan
Hi cavani, I think it's a bug. The JAX-WS 2.0 specification states (in sections 4.3.1 and 4.2.1.1) the support for this property is mandatory. Thanks, Martin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4130597#4130597 Reply to the post : http://www.jboss.

[jboss-user] [JBossWS] - Re: Change the endpoint address in runtime using Dispatch

2008-02-06 Thread mrostan
Thanks Alessio, I've uploaded the patch in the JIRA issue. Martin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126965#4126965 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126965 ___

[jboss-user] [JBossWS] - Change the endpoint address in runtime using Dispatch

2008-01-28 Thread mrostan
Hi, I'm using JBossWS 2.0.3 to run this simple code: | JAXBContext ctx = JAXBContext.newInstance(Discover.class, DiscoverResponse.class); | Dispatch dispatch = service.createDispatch(portQName, ctx, Service.Mode.PAYLOAD); | | dispatch.getRequestContext().put(BindingProvider.ENDPOINT_ADD

[jboss-user] [JBoss Portal] - Re: CMS Content - Navigate between pages

2007-12-17 Thread mrostan
Hi all, I'm using JBossPortal 2.6.3 on a JBossAS 4.2.2 and I can reproduce the problem reported by Nidhi and I also have it working as Michael says. The difference is the href in the html link, if the link is relative (default/B.htmlas in the example by Michael) it works fine and B.html is

[jboss-user] [JBoss Portal] - Re: Single Sign On with Alfresco Portlet

2007-12-13 Thread mrostan
This post in the Alfresco forums: http://forums.alfresco.com/viewtopic.php?p=28282 gives a way to implement SingleSignOn to Alfresco on JBossPortal I've tested it with Alfresco 2.9.0 (built from sources) on JBossPortal 2.6.2 and JBoss AS 4.2.2 View the original post : http://www.jboss.com/in

[jboss-user] [Security & JAAS/JBoss] - How to use JBossSSO and JBossPortal

2007-12-10 Thread mrostan
I've found this issue http://jira.jboss.com/jira/browse/JBSSO-24 indicating the out-of-the-box integration between JBossPortal and JBossSSO is ready. But I can't find any documentation explaining how to use it. Somebody knows how to use it? I'm using JBossPortal 2.6.2 and I want to use the latest

[jboss-user] [JBoss Portal] - WSRP user and role propagation

2007-12-10 Thread mrostan
Hi, I'm using JBossPortal 2.6.2 and testing WSRP between two instances of JBossPortal. I need information about the connected user in the producer side, so I'm trying these methods of RenderRequest with the following results: getRemoteUser(): returns the login of the connected user on the consume

[jboss-user] [JBoss Messaging] - Re: ejb3mdb example

2007-05-10 Thread mrostan
Thanks Clebert, it is working now. Martin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4044673#4044673 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4044673 ___ jboss-user ma

[jboss-user] [JBoss Messaging] - Re: ejb3mdb example

2007-05-09 Thread mrostan
Any news about this issue? I have the same problem, mdbs (ejb3) are not working with jboss messaging 1.2.0 GA java.lang.ClassNotFoundException: No ClassLoaders found for: org.jboss.jms.client.container.ClosedInterceptor Thanks in advance View the original post : http://www.jboss.com/index.html

[jboss-user] [JBoss Portal] - Re: Error when accessing a JSF portlet via WSRP

2006-09-08 Thread mrostan
I'm having the same problem, I cannot access a JSF portlet remotely using WSRP. Did anyone now something about it? Thanks in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3970444#3970444 Reply to the post : http://www.jboss.com/index.html?module=bb&