Hi all, where can I get the latest code of mina 2.0?
Thanks
gh_aiyz
2007-04-14
发件人: John E. Conlon
发送时间: 2007-04-13 04:01:32
收件人: [EMAIL PROTECTED]
抄送:
主题: Re: New feature in 2.0: Request-Response Filter
Hi Trustin,
Just updated my working trunk and I noticed a problem with the feature
you just added.
The class RequestTimeoutException extends IOException and tries to call
the superclass constructor with inappropriate arguments. (IOException
has a paramaterless constructor and one that accepts a string.)
public RequestTimeoutException(Request request, String message,
Throwable cause) {
super(message, cause);
...
public RequestTimeoutException(Request request, Throwable cause) {
super(cause);
...
cheers,
John
BTW - Those are some very beautiful wedding photos. Hearty
congratulations.
Trustin Lee wrote:
> Hi folks,
>
> Today, I added a new feature to the trunk. The issue has been filed
> since the early days of MINA, but we didn't give it high priority
> because it was a good-to-have feature. I apologize those who wait for
> this issue to be resolved for a long time.
>
> The Request-Response filter is very useful for a client application
> that deals with a request-response protocol. Please refer to my last
> comment of the following JIRA page for the detailed explanation and
> example:
>
> https://issues.apache.org/jira/browse/DIRMINA-92#action_12488311
>
> Any questions and additional feature request on this filter are welcome.
>
> Trustin