Unable to load WSO2 DSS 3.0.1 using WGET

I tried to download WSO2 Data Services Server (DSS) 3.0.1, following the instructions in: http://docs.wso2.org/wiki/display/DSS301/Obtaining+the+Product

It says:

wget --user-agent="testuser" http://dist.wso2.org/products/data-services-server/3.0.1/wso2dss-3.0.1.zip 

I googled and tried --user-agent = "Mozilla" and other things, but no one worked. I signed up and tried using -user = user and -password = pass, but no luck.

I am using a RedHat Linux server. Does anyone have a similar situation?

Thanks.

+4
source share
3 answers

You just need an additional referent parameter to make it work:

 wget --user-agent="testuser" --referer="http://connect.wso2.com/wso2/getform/reg/new_product_download" http://dist.wso2.org/products/data-services-server/3.0.1/wso2dss-3.0.1.zip 
+6
source

You can download WSO2 DSS 3.0.1 from here .

0
source

Download the API via this link:

 wget --user-agent="testuser" --referer="http://connect.wso2.com/wso2/getform/reg/new_product_download" https://product-dist.wso2.com/products/api-manager/2.1.0/wso2am-2.1.0.zip 
0
source

Source: https://habr.com/ru/post/1490433/


All Articles