[jira] [Updated] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2017-04-26 Thread venkata yerrapothu (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-5004?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

venkata yerrapothu updated QPID-5004:
-

Hi Alex,



As of today our team is using Microsoft SDK directly to interact with Azure 
queues. I will pass on the information to them about JMS client readiness.


We never looked back after switching the logic to use SDK directly.



Thanks

Venkat




> AMQP queue client functionality is not working behind a HTTP proxy.
> ---
>
> Key: QPID-5004
> URL: https://issues.apache.org/jira/browse/QPID-5004
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Client
>Affects Versions: 0.22
> Environment: SUN and IBM JVM's  version 6 and 7 as well.
>Reporter: venkata yerrapothu
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Updated] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2017-04-26 Thread venkata yerrapothu (JIRA)

 [ 
https://issues.apache.org/jira/browse/QPID-5004?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

venkata yerrapothu updated QPID-5004:
-

I had to modify the AMQP client code itself to send the proxy credentials.   
Later we moved away AMQP altogether as we started to see few random errors once 
in a while.


Thanks




> AMQP queue client functionality is not working behind a HTTP proxy.
> ---
>
> Key: QPID-5004
> URL: https://issues.apache.org/jira/browse/QPID-5004
> Project: Qpid
>  Issue Type: Bug
>  Components: Java Client
>Affects Versions: 0.22
> Environment: SUN and IBM JVM's  version 6 and 7 as well.
>Reporter: venkata yerrapothu
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

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



[jira] [Comment Edited] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2013-07-22 Thread venkata yerrapothu (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5004?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13713949#comment-13713949
 ] 

venkata yerrapothu edited comment on QPID-5004 at 7/23/13 12:26 AM:


I got it working finally through the proxy.

Thanks


  was (Author: yerrapothu):
Apologies for the miscommunication. In our case the any internet 
connectivity (external) must go through proxies only. Our Firewalls block 
everything.

Thanks

  
 AMQP queue client functionality is not working behind a HTTP proxy.
 ---

 Key: QPID-5004
 URL: https://issues.apache.org/jira/browse/QPID-5004
 Project: Qpid
  Issue Type: Bug
  Components: Java Client
Affects Versions: 0.22
 Environment: SUN and IBM JVM's  version 6 and 7 as well.
Reporter: venkata yerrapothu



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Commented] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2013-07-19 Thread venkata yerrapothu (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5004?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13713668#comment-13713668
 ] 

venkata yerrapothu commented on QPID-5004:
--

I am using the code from the below URL.
http://www.windowsazure.com/en-us/develop/net/how-to-guides/service-bus-amqp/

Everything works perfect If I have direct internet connection.

We are running into issues when running the same behind proxy/firewall.  

We are setting the proxy information this way. Please let me know if you need 
further information.


public void setProxy() {
if (isUseHTTPProxy()) {
// HTTP/HTTPS Proxy
System.setProperty(http.proxyHost, getHTTPHost());
System.setProperty(http.proxyPort, getHTTPPort());
System.setProperty(https.proxyHost, getHTTPHost());
System.setProperty(https.proxyPort, getHTTPPort());
if (isUseHTTPAuth()) {
String encoded = new String(Base64.encodeBase64((getHTTPUsername() 
+ : + getHTTPPassword()).getBytes()));
con.setRequestProperty(Proxy-Authorization, Basic  + encoded);
Authenticator.setDefault(new ProxyAuth(getHTTPUsername(), 
getHTTPPassword()));
}
}
if (isUseSOCKSProxy()) {
// SOCKS Proxy
System.setProperty(socksProxyHost, getSOCKSHost());
System.setProperty(socksProxyPort, getSOCKSPort());
if (isUseSOCKSAuth()) {
System.setProperty(java.net.socks.username, getSOCKSUsername());
System.setProperty(java.net.socks.password, getSOCKSPassword());
Authenticator.setDefault(new ProxyAuth(getSOCKSUsername(), 
getSOCKSPassword()));
}
}
}





 AMQP queue client functionality is not working behind a HTTP proxy.
 ---

 Key: QPID-5004
 URL: https://issues.apache.org/jira/browse/QPID-5004
 Project: Qpid
  Issue Type: Bug
  Components: Java Client
Affects Versions: 0.22
 Environment: SUN and IBM JVM's  version 6 and 7 as well.
Reporter: venkata yerrapothu



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Commented] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2013-07-19 Thread venkata yerrapothu (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5004?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13713713#comment-13713713
 ] 

venkata yerrapothu commented on QPID-5004:
--

Is it possible request this feature as most of the enterprise applications are 
running behind proxy/Firewall.
 
Cloud hosted AMQP capable queues are out of reach with out this capability.

 AMQP queue client functionality is not working behind a HTTP proxy.
 ---

 Key: QPID-5004
 URL: https://issues.apache.org/jira/browse/QPID-5004
 Project: Qpid
  Issue Type: Bug
  Components: Java Client
Affects Versions: 0.22
 Environment: SUN and IBM JVM's  version 6 and 7 as well.
