0
votes
1answer
21 views
What is the use of TNS_ADMIN variable in Oracle?
Hi All,
Please tell me what is the use of TNS_ADMIN parameter in Oracle? I am working on Unix using oracle database.
Is this parameter is required to locate the sqlplus. I am executing a script in …
0
votes
2answers
26 views
Firebird connection problem after converting project from VS2005 to VS2008!
Hello,
I have a queer problem. I was working on a project with firebird 1.5.6 .NET provider and Visual Studio 2005. Everything worked fine. Then I converted the project to a VS2008 project. Now I …
0
votes
0answers
15 views
IE8 won’t display webpages unless ip address is given [closed]
After installing IE8 I could no longer browse to a webpage using its URL. If I enter the ip address then it connects. Also, I can't send/receive email via Outlook, which seems to be a related …
0
votes
5answers
87 views
read() function in socket programming in c
I use this code for reading from socket :
int n ;
char buffer[256];
n = read(newsockfd, buffer, 255);
if (n < 0)
{
error("ERROR reading from socket");
}
if the data that must …
1
vote
3answers
74 views
[C#] What is the correct way to close a TCP connection
I have a TcpClient object which sends some data to server, using its underlying NetworkStream.Write().
Therefor, I have:
TcpClient server = new TcpClient(serverName, 50001);
/* ... */
NetworkStream …
0
votes
3answers
22 views
which scenario in http transaction is occurred ?
In http transaction for request and response which scenario is occurred ?
client (web browser) open connection and send it's request and connection open (keep alive) until server accept and answer …
0
votes
1answer
12 views
asp.net no access to ConfigurationManager
I created one asp.net mvc application using linq to sql, and in the generated code it created this:
public ApowDataContext() :
…
0
votes
1answer
43 views
Setting up tomcat + ssl failed.. cannot connect to SSL channel?
Hi,
I'm trying to get Tomcat 6.0.20 working with SSL authentication. I used keytool to create a new certificate, put it into my user dir, and set the tomcat authentication to this (server.xml):
…
0
votes
3answers
39 views
Difference b/w connecting to SQL Server from ASP.net and Desktop application. In terms of CAL?
-What is difference between connection to SQL Server from ASP.net and Desktop application?
Why purchasing a Client Access License (CAL) for every device that accesses your server is not needed in …
0
votes
1answer
35 views
SQL Server single user mode
Im experiencing an issue with a production server. I can connect to the server from only one program at a time. Eg, when I connect from SQL Management Studio then nobody else can, and vice versa with …
1
vote
1answer
19 views
Display Problem with absolutepanel with gwt-connector
Hi,
I am trying to use GWT-Connector in one of my classes to create the connection point to the widgets. Here is what i have:
public class Test extends Composite{
RequiredData rd = new …
1
vote
10answers
167 views
MySql connection, can I leave it open?
Is it smart to keep the connection open throughout the entire session?
I made a C# application that connects to a MySql database, the program both reads and writes to it and the application has to be …
1
vote
2answers
29 views
how to Sort out Mysql odbc connection strings stored in registry as plain text
Mysql odbc connection string is stored in the windows registry as plain text. So someone can find it and view my database.
How can I sort out this security problem.
thanks
1
vote
3answers
62 views
HTTPS requests and multi-threading
Is Java's URL class a thread-safe, in particular URL.openConnection()?
In my application, I make tens of concurrent HTTPS connections a second to the same URL, and I would like to maximize object …
0
votes
3answers
34 views
Connecting to a MySQL database with C# express via ODBC
Hi,
I need to connect to a MySQL database via C# express 2008. I think I got the code right apart from the connection string. I obtained this code from a forum but the connection string was for …
