anonymous

SharePoint site asking username & password , how to avoid ?

I create the sharepoint team site. It asking for username & Password . I want to avoid for asking it.Also want to accsess site without uname & pwd from outside (globally).help please ...

Allow anonymous access to SQL Server 2008

I need to set up a "throw-away" instance of SQL Server 2008 for students to test a program for a few weeks. SQL Server 2008 is running on a virtual instance of Windows Server 2008. The server is not a member of the domain. The client computers that need to connect to the SQL Server are domain members, as are the student accounts. The cli...

how to call anonymous delegate dynamically

I hava a delegate public delegate void Context(); And i had implemented it by anonymous method, public Context fakeHttpContext = () => { ... create fake http context. }; I dont' want to execute the fakeHttpContext by fakeHttpContext.Invoke() I wonder if i could invoke it by ...

C# - Determine property type at runtime

Here is what I want to do: public [type determined at runtime] ImageToShow { get { if(this.IsWebContext) { return this.GetString(); } else { return this.GetBitmap(); } } } At first look it seems simple and doable if T was the generic type which with instance of this class was created. But w...

Query configuring IE to use a proxy server

If i configure internet explorer to use a proxy server, Does the website which i surf, will be hidden from the system administrator of my lan? Will my ip will hidden to the website administrators of the browsing website ? ...

SmartPart and anonymous access

I have a page with anonymous access. This page work normal. After i add SmartPart to page and configure it to show my ascx. This work normal too, i open this page and see my ascx but when i try to click button in this control i see prompt for login and password ... Maybe anybody know how to fix this issue? ...

Web Anonymizer in Java

Hi everyone, I'm trying to implement a Web Anonymizer (like ktunnel) in java, but I really could not get the idea, I need some information about how a web anonymizer works. I really do not need the source or a sample application, just the idea or a tutorial explaining the anonymizer idea. Thanks. ...

How can anonymous users exchange presence information with valid users on Jabber (Ejabberd)

Hi, I am working on a social network that should allow members to chat with visitors on the site. The concept is simple. Users who have registered signup get their own account with rosters When a visitor comes to the home page of the social network, he can see some of the online members of the community Now he should be able to initia...

Reference to Public Enum results in Anonymous Class

I'm getting an anonymous class at compile-time that I'm not expecting. Relevant code follows, then a more detailed explanation: Entirety of CircuitType.java: public enum CircuitType { V110A20, V110A30, V208A20, V208A30 } From Auditor.java, lines 3-9: public class Auditor { private String[] fileNames; private int numV110A20; ...

How to use anonymous structs / unions in c?

I can do this in c++/g++: struct vec3 { union { struct { float x, y, z; }; float xyz[3]; }; }; Then, vec3 v; assert(&v.xyz[0] == &v.x); assert(&v.xyz[1] == &v.y); assert(&v.xyz[2] == &v.z); will work. How does one do this in c with gcc? I have typedef struct { union { st...

how to call method without knowing the class name?

I have defined two classes below. public class junk { private BigInteger a = BigIngeger.valueOf(1), b=BigInteger.valueOf(2), c; public void DoSomething(){ c = a.add(b); } // ... other stuff here } public class junkChild extends junk{ private BigDecimal a = BigDecimal.valueOf(1), b=BigDecimal.valueOf(2), c;...

Anonymous methods with return type in .Net

Hi All, This is a question for my curiosity really, as i know there are other ways to work around the problem. I have a property on my "Item" class - "MyProperty" - that I want to evaluate. I want to iterate through the collection - "MyItemCollection" - , and if there is an "Item" class whos property "MyProperty" is not nothing i...

Adding an artificial row to an anonymous Linq resultset

I'm wondering what the best approach to adding an artificial row to an anonymous linq result set would be. I have a linq statement which uses "select new" to form the data required. Each record comes back as an anonymous object with ID and Name properties. However, I require that the first row of the data becomes an object with ID = NUL...

How to initialise the second member of an anonymous structure in C?

I have made a structure for ints and pointers etc. as might be used in LISP. A pointer is at least 8-byte aligned so tag=0. An integer is 29 bits and has a tag of 1. Other types have different tag values. struct Atom{ union{ Pair *pair; struct{ unsigned tag :3; union{ int ...

Struggling to translate SQL Query to Linq in a Domain Services Class and Entity Data Model

Visual Studio 2008 | Silverlight 3 | SQL Server 2005 | Domain Services Class | Entity Data Model I have a database table "Students" with columns FirstName, LastName, Semester, ProgramOfStudy, Column etc....... The goal is to return a Total (number of students grouped by first letter of lastname), based on the first letter of the lastna...

Reset page library permission for anonymouse user in SharePoint

In the Site Collection level there is a Page library, which has been created along with the whole site. I didn't touch it for long time until recently I added new content types, modified some page layouts and master pages using a solution file. When accessing the home page using the site configured for anonymouse user it failed with "401...

Anonymous arrays in BeanShell.

Is there a syntax for declaring anonymous arrays in BeanShell? I would like to write code analogous to the following: print(Arrays.asList("cat", "dog")) but BeanShell fails to find the "asList" method, presumably because it doesn't understand varargs. As a workaround, I could write: print(Arrays.asList(new Object[]{"cat", "dog"})) ...

How to load roles from database for anonymous user in spring security 3 ?

Hello, I'm using Spring Security 3.0.2 and I can't find a way to load roles of anonymous user from database (I've got dynamic roles where roles can be given to everyone). I've tried to use a custom anonymousAuthenticationProvider but this provider is never called. Here is my config: <http auto-config="false"> <logout invalidate-se...

Silverlight datagrid don't show any data with anonymous query RIA services

Hi all! I have an anonymous linq query that I bind to a datagrid, when I debug it brings alright the data but it doesn't show in the datagrid, I suspect that the request to RIA services isn't completed before I bound it to the datagrid. I could use the LoadOperation<>() Completed event. But it only works with Defined Entities so how can ...

Ejabberd Issue - Anonymous user can send presence stanza to roster member

I was under the assumption that an anonymous user cannot send a presence stanza to a registered user without a subscription. But using Ejabberd 2.1.2 this is happening. How can i stop anonymous users from sending presence stanzas to registered users? ...