473,785 Members | 2,219 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SqlClientPermis sion error

mmb
hi all
i used this below function to connect to sql server 2k

[SqlClientPermis sion (SecurityAction .Assert ,Unrestricted=t rue)]
private void button1_Click(o bject sender, System.EventArg s e)
{
try
{
SqlClientPermis sion myPerm = new SqlClientPermis sion(Permission State.Unrestric ted);
myPerm.Assert() ;
myPerm.AllowBla nkPassword=true ;
string str;
str= "data source=sniper;i nitial catalog=newzolf ;persist security info=False;user id=zolf;" +
"password=1;pac ket size=4096";
SqlConnection cnn=new SqlConnection(s tr);
SqlCommand cmd=new SqlCommand("sel ect * from article",cnn);
cnn.Open();
MessageBox.Show ("3");
DataSet ds=new DataSet();
MessageBox.Show ("4");
SqlDataAdapter da=new SqlDataAdapter( cmd);
MessageBox.Show ("5");
da.Fill(ds);
MessageBox.Show ("Sucess");
}
catch(Exception ex)
{
MessageBox.Show (ex.Message);
}
}
when run application on own computer work truly
but when copy the EXE file to shred folder this error accoured

Request for the permission of type System.Data.Sql Client.SqlClien tPermission, System.Data, Version=1.0.500 0.0, Culture=neutral , PublicKeyToken= b77a5c561934e08 9 failed.

why this error accour?

"i am used SqlClientPermis sion "

thanx in advance.
Jul 21 '05 #1
3 4497
mmb <my***@yahoo.co m> wrote:
<snip>
Request for the permission of type
System.Data.Sql Client.SqlClien tPermission, System.Data,
Version=1.0.500 0.0, Culture=neutral , PublicKeyToken= b77a5c561934e08 9
failed.

why this error accour?


When you run code from the network, by default it won't be trusted as
much as purely local apps. If you want to change that, go into your
administrative tool for the computer and change the .NET configuration.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #2
Thanx for your answe
but how can set .net SqlClientPermis sion in runtime
my code not wor
[SqlClientPermis sion (SecurityAction .Assert ,Unrestricted=t rue)
private void button1_Click(o bject sender, System.EventArg s e

tr

SqlClientPermis sion myPerm = new SqlClientPermis sion(Permission State.Unrestric ted)
myPerm.Assert() ;
myPerm.AllowBla nkPassword=true
string str
str= "data source=sniper;i nitial catalog=newzolf ;persist security info=False;user id=zolf;"
"password=1;pac ket size=4096"
SqlConnection cnn=new SqlConnection(s tr)
SqlCommand cmd=new SqlCommand("sel ect * from article",cnn)
cnn.Open()
MessageBox.Show ("3")
DataSet ds=new DataSet()
MessageBox.Show ("4")
SqlDataAdapter da=new SqlDataAdapter( cmd)
MessageBox.Show ("5")
da.Fill(ds)
MessageBox.Show ("Sucess")

catch(Exception ex

MessageBox.Show (ex.Message)

Jul 21 '05 #3
mmb
Thanx for your answe
but how can set .net SqlClientPermis sion in runtime
my code not wor
[SqlClientPermis sion (SecurityAction .Assert ,Unrestricted=t rue)
private void button1_Click(o bject sender, System.EventArg s e

tr

SqlClientPermis sion myPerm = new SqlClientPermis sion(Permission State.Unrestric ted)
myPerm.Assert() ;
myPerm.AllowBla nkPassword=true
string str
str= "data source=sniper;i nitial catalog=newzolf ;persist security info=False;user id=zolf;"
"password=1;pac ket size=4096"
SqlConnection cnn=new SqlConnection(s tr)
SqlCommand cmd=new SqlCommand("sel ect * from article",cnn)
cnn.Open()
MessageBox.Show ("3")
DataSet ds=new DataSet()
MessageBox.Show ("4")
SqlDataAdapter da=new SqlDataAdapter( cmd)
MessageBox.Show ("5")
da.Fill(ds)
MessageBox.Show ("Sucess")

catch(Exception ex

MessageBox.Show (ex.Message)


Jul 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1374
by: Jay W NOjwalkerSPAM | last post by:
I have some class objects each in separate projects that belong to a solution. The projects reference one another within that solution. The 'main' function calls the other procedure/function (different projects) that perform all the database work and manipulations to return a dataset to the instantiating code. This solution works without error. I am trying to build another solution that will use those same projects. The build is...
1
1796
by: Dave | last post by:
I have a ASP.net application that work fine with IIS 5.0. I'm trying to put it on IIS 6.0. And getting the following error. ASP is enable It is in a virtual directory - I also follow the direction in Microsoft Knowledge Base Article - 320268
4
1877
by: António Pinho | last post by:
Hi, I have a big problem with an webpart/assembly. i'm trying to connect to sql server but i get the error "Request for the permission of type System.Data.SqlClient.SqlClientPermission, System.Data, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 failed.". i've searched for it and can't find a clear answer. but one thing i'm sure: permissions. if i change the trust level in the web.config of the sharepoint portal...
3
893
by: mmb | last post by:
hi all i used this below function to connect to sql server 2k private void button1_Click(object sender, System.EventArgs e) { try { SqlClientPermission myPerm = new SqlClientPermission(PermissionState.Unrestricted); myPerm.Assert();
0
1087
by: apramodk | last post by:
environmnet : VB.NET (.Net 2.0) I am trying run a windows application from a Network. While connecting to SQL Server, I get the following error. Request for the permission of type 'System.Data.SqlClient.SqlClientPermission, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
1
7520
by: goc | last post by:
I have a Web Farm, that fetches its database-data from a separate database-server. Today I was forced to go over to .NET 2.0 (since 1.1 can't be installed on Windows Vista x64), and it brought about quite alot of problems. But now I've sorted out everything except one problem that I just can't get to disappear: As soon as I try to connect to a database from my code and run a query, I get an exception thrown: Check: Request for the...
0
1142
by: sumguyb | last post by:
I've written a Windows application using VB and Visual Studio 2005. I've used the Data Application Block in the Microsoft Enterprise Library 2.0 to make all of my SQL calls. The application runs fine on my local machine but throws a CAS error on client machines that says: Request for the permission of type System.Data.SqlClient.SqlClientPermission
1
2840
by: sumguyb | last post by:
I've written a Windows application using VB and Visual Studio 2005. I've used the Data Application Block in the Microsoft Enterprise Library 2.0 to make all of my SQL calls. The application runs fine on my local machine but throws a CAS error on client machines that says: Request for the permission of type System.Data.SqlClient.SqlClientPermission
0
1598
by: JoaquimC | last post by:
Hello all, I've a C# application connecting to a SQL Server 2005 DataBase and it all works well in development ambient. I'm developing with Visual Studio 2005 and i can connect to the DataBase with no problem. The problem is: when i try to run the application directly from the exe file, every time there is a connection to the same database (and with exactly the same connection string) that i connected with no problem in development...
0
9646
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9483
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10346
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9956
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8982
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7504
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6742
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5386
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5514
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.