similar to: authenticating to an NTLM proxy from a Linux http cli ent

Displaying 20 results from an estimated 1000 matches similar to: "authenticating to an NTLM proxy from a Linux http cli ent"

2004 Feb 01
1
authenticating to an NTLM proxy from a Linux http client
Microsoft's proxy server uses NTLM authentication, which I gather provides non-standard http authentication, so that *nix clients traditionally cannot use it. The latest mozilla (v1.6) now supports NTLM, so I can at last use it to surf web. Good for mozilla! However, any other http client (e.g. wget or Debian's apt-get) is still stuck, unable to authenticate. I understand that samba3 is
2008 Oct 21
2
Windows Username/Password environment variables
Hi all. I've a web app that only works with IE cause it has some activeX controls. My problem when trying to access the web page with IE in Linux is that it give's me access denied. When using windows, there's no problem because it reads the user (some environment variable in windows) logged in and it lets the user access the page. My user works in windows, but when trying in Linux
2009 Sep 10
3
Samba Panic when attempting to connect using OS X cli ent (3.3.7)
Can someone help me out here? I've recompiled and made changes to the smb.conf to no avail. ~Doug > -----Original Message----- > From: samba-bounces at lists.samba.org > [mailto:samba-bounces at lists.samba.org]On Behalf Of Doug Sampson > Sent: Friday, September 04, 2009 12:41 PM > To: 'samba at lists.samba.org' > Subject: [Samba] Samba Panic when attempting to
2005 Apr 27
1
AW: Activate ingress policies on suse ent erpr ise serv e r 9
Hi, Only for my info: How can it be do via IPTables? Do you have an example or a howto? Thanks Gernot -----Ursprüngliche Nachricht----- Von: Andy Furniss [mailto:andy.furniss@dsl.pipex.com] Gesendet: Mittwoch, 27. April 2005 00:30 An: Grames Gernot Cc: lartc@mailman.ds9a.nl Betreff: Re: [LARTC] Activate ingress policies on suse ent erpr ise serv er 9 Grames Gernot wrote: > > Hi, >
2011 Aug 04
4
Delph7 ENT DeveloperExpress Components on wine
Hi all, i've installed Delphi7ENT and DevExpr_v45 components on wine. When i launch delphi i get this error: Can't load package C:\Programmi\DevExpress\Library\Delphi7 \dclcxPivotGridD7.bpl. I get this for each .bpl in C:\Programmi\DevExpress\Library\Delphi7\ It seems like delphi can't find them, but every file is present, readable and executable. Any ideas? Delphi 7 Enterprise
2005 Apr 26
1
Activate ingress policies on suse ent erpr ise serv er 9
Hi, The problem is this is my goal to use the policier and not the iptables. Because with the policier i think you can give more rules and restrictions to the incoming tcpip traffic. So I would prefer to use the policier and not the iptables. Thanks Gernot > GRAMES Gernot > __________________________________ > SIEMENS AG Austria > PSE SMC AI 21 > * Tel.: +43 (0) 5 1707
2009 Nov 16
3
There isn't package for httpd-2.0.52-41.ent.6.centos4 [centos announce list from 12.11.2009]
Hi. There isn't a package httpd-2.0.52-41.ent.6.centos4 for centos4 in UPDATES repo. There is only a httpd-2.0.52-41.ent.6.centos4.src.rpm in SRC [http://mirror.centos.org/centos/4/updates/SRPMS/?C=M;O=D] This is probably a bug. Package httpd doesn't build ? Jancio Wodnik -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Nov 12
1
How to get Puppet Ent Agent for Mac Mountain Lion?
Dear All, I''m very new to Puppet Enterprise.... I have the following setup so far: 1. Puppet Master (Puppet Ent) on Ubuntu with its own Agent 2. Puppet Agent on MAC Mountain Lion Everything looked ok but then I noticed this on the MAC (below), which suggested to me I had the wrong Agent? I''m a little confused on how to get the Puppet Ent Agent for MAC? Info: Retrieving
2004 Mar 29
2
W2K3 Server + RAS + Samba 3.0 Domain
Hi ! I?m trying to figure out if it?s possible to add a W2K3 Server into a Samba 3.0 Domain and then have the RAS-Service on the W2K3 server authenthicate against the Samba Domain. Bringing the 2K3 into the Domain was not much of a problem, working fine so far, i can log on using Domain users etc. But i?ve been trying for a week now and i can?t get the RAS Service working properly. It always
2016 Nov 29
4
RFC: Constructing StringRefs at compile time
On 29 November 2016 at 17:38, Zachary Turner <zturner at google.com> wrote: > I see, but I looked over your proposed implementation from earlier in the > thread, and if I'm not mistaken I see this: That's a different suggestion. > That said, what did you think about my other proposal of the complicated UDL > with macro? > > #define LIT(x) x_string_ref_literal >
2016 Dec 12
0
RFC: Constructing StringRefs at compile time
Well, apparently clang has clang::StringLiteral in clang/AST/Expr.h So, our options are either: Allow this name clash (obviously the namespaces don't clash, only the names) and deal with it when it's an issue (which will be limited to clang, and even then not very often), or choose a different name. Thoughts? On Mon, Dec 12, 2016 at 11:53 AM Zachary Turner <zturner at google.com>
2016 Nov 25
5
RFC: Constructing StringRefs at compile time
On 24 November 2016 at 15:04, Hal Finkel <hfinkel at anl.gov> wrote: >> Creating constexpr StringRefs isn't trivial as strlen isn't portably >> constexpr and std::char_traits<char>::length is only constexpr in >> C++17. > > Why don't we just create our own traits class that has a constexpr length, and then we can switch over to the standard one when
2016 Dec 12
4
RFC: Constructing StringRefs at compile time
I can. I'll whip something up today On Fri, Dec 9, 2016 at 1:18 AM Malcolm Parsons <malcolm.parsons at gmail.com> wrote: > On 2 December 2016 at 17:12, James Y Knight <jyknight at google.com> wrote: > > +1 from me for the StringLiteral proposal from a few messages back. > > Zachary, do you want to commit StringLiteral? > > -- > Malcolm Parsons >
2016 Dec 12
2
RFC: Constructing StringRefs at compile time
On Mon, Dec 12, 2016 at 1:03 PM Zachary Turner via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Well, apparently clang has clang::StringLiteral in clang/AST/Expr.h > > So, our options are either: Allow this name clash (obviously the > namespaces don't clash, only the names) and deal with it when it's an issue > (which will be limited to clang, and even then not
2016 Dec 12
0
RFC: Constructing StringRefs at compile time
> On Dec 12, 2016, at 3:45 PM, David Blaikie via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > > > On Mon, Dec 12, 2016 at 1:03 PM Zachary Turner via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > Well, apparently clang has clang::StringLiteral in clang/AST/Expr.h > > So, our options are either: Allow this name
2006 Jul 16
6
Pin in the Map - "tinyurl for maps" rails app
Hi there, A little while ago we launched Pin in the Map (http://pininthemap.com), a rails application which allows you to easily mark a spot on a map, attach some text to it, and get a simple link to pass around. It''s basically tinyurl for maps. It''s proved useful for organising after-work drinks, meetings, weddings plus a whole variety of other things. http://pininthemap.com.
2016 Nov 29
2
RFC: Constructing StringRefs at compile time
char buffer[100]; And it also allows LIT(buffer) to compile, whereas the UDL doesn't. On Tue, Nov 29, 2016 at 9:54 AM Mehdi Amini <mehdi.amini at apple.com> wrote: > > > On Nov 29, 2016, at 9:52 AM, Malcolm Parsons <malcolm.parsons at gmail.com> > wrote: > > > > On 29 November 2016 at 17:38, Zachary Turner <zturner at google.com> wrote: > >>
2016 Nov 29
2
RFC: Constructing StringRefs at compile time
On 28 November 2016 at 20:51, Zachary Turner via llvm-dev <llvm-dev at lists.llvm.org> wrote: > The basic idea here is that you introduce a StringLiteral class and anywhere > you want to use a global constructor, you make sure to declare a constexpr > array instead of a normal array, and you make it of type StringLiteral. I prefer constexpr llvm_strlen() over StringLiteral because
2016 Nov 28
5
RFC: Constructing StringRefs at compile time
OK - good to know. (not sure we're talking about pessimizing it - just not adding a new/possible optimization, to be clear) Just out of curiosity - are there particular reasons you prefer or need to ship an MSVC built version, rather than a bootstrapped Clang? On Mon, Nov 28, 2016 at 9:24 AM Robinson, Paul <paul.robinson at sony.com> wrote: > So I wouldn't personally worry too
2016 Nov 24
3
RFC: Constructing StringRefs at compile time
Hi all, There is a desire to be able to create constexpr StringRefs to avoid static initializers for global tables of/containing StringRefs. Creating constexpr StringRefs isn't trivial as strlen isn't portably constexpr and std::char_traits<char>::length is only constexpr in C++17. Alp Toker tried to create constexpr StringRefs for strings literals by subclassing StringRef: