Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. proget
    Log in to post

    • ?

      DevOps
      Support • proget • • Stewart Rogers  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      It's hard to say where the issue lies, but I would suggest to attach ProGet to a proxy server like Fiddler, so you can watch the requests that are made to npm vs MyGet. Ideally, a request to ProGet or MyGet should look and behave the same as a request to npmjs.org. But npm is an undocumented protocol, and there are a lot of quirks, so oftentimes it doesn't.
    • ?

      Proget PowerShell feed: How to publish?
      Support • proget powershell • • Stewart Rogers  

      2
      0
      Votes
      2
      Posts
      60
      Views

      ?

      With regards to my question above, I have found this blog article that has helped me: https://richardspowershellblog.wordpress.com/2015/01/04/creating-a-powershellget-repository/ It talks about Proget and using a Nuget feed type, but the same methodology applies using the Powershell feed type.
    • ?

      Expectations of npm server package availability
      Support • proget • • Stewart Rogers  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      It's hard to say, there's also the possibility that it's a bug; please keep in mind the npm "protocol" is undocumented, and lot of odd quirks that vary from client version to version, so it's possible this particular package is constructed in a way that we didn't account for. In this situation, the best way to see what the problem is, use a tool like Fiddler or Wireshark, and see which specific query ProGet is responding differently to.
    • ?

      Proget Errors - NPM (scoped packages?)
      Support • proget • • Stewart Rogers  

      2
      0
      Votes
      2
      Posts
      1
      Views

      ?

      Can you provide more information on how to reproduce this? Ideally, if you could attach Fiddler or similar to capture the specific query that is causing the error, that will help us repro.
    • ?

      Otter ProGe::ensure- package throws error
      Support • proget otter • • Stewart Rogers  

      3
      0
      Votes
      3
      Posts
      7
      Views

      ?

      Thank you Alana, this makes sense. I was trying to use a NuGet feed type. This answers my question.
    • ?

      Active Directory Authentication
      Support • proget authentication • • Stewart Rogers  

      4
      0
      Votes
      4
      Posts
      44
      Views

      ?

      Sorry on the slow reply; this is extremely difficult to debug, because it involves a very complex set-up and expertise in undocumented LDAP/AD/NETBIOS conventions, as you might imagine… The problem is that the underlying libraries are returning that useless “server not available” error when trying to lookup the NETBIOS doman name. Here is how that query is constructed. private string GetNetbiosDomainName(string dnsDomainName) { string netbiosDomainName = string.Empty; DirectoryEntry rootDSE = new DirectoryEntry(string.Format("LDAP://{0}/RootDSE", dnsDomainName)); string configurationNamingContext = rootDSE.Properties["configurationNamingContext"][0].ToString(); DirectoryEntry searchRoot = new DirectoryEntry("LDAP://cn=Partitions," + configurationNamingContext); DirectorySearcher searcher = new DirectorySearcher(searchRoot); searcher.SearchScope = SearchScope.OneLevel; searcher.PropertiesToLoad.Add("netbiosname"); searcher.Filter = string.Format("(&(objectcategory=Crossref)(dnsRoot={0})(netBIOSName=*))", dnsDomainName); SearchResult result = searcher.FindOne(); if (result != null) { netbiosDomainName = result.Properties["netbiosname"][0].ToString(); } return netbiosDomainName; } Basically, it’s trying to enumerate all partitions and try to locate the netbiosname property. This is important to do because sometimes a credential will be sent to ProGet in a NETBIOSNAME\username or username@NETBIOSNAME format. The failure could be happening in one of two places (where the Properties collection is accessed), but shouldn’t be happening in either. Any assistance in identifying this would be helpful. We could just ignore this error, and assume that that a failed NETBIOSNAME resolution means the domain name is always the same, but we'd prefer not to just ignore errors like this...
    • ?

      NuGet packages not being indexed when published during feedCleanup
      Support • proget nuget • • Stewart Rogers  

      5
      0
      Votes
      5
      Posts
      34
      Views

      ?

      The feedCleanup makes sure the files on disk and metadata files in sync. It'd be fine to run weekly or disable. There are no additional settings available, but we may add something to mitigate this in the future; it's extremely rare, and it's quite complex to handle properly.
    • ?

      Not able to push packages
      Support • proget nuget • • Stewart Rogers  

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • ?

      Cannot restore package using ProGet feed with FindPackagesById()
      Support • proget nuget feeds • • Stewart Rogers  

      3
      0
      Votes
      3
      Posts
      128
      Views

      ?

      Aha! Thank you! I didn't realize the feed wasn't at the root, since normal 'nuget push' and 'nuget install' commands worked with just the root URL as the '-Source' parameter. Only the 'nuget restore' failed.
    • ?

      Link universal package dependencies within feed
      Support • proget • • Stewart Rogers  

      2
      0
      Votes
      2
      Posts
      2
      Views

      ?

      Thanks- we'll have both of these added in the next release, 4.1.1.
    • ?

      Universal package dependencies not showing
      Support • proget packages • • Stewart Rogers  

      3
      0
      Votes
      3
      Posts
      10
      Views

      ?

      Awesome! I downloaded and verified this is fixed in 4.1 beta.
    • L

      Problems with minor upgrade from v3.6.1 to v3.8.6
      Support • proget proget-installation • • luke.duddridge_1525  

      3
      0
      Votes
      3
      Posts
      13
      Views

      L

      I have renamed the roles just incase, but as soon as I upgrade to 4 it appears I get knocked out of the necessary task groups. Your user account does not have the Admin_ConfigureProGet task. I also get the same message if I don't change the role names.
    • ?

      *.symbols.nupkg
      Support • proget • • Stewart Rogers  

      1
      0
      Votes
      1
      Posts
      0
      Views

      No one has replied

    • L

      I have upgraded but my account has lost admin rights
      Support • proget update • • luke.duddridge_1525  

      2
      0
      Votes
      2
      Posts
      8
      Views

      ?

      Please note the privilege changes in v4: Upgrade Notes for ProGet 4.0
    • L

      Manual upgrade of Proget Databases using an account with no interative login
      Support • proget update • • luke.duddridge_1525  

      2
      0
      Votes
      2
      Posts
      13
      Views

      ?

      Hi Luke, you'll want to put the connection string in quotes: bmdbupdate UPDATE /conn="Data Source=DB1;Initial Catalog=ProGet;Integrated Security=SSPI;User ID=Account;Password=Password;" We'll try to add that to a new version of the database updater! Cheers!
    • ?

      Npm Feed not working in 4.0.15
      Support • proget npm • • Stewart Rogers  

      3
      0
      Votes
      3
      Posts
      9
      Views

      ?

      I get the same issue with v4.3.1 (Build 5). With nuget, I can search (via connector) to list all packages available on nuget.org. But with npm, unless I manually add packages via npm connector, the search shows a blank page.
    • ?

      Assembles a package on the server by defining metadata and uploading files
      Support • proget net • • Stewart Rogers  

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • ?

      Uploading packages over SSL binding that uses self-signed cert throws an error
      Support • proget security ssl • • Stewart Rogers  

      2
      0
      Votes
      2
      Posts
      18
      Views

      ?

      This isn't specific to ProGet at all, but HTTPS/SSL in general. It's not possible to bypass or address this from the server software (ProGet) side at all. You'll need to either trust the self-signed certificate on the client (Jenkins), install a certificate from a trusted root (server), or bypass that warning in the client (Jenkins).
    • ?

      Bower artifact management (Archive-package instead of GitURL-package)
      Support • proget packages bower • • Stewart Rogers  

      3
      0
      Votes
      3
      Posts
      9
      Views

      ?

      Here is a solution for you guys : We implemented two open source tools that allow using bower package-based artifacts based on Alana's previous comment. They are still in active early development, but we are currently using them in our day to day work. ##Bower client https://github.com/WoltersKluwerCanada/proget-universal-bower-client This tool is packaging bower repositories into a .upack file It can also deploy to a proget repository ##Bower resolver https://github.com/WoltersKluwerCanada/proget-universal-bower-resolver This tool is an extension to bower which resolves/unpackages upack-proget feeds as bower feeds.
    • ?

      Using ProGet with ChocolateyGUI
      Support • proget • • Stewart Rogers  

      2
      0
      Votes
      2
      Posts
      4
      Views

      ?

      It sounds like ProGet is working fine, but that the CHOCOLATEGUI doesn't support Windows Integrated Authentication. I would submit a ticket/bug request on their github and ask them to support it. It's generally a relatively easy change to make, depending on how they implemented querying.
    • 1
    • 2
    • 46
    • 47
    • 48
    • 49
    • 50
    • 79
    • 80
    • 48 / 80