Google Code denying access to UMS binaries

Developers forum for Univeral Media Server-related development (only for programmers)
Post Reply
Tiago Costa
Posts: 12
Joined: Mon Apr 28, 2014 5:35 pm

Google Code denying access to UMS binaries

Post by Tiago Costa »

Hey, guys! I'm constantly building UMS from source to test and share some improvements (you have seen my numerous pull requests - sorry for flooding!), but since a few days ago, I can't download some binaries from Google Code. It gives me HTTP 403 (Forbidden) code when NetBeans tries to download dcrawMS.exe, ffmpeg.exe, etc, and when I try to download using browser (Chrome, for example), it displays a page with the message below:

"We're sorry...

... but your computer or network may be sending automated queries. To protect our users, we can't process your request right now."

What should I do now? I've disabled downloading these files in POM.xml, so I can at least build UMS.jar, but I want to have this really fixed.

Thanks in advance!
User avatar
Optimus_prime
Posts: 678
Joined: Fri Jun 01, 2012 6:39 pm
Location: Sydney, Australia

Re: Google Code denying access to UMS binaries

Post by Optimus_prime »

I think Subjunk is looking into it. Most likely this will transition to Sourceforge
How Ask For Support
Remember, Debug Log's Can/Will Help and Explain your issues, we're not mind reader's but here to help
OS's I Use And Can Assist With: Windows 7/8, Mac OS-X 10.8 & 10.9
Mac OS-X Java 7 Builds Mac OS-X Java 7 Forum
Tiago Costa
Posts: 12
Joined: Mon Apr 28, 2014 5:35 pm

Re: Google Code denying access to UMS binaries

Post by Tiago Costa »

Good =D!
User avatar
SubJunk
Lead Developer
Posts: 3705
Joined: Sun May 27, 2012 4:12 pm

Re: Google Code denying access to UMS binaries

Post by SubJunk »

Yeah hopefully SourceForge will allow it :) They are pretty awesome
Tiago Costa
Posts: 12
Joined: Mon Apr 28, 2014 5:35 pm

Re: Google Code denying access to UMS binaries

Post by Tiago Costa »

Thanks! Can't wait to make complete builds again! :)
infidel
Developer
Posts: 571
Joined: Thu Jul 12, 2012 5:37 am

Re: Google Code denying access to UMS binaries

Post by infidel »

Just for the sake of completeness: this issue can also arise when other resources are unavailable, and the "quick fix" is to use the maven --offline (-o) option in your build command:

Code: Select all

mvn -o package
OOPS: The above works great for offline java dependencies, which has nothing whatsoever to do with the issue here (note to self: always look before you leap :))
User avatar
Optimus_prime
Posts: 678
Joined: Fri Jun 01, 2012 6:39 pm
Location: Sydney, Australia

Re: Google Code denying access to UMS binaries

Post by Optimus_prime »

There's a PR on git to fix it now

If you can't wait change the pom.xml at line 92 from this

Code: Select all

<project.binaries-base>http://universal-media-server-binaries.googlecode.com/svn/trunk</project.binaries-base>
to this

Code: Select all

<project.binaries-base>http://downloads.sourceforge.net/project/unimediaserver/Dependencies</project.binaries-base>
How Ask For Support
Remember, Debug Log's Can/Will Help and Explain your issues, we're not mind reader's but here to help
OS's I Use And Can Assist With: Windows 7/8, Mac OS-X 10.8 & 10.9
Mac OS-X Java 7 Builds Mac OS-X Java 7 Forum
Tiago Costa
Posts: 12
Joined: Mon Apr 28, 2014 5:35 pm

Re: Google Code denying access to UMS binaries

Post by Tiago Costa »

Wow, nice! Thanks :D!
Post Reply