Re: TF30063: You are not authorized to access http://

2014-10-08 Thread funeeldy11
Did you find a solution??? I am seeing the same problem with Jenkins and 
TFS 2013.

On Monday, March 10, 2014 2:52:30 AM UTC-4, Tam Minh wrote:
>
> Note that I use VS2012 and TFS 2012
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins and TFS

2014-09-12 Thread funeeldy11
Is there a plugin for jenkins that monitors tfs tasks?  I would like a 
build of source code in clearcase to be triggered by completion of a task 
in TFS.


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Problem running batch script from Jenkins - help please!

2014-07-03 Thread funeeldy11
YES!  that was it.  Jenkins was running as a system user.  Thank you!

On Thursday, July 3, 2014 12:23:38 PM UTC-4, slide wrote:
>
> Or, if you don't mind the security implications, you could run Jenkins as 
> a user that has access...
>
>
> On Thu, Jul 3, 2014 at 8:21 AM, Les Mikesell  > wrote:
>
>> On Thu, Jul 3, 2014 at 9:31 AM, > wrote:
>> >
>> >
>> > We run our build.bat on a windows box. We are moving this into jenkins. 
>> One of the command line args is a UNC pathname. The batch script works fine 
>> on the windows machine in a cmd window. When I execute the same command in 
>> jenkins batch script, it cannot see the unc path somehow. The batch script 
>> has the following command which fails when it is run in jenkins:
>> >
>> > @rem Test if staging area exists. @set BuildResultsDir=%4 @if not exist 
>> "%BuildResultsDir%" (
>> > @echo.
>> > @echo. -ERROR- Arg4 StagingArea "%BuildResultsDir%" does not exist.
>> > @echo.
>> > @goto:eof )
>> >
>> > The error message in the log is: M:>setlocal enabledelayedexpansion
>> >
>> > -ERROR- Arg4 StagingArea 
>> "\wesrdbb5\Reef7.2Sust\Nightly_Build\CM03Build" does not exist.
>> >
>> > I tried changing %BuildResultsDir% to !BuildResultsDir! with no 
>> success.. any advice is welcome.
>>
>> UNC paths work in general, but jenkins will be running as a different
>> user that probably doesn't have access.  I've only used read-only
>> shares that permit guest access to avoid dealing with the quirks of
>> windows network authentication.
>>
>> --
>> Les Mikesell
>>   lesmi...@gmail.com 
>>
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Website: http://earl-of-code.com 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Problem running batch script from Jenkins - help please!

2014-07-03 Thread funeeldy11
I am running the job as a user who has access.  is that different than the 
user running jenkins?

On Thursday, July 3, 2014 12:23:38 PM UTC-4, slide wrote:
>
> Or, if you don't mind the security implications, you could run Jenkins as 
> a user that has access...
>
>
> On Thu, Jul 3, 2014 at 8:21 AM, Les Mikesell  > wrote:
>
>> On Thu, Jul 3, 2014 at 9:31 AM, > wrote:
>> >
>> >
>> > We run our build.bat on a windows box. We are moving this into jenkins. 
>> One of the command line args is a UNC pathname. The batch script works fine 
>> on the windows machine in a cmd window. When I execute the same command in 
>> jenkins batch script, it cannot see the unc path somehow. The batch script 
>> has the following command which fails when it is run in jenkins:
>> >
>> > @rem Test if staging area exists. @set BuildResultsDir=%4 @if not exist 
>> "%BuildResultsDir%" (
>> > @echo.
>> > @echo. -ERROR- Arg4 StagingArea "%BuildResultsDir%" does not exist.
>> > @echo.
>> > @goto:eof )
>> >
>> > The error message in the log is: M:>setlocal enabledelayedexpansion
>> >
>> > -ERROR- Arg4 StagingArea 
>> "\wesrdbb5\Reef7.2Sust\Nightly_Build\CM03Build" does not exist.
>> >
>> > I tried changing %BuildResultsDir% to !BuildResultsDir! with no 
>> success.. any advice is welcome.
>>
>> UNC paths work in general, but jenkins will be running as a different
>> user that probably doesn't have access.  I've only used read-only
>> shares that permit guest access to avoid dealing with the quirks of
>> windows network authentication.
>>
>> --
>> Les Mikesell
>>   lesmi...@gmail.com 
>>
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Jenkins Users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to jenkinsci-use...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Website: http://earl-of-code.com 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Problem running batch script from Jenkins - help please!

2014-07-03 Thread funeeldy11
 
   
We run our build.bat on a windows box. We are moving this into jenkins. One 
of the command line args is a UNC pathname. The batch script works fine on 
the windows machine in a cmd window. When I execute the same command in 
jenkins batch script, it cannot see the unc path somehow. The batch script 
has the following command which fails when it is run in jenkins:

@rem Test if staging area exists. @set BuildResultsDir=%4 @if not exist 
"%BuildResultsDir%" (
@echo.
@echo. -ERROR- Arg4 StagingArea "%BuildResultsDir%" does not exist.
@echo.
@goto:eof )

The error message in the log is: M:>setlocal enabledelayedexpansion 

-ERROR- Arg4 StagingArea "\wesrdbb5\Reef7.2Sust\Nightly_Build\CM03Build" 
does not exist.

I tried changing %BuildResultsDir% to !BuildResultsDir! with no success.. 
any advice is welcome.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.