anonymous

efficient ways to anonymous personalization using ASP.NET + Cookie

Hi all: I am trying to achieve anonymous personalization in a ASP.net environment. I know that ASP.NET 2.0 provide Profile. However, I want to avoid traffic to the database as much as possible since the site I am working on is a relatively high traffic site. The other obvious solution is cookie, but given the limitation of cookie, I w...

Acegi Security: How do i add another GrantedAuthority to Authentication to anonymous user

i give users special URL with access key in it. users accessing the public page via this special url should be able to see some additional data as compared to simple anonymous user. i want to give some additional role to anonymous user based on parameters provided in request so i can do something like this in my template: <@sec.author...

IIS Anonymous user authentication doesn't work with AD credentials

I have an asp.net application directory, and I want to use anonymous authentication in the Directory Sercurity tab. If I use the pre-Windows 2000 style DOMAIN\USERNAME for the username, everything is fine. If I use the AD-style (UPN) [email protected], then I get a 401.1 failed login. I've tried a number of variations, but can't ge...

Office documents prompt for login in anonymous SharePoint site

I have a MOSS 07 site that is configured for anonymous access. There is a document library within this site that also has anonymous access enabled. When an anonymous user clicks on a PDF file in this library, he or she can read or download it with no problem. When a user clicks on an Office document, he or she is prompted with a login bo...

Can an anonymous object be declared static in C++ ?

Is this allowed? : class A; void foo() { static A(); } I get signal 11 when I try to do it, but the following works fine: class A; void foo() { static A a; } Thank you. ...

AjaxUploader.dll works with Anonymous authentication, fails with Integrated Windows

Administering an IIS6 host for client who is new to an Ajax Upload tool obtained from here: http://ajaxuploader.com/ http://cutesoft.net When Integrated Windows Authentication is enabled, a single file upload works fine, multi-file upload attempts don't appear to progress (but don't log any errors, that I've found yet..?). Modifying Au...

Clear anonymousIdentification?

Is there an API to clear anonymous cookie? ...

WPF ListBox ListCollectionView anonymous type navigation problem

Example of problem: Framework: WPF Visual control: DataGrid from CodePlex public Window() { InitializeComponent(); var listView = new ListCollectionView( new[] { new { Bool = false, Str = "Value1" }, new { Bool = false, Str = "Value1" }...

How can I support anonymous users with my application?

I need to implement a user authentication system that supports anonymous users, like how this site works. Can it be done with the default asp.net membership provider? if not, what are some of the things I need to do? ...

Anonymous SharePoint Users and people search core results web part

Hi Can anyone tell me how to allow anonymous SharePoint MOSS users to view people search core results web parts? When they try to access pages containing this web part, they are prompted to login. All the best ...

UML for OCaml immediate objects

I have created an immediate object in OCaml. let x = object (self) val dataMember = 3 method aMethod = print_endline "Called a method" end;; As the object doesn't have a name (is it considered anonymous?), how can it be correctly represented in UML? Thanks. ...

Best way to send anonymous email like craigslist

Hi, Craigslist has a nice feature where when you respond to a poster you respond to an email such as [email protected]. The email is then in turn directed to the real email. I am looking for a couple pointers on how to do this with PHP. Thanks, Levi ...

Anonymous Web Hosting

How do I host a website for the public, but cannot be traced back to a single IP address? I was thinking that if there was such a system like this, it would be possible for websites like Wikileaks to not be shutdown. I took a look at I2P but it seems like it requires people to install a big fat Java client to visit websites on the net...

sharepoint public form

Hi, I have a MOSS 2007 running a site that has a public facing form that any anonymous user can fill and save. But I require that only blank forms are visible to anonymous user and that the forms filled up by other users are not visible/accesible to anonymous users. For that I have a form library(form1) that is authentication-protected,...

java anonymous classes and synchronization and "this"

hi all, I am dealing with a race condition, I believe, in my JAVA GUI. I have some methods that create an "anonymous method" inside an anonymous class like this: synchronized foo() { someMethod(new TimerTask() { public synchronized run() { //stuff } }; } QUESTION: is that...

Why would I use Perl anonymous subroutines instead of a named one?

I'm just curious why one would choose to use an anonymous subroutine, versus a named one, in Perl. Thanks. ...

What is the system that allows for anonymous pictures portraits?

Anyone knows what is the system that allow blogs / websites to generate a random picture for anonymous commenters? Its always the same picture if you input the same name and email, seems very useful but can't track down what it is. It's used here on stackoverflow, and I've seen it on a number of other sites and blogs. Thanks! ...

Closures for anonymous methods in C# 3.0

Why do closures exist for anonymous methods? Why not just pass state into the method without the overhead of a new class being generated with the closure variables being copied in? Isn't this just a throwback to "making everything global?" Someone talk me down, I feel like i'm missing something here... ...

Global const string& smells bad to me, is it truly safe?

I'm reviewing a collegue's code, and I see he has several constants defined in the global scope as: const string& SomeConstant = "This is some constant text"; Personally, this smells bad to me because the reference is referring to what I'm assuming is an "anonymous" object constructed from the given char array. Syntactically, it's le...

How to write my own proxy, anonymizer and host it to help when websites are blocked at work

I work as a contractor/freelancer. At most client sites a lot of websites are blocked. Specifically Gmail and Facebook which I really would like access to while on assignment. I know there are a lot of proxy/anonymiser websites out there that allow you to use their website to circumvent the website filtering of the business IT policy bu...