Reporter: venkata yerrapothu



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Created] (QPID-5006) AMQP 1.0 Qpid JMS client support for tunneling over HTTP

2013-07-19 Thread venkata yerrapothu (JIRA)
venkata yerrapothu created QPID-5006:


 Summary: AMQP 1.0 Qpid JMS client support for tunneling over HTTP
 Key: QPID-5006
 URL: https://issues.apache.org/jira/browse/QPID-5006
 Project: Qpid
  Issue Type: New Feature
  Components: Java Client
Affects Versions: Future
Reporter: venkata yerrapothu
 Fix For: Future


JMS client support for tunneling over HTTP needed to access internet hosted 
queues.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Comment Edited] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2013-07-19 Thread venkata yerrapothu (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5004?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13713713#comment-13713713
 ] 

venkata yerrapothu edited comment on QPID-5004 at 7/19/13 2:42 PM:
---

Is it a good idea to request this feature as most of the enterprise 
applications are running behind proxy/Firewall.
 
Cloud hosted AMQP capable queues are out of reach with out this capability.

  was (Author: yerrapothu):
Is it possible request this feature as most of the enterprise applications 
are running behind proxy/Firewall.
 
Cloud hosted AMQP capable queues are out of reach with out this capability.
  
 AMQP queue client functionality is not working behind a HTTP proxy.
 ---

 Key: QPID-5004
 URL: https://issues.apache.org/jira/browse/QPID-5004
 Project: Qpid
  Issue Type: Bug
  Components: Java Client
Affects Versions: 0.22
 Environment: SUN and IBM JVM's  version 6 and 7 as well.
Reporter: venkata yerrapothu



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Commented] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2013-07-19 Thread venkata yerrapothu (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5004?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13713921#comment-13713921
 ] 

venkata yerrapothu commented on QPID-5004:
--

Yes we are using the queues which are hosted on Microsoft Datacenters (Azure 
Servicebus).

The Java client is running behind our data center behind a firewall.  We do 
access external  http/https ports through a proxy. We don't any difficulty in 
connecting other external web services etc.

Thanks

 AMQP queue client functionality is not working behind a HTTP proxy.
 ---

 Key: QPID-5004
 URL: https://issues.apache.org/jira/browse/QPID-5004
 Project: Qpid
  Issue Type: Bug
  Components: Java Client
Affects Versions: 0.22
 Environment: SUN and IBM JVM's  version 6 and 7 as well.
Reporter: venkata yerrapothu



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Comment Edited] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2013-07-19 Thread venkata yerrapothu (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5004?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13713921#comment-13713921
 ] 

venkata yerrapothu edited comment on QPID-5004 at 7/19/13 6:44 PM:
---

Yes we are using the queues which are hosted on Microsoft Datacenters (Azure 
Servicebus).

The Java client is running at our data center behind a firewall.  We do access 
external  http/https ports through a proxy. We don't any difficulty in 
connecting other external web services etc.

Thanks

  was (Author: yerrapothu):
Yes we are using the queues which are hosted on Microsoft Datacenters 
(Azure Servicebus).

The Java client is running behind our data center behind a firewall.  We do 
access external  http/https ports through a proxy. We don't any difficulty in 
connecting other external web services etc.

Thanks
  
 AMQP queue client functionality is not working behind a HTTP proxy.
 ---

 Key: QPID-5004
 URL: https://issues.apache.org/jira/browse/QPID-5004
 Project: Qpid
  Issue Type: Bug
  Components: Java Client
Affects Versions: 0.22
 Environment: SUN and IBM JVM's  version 6 and 7 as well.
Reporter: venkata yerrapothu



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Commented] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2013-07-19 Thread venkata yerrapothu (JIRA)

[ 
https://issues.apache.org/jira/browse/QPID-5004?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13713949#comment-13713949
 ] 

venkata yerrapothu commented on QPID-5004:
--

Apologies for the miscommunication. In our case the any internet connectivity 
(external) must go through proxies only. Our Firewalls block everything.

Thanks


 AMQP queue client functionality is not working behind a HTTP proxy.
 ---

 Key: QPID-5004
 URL: https://issues.apache.org/jira/browse/QPID-5004
 Project: Qpid
  Issue Type: Bug
  Components: Java Client
Affects Versions: 0.22
 Environment: SUN and IBM JVM's  version 6 and 7 as well.
Reporter: venkata yerrapothu



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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



[jira] [Created] (QPID-5004) AMQP queue client functionality is not working behind a HTTP proxy.

2013-07-18 Thread venkata yerrapothu (JIRA)
venkata yerrapothu created QPID-5004:


 Summary: AMQP queue client functionality is not working behind a 
HTTP proxy.
 Key: QPID-5004
 URL: https://issues.apache.org/jira/browse/QPID-5004
 Project: Qpid
  Issue Type: Bug
  Components: Java Client
Affects Versions: 0.22
 Environment: SUN and IBM JVM's  version 6 and 7 as well.

Reporter: venkata yerrapothu




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

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