[jira] [Commented] (HTTPCLIENT-2185) Add support for IDNA 2008 (RFC 5891)

2022-08-09 Thread asuka amamiya (Jira)


[ 
https://issues.apache.org/jira/browse/HTTPCLIENT-2185?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17577744#comment-17577744
 ] 

asuka amamiya commented on HTTPCLIENT-2185:
---

[~j-bernard] Thanks! i get enough samples but I've been so busy at work 
recently. next month suppot it.

> Add support for IDNA 2008 (RFC 5891)
> 
>
> Key: HTTPCLIENT-2185
> URL: https://issues.apache.org/jira/browse/HTTPCLIENT-2185
> Project: HttpComponents HttpClient
>  Issue Type: Improvement
>  Components: Android Port, HttpClient (async), HttpClient (classic), 
> HttpClient (Windows)
>Affects Versions: 5.0
> Environment: Android SDK 30
>Reporter: Julien Bernard
>Priority: Minor
>  Labels: stuck, volunteers-wanted
> Fix For: Stuck
>
>  Time Spent: 1h 40m
>  Remaining Estimate: 0h
>
> The tests have been conducted with Kotlin on Android SDK 30 with Apache 
> HttpClient Android extensions which ships with HttpClient version 5.0.1 but 
> any HttpClient component on any platform may be impacted.
> Before making an HTTP query the client should convert the URL domain to 
> A-label as described in [RFC 
> 5891|https://datatracker.ietf.org/doc/html/rfc5891].
> Here is an example with the trustworthy ICU4J library:
>  
> {code:java}
> int flags = IDNA.CHECK_BIDI
>| IDNA.CHECK_CONTEXTJ
>| IDNA.CHECK_CONTEXTO
>|  IDNA.NONTRANSITIONAL_TO_ASCII
>| IDNA.USE_STD3_RULES;
> IDNA idna = IDNA.getUTS46Instance(flags);
> IDNA.Info info = new IDNA.Info();
> String domainAscii = idna.nameToASCII(domain, new StringBuilder(), info);
> // check error with info.hasErrors() {code}
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@hc.apache.org
For additional commands, e-mail: dev-h...@hc.apache.org



[jira] [Comment Edited] (HTTPCLIENT-2185) Add support for IDNA 2008 (RFC 5891)

2022-06-18 Thread asuka amamiya (Jira)


[ 
https://issues.apache.org/jira/browse/HTTPCLIENT-2185?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17508112#comment-17508112
 ] 

asuka amamiya edited comment on HTTPCLIENT-2185 at 6/18/22 10:34 AM:
-

Hi, i want support this, do you give me same url?

I need test that

 

[https://github.com/apache/httpcomponents-core/pull/350]


was (Author: JIRAUSER286678):
Hi, i want support this, do you give me same url?

I need test that

> Add support for IDNA 2008 (RFC 5891)
> 
>
> Key: HTTPCLIENT-2185
> URL: https://issues.apache.org/jira/browse/HTTPCLIENT-2185
> Project: HttpComponents HttpClient
>  Issue Type: Improvement
>  Components: Android Port, HttpClient (async), HttpClient (classic), 
> HttpClient (Windows)
>Affects Versions: 5.0
> Environment: Android SDK 30
>Reporter: Julien Bernard
>Priority: Minor
>  Labels: stuck, volunteers-wanted
> Fix For: Stuck
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> The tests have been conducted with Kotlin on Android SDK 30 with Apache 
> HttpClient Android extensions which ships with HttpClient version 5.0.1 but 
> any HttpClient component on any platform may be impacted.
> Before making an HTTP query the client should convert the URL domain to 
> A-label as described in [RFC 
> 5891|https://datatracker.ietf.org/doc/html/rfc5891].
> Here is an example with the trustworthy ICU4J library:
>  
> {code:java}
> int flags = IDNA.CHECK_BIDI
>| IDNA.CHECK_CONTEXTJ
>| IDNA.CHECK_CONTEXTO
>|  IDNA.NONTRANSITIONAL_TO_ASCII
>| IDNA.USE_STD3_RULES;
> IDNA idna = IDNA.getUTS46Instance(flags);
> IDNA.Info info = new IDNA.Info();
> String domainAscii = idna.nameToASCII(domain, new StringBuilder(), info);
> // check error with info.hasErrors() {code}
>  



--
This message was sent by Atlassian Jira
(v8.20.7#820007)

-
To unsubscribe, e-mail: dev-unsubscr...@hc.apache.org
For additional commands, e-mail: dev-h...@hc.apache.org



[jira] [Comment Edited] (HTTPCLIENT-2185) Add support for IDNA 2008 (RFC 5891)

2022-03-17 Thread asuka amamiya (Jira)


[ 
https://issues.apache.org/jira/browse/HTTPCLIENT-2185?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17508112#comment-17508112
 ] 

asuka amamiya edited comment on HTTPCLIENT-2185 at 3/17/22, 10:25 AM:
--

Hi, i want support this, do you give me same url?

I need test that


was (Author: JIRAUSER286678):
Hi, i want support this, do you give me same url.

I need test that

> Add support for IDNA 2008 (RFC 5891)
> 
>
> Key: HTTPCLIENT-2185
> URL: https://issues.apache.org/jira/browse/HTTPCLIENT-2185
> Project: HttpComponents HttpClient
>  Issue Type: Improvement
>  Components: Android Port, HttpClient (async), HttpClient (classic), 
> HttpClient (Windows)
>Affects Versions: 5.0
> Environment: Android SDK 30
>Reporter: Julien Bernard
>Priority: Minor
>  Labels: stuck, volunteers-wanted
> Fix For: Stuck
>
>
> The tests have been conducted with Kotlin on Android SDK 30 with Apache 
> HttpClient Android extensions which ships with HttpClient version 5.0.1 but 
> any HttpClient component on any platform may be impacted.
> Before making an HTTP query the client should convert the URL domain to 
> A-label as described in [RFC 
> 5891|https://datatracker.ietf.org/doc/html/rfc5891].
> Here is an example with the trustworthy ICU4J library:
>  
> {code:java}
> int flags = IDNA.CHECK_BIDI
>| IDNA.CHECK_CONTEXTJ
>| IDNA.CHECK_CONTEXTO
>|  IDNA.NONTRANSITIONAL_TO_ASCII
>| IDNA.USE_STD3_RULES;
> IDNA idna = IDNA.getUTS46Instance(flags);
> IDNA.Info info = new IDNA.Info();
> String domainAscii = idna.nameToASCII(domain, new StringBuilder(), info);
> // check error with info.hasErrors() {code}
>  



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: dev-unsubscr...@hc.apache.org
For additional commands, e-mail: dev-h...@hc.apache.org



[jira] [Commented] (HTTPCLIENT-2185) Add support for IDNA 2008 (RFC 5891)

2022-03-17 Thread asuka amamiya (Jira)


[ 
https://issues.apache.org/jira/browse/HTTPCLIENT-2185?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17508112#comment-17508112
 ] 

asuka amamiya commented on HTTPCLIENT-2185:
---

Hi, i want support this, do you give me same url.

I need test that

> Add support for IDNA 2008 (RFC 5891)
> 
>
> Key: HTTPCLIENT-2185
> URL: https://issues.apache.org/jira/browse/HTTPCLIENT-2185
> Project: HttpComponents HttpClient
>  Issue Type: Improvement
>  Components: Android Port, HttpClient (async), HttpClient (classic), 
> HttpClient (Windows)
>Affects Versions: 5.0
> Environment: Android SDK 30
>Reporter: Julien Bernard
>Priority: Minor
>  Labels: stuck, volunteers-wanted
> Fix For: Stuck
>
>
> The tests have been conducted with Kotlin on Android SDK 30 with Apache 
> HttpClient Android extensions which ships with HttpClient version 5.0.1 but 
> any HttpClient component on any platform may be impacted.
> Before making an HTTP query the client should convert the URL domain to 
> A-label as described in [RFC 
> 5891|https://datatracker.ietf.org/doc/html/rfc5891].
> Here is an example with the trustworthy ICU4J library:
>  
> {code:java}
> int flags = IDNA.CHECK_BIDI
>| IDNA.CHECK_CONTEXTJ
>| IDNA.CHECK_CONTEXTO
>|  IDNA.NONTRANSITIONAL_TO_ASCII
>| IDNA.USE_STD3_RULES;
> IDNA idna = IDNA.getUTS46Instance(flags);
> IDNA.Info info = new IDNA.Info();
> String domainAscii = idna.nameToASCII(domain, new StringBuilder(), info);
> // check error with info.hasErrors() {code}
>  



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

-
To unsubscribe, e-mail: dev-unsubscr...@hc.apache.org
For additional commands, e-mail: dev-h...@hc.apache.org