Hi,

Thanks for your project details.
While reading Maven output something came to my mind. According to Google, the
response string you're getting when accessing Maven2 respository, ie: 
<BODY>
<H1>Error</H1>
FW-1' - RETRYING

comes from the FW-1 router/firewall which is blocking the access to the
requested page.

Please, try to go to the http://mirrors.dotsrc.org/maven2 using your browser. 
If you get the same error, try to access other mirrors through browser, and
use the working one. If all of them are blocked, you have to contact your
network administrator to help you resolve this problem.

Hope this helps,
Regards,
Jakub



On Mon, 22 May 2006 00:03:28 -0400, Mistry, Deep M wrote
> Here is my pom.xml 
> I'm trying to compile a plain JAVA file, so i guess no need for 
> dependencies.
> 
> <project xmlns="http://maven.apache.org/POM/4.0.0"; 
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";  
> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
> http://maven.apache.org/maven-v4_0_0.xsd";>  <modelVersion>4.0.0</modelVersion>
>   <groupId>com.bofa.gcib</groupId>
>   <artifactId>hello-world</artifactId>
>   <packaging>jar</packaging>
>   <version>1.0</version>
>   <name>Hello-World</name>
>   <url>http://maven.apache.org</url>
> </project>
> 
> This is the settings.xml file.
> 
> <?xml version="1.0" encoding="UTF-8"?>
> <settings>
> <!-- <offline>true</offline> -->
>   <proxies>
>     <proxy>
>       <active/>
>       <protocol>http</protocol>
>       <username>username</username>
>       <password>password</password>
>       <port>80</port>
>       <host>ip-address</host>
>     </proxy>
>   </proxies>
>   <mirrors>
>      <mirror>
>        <id>dotsrc.org</id>
>        <url>http://mirrors.dotsrc.org/maven2</url>
>        <mirrorOf>central</mirrorOf>
>      </mirror>
>   </mirrors>   
> </settings>
> 
> And, i've attached the stack trace from the 'mvn -e compile' command.
> 
> Thanks for your help.
> 
> ________________________________
> 
> From: Jakub Pawlowicz [mailto:[EMAIL PROTECTED]
> Sent: Fri 5/19/2006 6:01 PM
> To: Maven Users List
> Cc: Mistry, Deep M
> Subject: Re: FW: FW: Using Maven behind a proxy.
> 
> Hi,
> 
> Could you please send us your pom.xml, settings.xml and output from 
> 'mvn -e compile' command? That will help a lot.
> 
> Regards,
> Jakub
> 
> On Fri, 19 May 2006 04:22:20 -0400, Mistry, Deep M wrote
> > Hi,
> >
> > Sorry to bug you again and again on this.
> > I deleted the whole repository dir under ${user.home}\.m2\ and did a
> >
> > mvn -e compile
> >
> > to compile a single hello-world file.
> > But it still gives me the same error.
> >
> > The maven-metadata-central.xml has a message 'Unknown WWW server'.
> >
> > Is this because the mirror is not reachable through the firewall?
> >
> > No mater whatever mirror i provide, or how many time i delete the
> > repository it keeps me giving the same error.
> >
> > Is there a way i can download the resources and compiler plugin and
> > put in the repository? If yes, can you tell me how to do that?
> >
> > Thanks.
> >
> > ________________________________
> >
> > From: Jakub Pawlowicz [mailto:[EMAIL PROTECTED]
> > Sent: Fri 5/19/2006 1:18 PM
> > To: Maven Users List
> > Cc: Mistry, Deep M
> > Subject: Re: FW: Using Maven behind a proxy.
> >
> > Hi,
> >
> > Try to delete the corrupted maven-metadata-central.xml file (or other
> > corrupted files as well) from your local repository, and then rerun
> > the maven. After that, all the files will be downloaded from the new
> > mirror, and everything should work fine.
> >
> > HTH,
> > Jakub
> >
> > On Fri, 19 May 2006 02:55:05 -0400, Mistry, Deep M wrote
> > > Thanks for your reply.
> > >
> > > I still have problems in this.
> > > I used one of the mirrors available on
> > >
> > > http://maven.apache.org/guides/mini/guide-mirror-settings.html
> > > <http://maven.apache.org/guides/mini/guide-mirror-settings.html>
> > >
> > > My settings.xml is something like this,
> > >
> > > <?xml version="1.0" encoding="UTF-8"?>
> > > <settings>
> > > <!-- <offline>true</offline> -->
> > >   <proxies>
> > >     <proxy>
> > >       <active/>
> > >       <protocol>http</protocol>
> > >       <username>user-name</username>
> > >       <password>********</password>
> > >       <port>80</port>
> > >       <host>ip-address</host>
> > >     </proxy>
> > >   </proxies>
> > >  <mirrors>
> > >     <mirror>
> > >       <id>dotsrc.org</id>
> > >       <url>http://mirrors.dotsrc.org/maven2</url>
> > >       <mirrorOf>central</mirrorOf>
> > >     </mirror>
> > > <!--    <mirror>
> > >       <id>sunsite.dk</id>
> > >       <url>http://mirrors.sunsite.dk/maven2</url>
> > >       <mirrorOf>central</mirrorOf>
> > >     </mirror> -->
> > >   </mirrors>
> > > </settings>
> > >
> > > With this settings i'm getting the same checksome error.
> > > The maven-metadata-central.xml downloaded is something like this,
> > >
> > > <TITLE>Error</TITLE>
> > > <BODY>
> > > <H1>Error</H1>
> > > FW-1 at scpxsfo16: Unknown WWW server.</BODY>
> > >
> > > I somehow still get this errors even after providing the proxy
> > > settings. Can you help out?
> > >
> > > Thanks.
> > >
> > >  ________________________________
> > >
> > > From: Jakub Pawlowicz [mailto:[EMAIL PROTECTED]
> > > Sent: Thu 5/18/2006 6:24 PM
> > > To: Maven Users List
> > > Cc: Deep M Mistry
> > > Subject: Re: Using Maven behind a proxy.
> > >
> > > Hi,
> > >
> > > Check the mailing list archives from yesterday.
> > > There were many complaints about planetmirror repository, which sends
> > > incorrect response when apropriate artifact could not be found.
> > > For more info check this thread:
> > > http://www.nabble.com/install-file-generatePom-t1626008.html#a4405660
> > >
> > > You can find another central repository mirrors at
> > > http://maven.apache.org/guides/mini/guide-mirror-settings.html
> > >
> > > HTH,
> > > Jakub
> > >
> > > On Thu, 18 May 2006 17:27:21 +0530, Deep M Mistry wrote
> > > > I'm having a tough time creating an archetype using Maven 2.0.4
> > > > I've attached the error trace in a txt file.
> > > > I'm behind a firewall and this is how my settings.xml look like,
> > > >
> > > > <?xml version="1.0" encoding="UTF-8"?>
> > > > <settings>
> > > >   <proxies>
> > > >     <proxy>
> > > >       <active/>
> > > >       <protocol>http</protocol>
> > > >       <username>user</username>
> > > >       <password>password</password>
> > > >       <port>80</port>
> > > >       <host>ip-address</host>
> > > >     </proxy>
> > > >   </proxies>
> > > > </settings>
> > > >
> > > > I cannot figure out whats wrong with current set-up.
> > > > Any pointers would be greatly apprreciated.
> > > >
> > > > Thanks.
> > > >
> > > > **************** CAUTION - Disclaimer *****************
> > > > This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION
> > > > intended solely for the use of the addressee(s). If you are not the
> > > > intended recipient, please notify the sender by e-mail and delete
> > > > the original message. Further, you are not to copy, disclose, or
> > > > distribute this e-mail or its contents to any other person and any
> > > > such actions are unlawful. This e-mail may contain viruses. Infosys
> > > > has taken every reasonable precaution to minimize this risk, but is
> > > > not liable for any damage you may sustain as a result of any virus
> > > > in this e-mail. You should carry out your own virus checks before
> > > > opening the e-mail or attachment. Infosys reserves the right to
> > > > monitor and review the content of all messages sent to or from this
> > > > e-mail address. Messages sent to or from this e-mail address may be
> > > > stored on the Infosys e-mail system. ***INFOSYS******** End of
> > > > Disclaimer ********INFOSYS***
> > >
> > > ---------------------------------------------------------------------
> > > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to