Google Code denying access to UMS binaries
-
- Posts: 12
- Joined: Mon Apr 28, 2014 5:35 pm
Google Code denying access to UMS binaries
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!
"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!
- Optimus_prime
- Posts: 678
- Joined: Fri Jun 01, 2012 6:39 pm
- Location: Sydney, Australia
Re: Google Code denying access to UMS binaries
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
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
-
- Posts: 12
- Joined: Mon Apr 28, 2014 5:35 pm
Re: Google Code denying access to UMS binaries
Yeah hopefully SourceForge will allow it
They are pretty awesome

-
- Posts: 12
- Joined: Mon Apr 28, 2014 5:35 pm
Re: Google Code denying access to UMS binaries
Thanks! Can't wait to make complete builds again! 

Re: Google Code denying access to UMS binaries
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:
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
)
Code: Select all
mvn -o package

- Optimus_prime
- Posts: 678
- Joined: Fri Jun 01, 2012 6:39 pm
- Location: Sydney, Australia
Re: Google Code denying access to UMS binaries
There's a PR on git to fix it now
If you can't wait change the pom.xml at line 92 from this
to this
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>
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
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
-
- Posts: 12
- Joined: Mon Apr 28, 2014 5:35 pm
Re: Google Code denying access to UMS binaries
Wow, nice! Thanks
!
