Is This A Secure Method Of Providing Service For Database Applications
May 10, 2012
WinFormsApp Login passes information to .php (server based) Login (provided credentials are correct) to DB to retrieve Decryption Key. WinFormsApp then uses Decryption key on Hardcoded encrypted connection string and renders application usable.This would then eliminate the necessity to encrypt/decrypt a connection string at runtime, virtually rendering any unauthorized person with a useless software.
View 1 Replies
ADVERTISEMENT
Feb 23, 2011
I don't want my programs to be cracked. I have this simple authorization system that prompts my users to enter their forum credentials (I have a forum and the users must be registered members to use the programs).So I made a php script that will take in 3 strings sent in by my applications and it will check against the database if that user exists and is of the proper group and it will display a message on the page and my application then looks for the response in the page source which says if this particular user is allowed to use the program or not.
View 4 Replies
Dec 2, 2009
I am going to be creating a web service that will be passing confidential information across the network.
What would be the best way to secure the web service? how do I know if the application requesting the information is who it says it is, and it's not another application that is using another's user name and password?
View 4 Replies
Apr 12, 2010
I am programming a service for a company that will log valuable performance data on machines that they lease out to other companies. It is critical for them that this information is as safe as possible and that it can only be read by us (a program created by us that is). I already made a trippledes encryptor that works fine but i still have the issue that a person can delete or move or corrupt the file if he somehow manages to get out of the operation software and gain acces to it.So my question is: Can i lockdown a file and make it as good as impossible to change the file or delete it other then by being the admin or the program that is generating them?
View 1 Replies
Aug 15, 2011
how to connect different vb applications to a database server.like accessing data from one database by different applications...
View 4 Replies
Jun 26, 2010
I recently made a small app for a friend and then made it a public app, in doing so I forgot that it connects to my MS SQL DB and checks for values. Someone used Red Gate .Net Reflector to get my password and destroy it all. I've contacted their ISP and they are looking into it, apparently this person has a static ip with them.So this is a lesson learned at a heavy price for me. How can I prevent this from happening again? How can I get away from the unsafe connection string they were able to use?
View 5 Replies
Nov 3, 2011
What is the most secure way to create an ASP.NET 3.5/4.0 login page connection to an SQL database.
View 2 Replies
Mar 13, 2010
How can I Access the Enty point method of Form Based Applications?How can I set their attributes?
View 2 Replies
Apr 28, 2009
I m working on a project using vs2008+vb+sqlserver 2008. How can i secure my database, so that user can't see the structure of my database. I mean she shld not able to see tables and fields of my database. Is it possible in sqlserver2008?
View 9 Replies
Aug 1, 2010
Busy to connect a secure access 2003 database (with a mdw file) to a datagridview but we don't know where we have to place the mdw file in the (advanced) properties
View 3 Replies
Oct 9, 2011
i have a program that connects to mysql database to check username/password.I have a line like this in the project:
conn = New MySqlConnection("server=myserver.info;Port=3306; user id=dbusername; password=dbpassword; database=dbname")Anyways, a user managed to get this info from the program
How can i make it so they can NOT grab this info from the program ?
View 12 Replies
May 15, 2012
I have a asp.net web application with jquery controls. I have a datagrid that will display data from a database table and created a WCF Service to access the db and return the data. I want to be able to call the WCF service from this application which is on a different server and have the xml data returned, converted to json format to be used in the datagrid which is a jquery widget. I have tested the web service and it works fine. Should I call the web service from the javascript function within the xml or create a .net method behind that calls the service and then does the conversion? From these how would I get started?
View 1 Replies
Oct 12, 2011
how could im set response status in Asp.net Web service method? [code]i want to return 500 status code in response how can i do it ?
View 1 Replies
Apr 2, 2009
Im trying to logically figure out how to update a record in a database through a web service to the database I have created this web method function but im stuck on completing this
[Code]...
View 1 Replies
Apr 26, 2010
I have written up troubleshooting documents for my project and would like them included in my program. I remember in VB6 there was a very easy way to do this with a control, where it already has the help document tree set up on the left and you just set it to point to certain files.
Does something like this exist for .NET? I am aware of the HelpProvider control but as far as I know this just puts in tooltips and opens documents on a button press?
View 1 Replies
May 25, 2011
Is it possible to somehow invoke foo("SomeAwesomeString") from VBScript directly (i.e., without it having to launch an additional process)?
The use case is this: I am trying to write an 'extension' application for hMailServer (hMS), but hMS can only invoke VBscript scripts when an event happened. I can have the VBscript launch an .exe every time the event happened, but the processing involve opening and closing a connection to a back-end database. So, every invocation is very expensive. I had been thinking that I can reduce the expense by having a Service to maintain the connection (i.e., opening it once and re-open it if the connection closed). Plus by implementing the processing as background worker threads will result in a non-blocking processing + less process-starting overhead.
View 3 Replies
Nov 18, 2011
I have a windows service application to send emails.The same code works well with windows application but not with windows service.
Private Sub Timer_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Timer.Elapsed
EventLog.WriteEntry("Started!!!!")
Dim cmd As System.Data.OleDb.OleDbCommand[code].....
View 1 Replies
May 16, 2012
I ve got a Problem with a Webservice. I ve Scripted it in VB.net -- Please has anybody an Idea
why this happens -- I can't find the Problem
[Code]...
View 11 Replies
Feb 20, 2012
How do you provide an image to the program, so the program finds that image on the screen and tells its coordinates. So if I was to provide an image of the start button, the program would tell the coordinates like (2,1000) or something similar.
View 13 Replies
Aug 19, 2009
Consider the following :
Dim Length1 As Double = (10* 12) + 5
Dim SqFt1 As Double = 0.0
Dim length2 As Double = Length1 / 12.0
Dim tape As Double = CType(210.0, Double)
'Length2 at this point has a value = 10.41666
SqFt1 = CType(length2 * tape, Double)
[Code]...
View 5 Replies
Jun 29, 2009
I have a Person.Profile table with columns like
PersonType (Student, Employee)
____ (Male, Female)
MaritalStatus (Single, Married, Widow, Separated)
[code].....
View 3 Replies
Aug 13, 2009
I have a Deployment project which creates an MSI setup file to install a service. (VB .NET) I have a reference to another project which is a win form application and has a setup form which takes the user name, password and some other settings information which will be used by a service. It has "Finish" and "Cancel" buttons. I am creating a new instance of this form on Sub New() of the ProjectInstaller Class, so user can input information, click Finish and installation completes. The service is then automatically started. Now, when I click Cancel on the settings form, I am not able to exit out and halt the installation process. Instead it installs the service !! How can I use the Rollback or Uninstall methods to do the task? I was trying this -
On cancel_click, set boolean var cacelStatus = True
On Sub New() method of ProjectInstaller class, I am checking - If true - uninstall, else - install
How can I achieve this?
View 1 Replies
Mar 13, 2012
Can i copy files into folders without providing full name of the file? Different files will be distributed into different folder, my files have current date at the end, it also has split before the date. I would like to copy the files name before the split. Here is an example
[Code]....
View 8 Replies
Feb 4, 2010
is it possible to use same database for both vb.net appplication and asp.net??and if is possible, how can to connect it?now..i'd build vb.net application and asp.net in my laptop...it can connect..but i wonder how to make the database connect for vb.net and asp.net in real..
View 2 Replies
Mar 6, 2011
im using ms access 2003 and vb 2010, i already have 3 different vb apps, and i want to access a single database over the lan. but i dont know how. is this possible using a client-server type or is there much simpler way to access the database?
View 4 Replies
Feb 11, 2011
I'm having different results when running openfiles.exe manually than when I run it with Process.start() Below is the portion of code making the call. I have read in several places that using the "runas" verb might make a difference since I am running on Win 7 x64, however I am still experiencing different results.
[Code]...
View 1 Replies
May 11, 2009
which method is more efficient to use: DataAdapter and DataSet Or DataReader when importing data from a certain database table???
View 6 Replies
Feb 6, 2010
I'm a first time visitor and poster, but I'm definitly going to stick around. I'm running an old version of Visual Studio .Net Academic 2002 and the .Net framework 2.0. I'm stuck on an issue regarding the deployment of a few programs I've thrown together. They all work fine on my development machine, but the problem they all use SQL Server databases, and I can't find any specific help on deploying a windows application with a database on a machine that isn't set up basically just like my development machine.
I know that I need the .net runtime bootstrapper on the target machine, so I can run basic programs that dont use SQL databases. That's no problem. But what about programs that make heavy use of databases? How does one go about deploying it on target machines? Is there a SQL server bootstrapper?
[Code]...
View 3 Replies
Mar 28, 2009
Recently i had a discussion with someone about the proper way to develop a database driven (SQL Server) application.In his opinion i should design also the database inside the application.At this moment i design the database in SQL Managaement tool and use a custom class to connect to this database (or the one of the client) in my application.What are the cons and pro's of using the VS database designer inside my IDE?
View 4 Replies
Jul 5, 2009
What is the difference between a local database and a Service-based database? I read the MSDN and searched the Inet.
View 4 Replies