Re: [Resin-interest] org.apache.axis2.AxisFault: org.xml.sax.SAXParseException: The prefix "ns2" for element "ns2:requestUser" is not bound.

2007-10-09 Thread Huitang Li
It sounds great, and especially thanks for the update from resin developers. When this is solved, axis users will not need to manually modify the axis2-generated stub code. Looking forward to it ... Huitang Emil Ong wrote: > --- Huitang Li <[EMAIL PROTECTED]> wrote: > > >> I found the cau

Re: [Resin-interest] org.apache.axis2.AxisFault: org.xml.sax.SAXParseException: The prefix "ns2" for element "ns2:requestUser" is not bound.

2007-10-09 Thread Emil Ong
--- Huitang Li <[EMAIL PROTECTED]> wrote: > I found the cause of the problem by debugging the resin 3.1.3 > source code. > > The problem is caused by the setPrefix() method in the class > XMLStreamWriterImpl (the implementation class of XMLStreamWriter). > Whenever this method is called, by def

Re: [Resin-interest] Resin 3.1.3 is available

2007-10-09 Thread Mattias Jiderhamn
For us, migrating from 2.1 to 3.0 took longer than expected. First you need to restructure your resin.conf and possibly web.xml (as Resin 3.0 is much more picky about the order of the tags). You need to make sure rtexprvalue is provided in your TLDs when appropriate, as currently discussed in a par

Re: [Resin-interest] Unable to pass request parameter to custom taglibwith Resin 3.1.3

2007-10-09 Thread Mattias Jiderhamn
Yes, Resin 3.x is much more picky about true in your TLD files. That is most probably what you are seeing. Mike Wynholds wrote: > > I am not sure exactly why it stopped working, but I have noticed that > sometimes Resin, over time, becomes more and more spec-compliant. > this often means things t

Re: [Resin-interest] Resin/Tomcat Common Authenticator

2007-10-09 Thread Mattias Jiderhamn
You could probably implement your own authenticator, possibly just subclassing the JdbcAuthenticator (see below), then use that authenticator in resin-web.xml. I myself wrote a "patch" for a Tomcat only webapp, that contains this plus dummy implementations of Tomcat classes/interfaces like org.apac

Re: [Resin-interest] Problem with relation

2007-10-09 Thread Rodrigo Westrupp
--- Sergey Plehov <[EMAIL PROTECTED]> wrote: > > This issue with Resin 3.1.2 and Resin 3.1.3 > > I send in attachment source files. > Thanks Sergey. I have filed a new bug report: http://bugs.caucho.com/view.php?id=2048 At the moment, there is not a good workaround, i.e. you would need

[Resin-interest] Resin/Tomcat Common Authenticator

2007-10-09 Thread Daniel Lopez
Hi all, Long story short: I started consulting in a company that is developing a product using Tomcat. They want to be able to run the application in different containers to make sure they are spec compliant and all, so I suggested Resin as an alternative. I've been able to configure the da

Re: [Resin-interest] Unable to pass request parameter to custom taglibwith Resin 3.1.3

2007-10-09 Thread Mike Wynholds
I am not sure exactly why it stopped working, but I have noticed that sometimes Resin, over time, becomes more and more spec-compliant. this often means things that "worked" in the past, even though they were against the spec, stop working. check your .tld file to make sure that the "moduleNam

[Resin-interest] Unable to pass request parameter to custom taglib with Resin 3.1.3

2007-10-09 Thread Ambar Hegde
I'm having trouble trying to pass a request parameter to a custom taglib by setting an attribute. The jsp looks like this: <% String moduleName =request.getParameter("moduleName"); %> In the loadFav class, public void setModuleName(String moduleName) { this.moduleName = moduleName; }

Re: [Resin-interest] Problem with relation

2007-10-09 Thread Sergey Plehov
This issue with Resin 3.1.2 and Resin 3.1.3 I send in attachment source files. Thanks 2007/10/9, Rodrigo Westrupp <[EMAIL PROTECTED]>: > > > --- Sergey Plehov <[EMAIL PROTECTED]> wrote: > > > > Yes, i annotate getApplications with CascadeType.MERGE (also try and > > CascadeType.ALL) but nothin

Re: [Resin-interest] Problem with relation

2007-10-09 Thread Rodrigo Westrupp
--- Sergey Plehov <[EMAIL PROTECTED]> wrote: > > Yes, i annotate getApplications with CascadeType.MERGE (also try and > CascadeType.ALL) but nothing changed. > I will file a new bug report. Which version is this with? Please can you send in the source files: ApplicationBean.java, UserBean.