Pages

Friday, April 26, 2013

Oracle 10g windows 7 64bit

When i run "sqlplus /nolog" in the command mode on my oracle server,it appear following error message.

SP2-1503: Unable to initialize Oracle call interface
SP2-0152: ORACLE may not be functioning properly

 solve this problem.
The reason that i can't run sqlplus is that the program can't find the oraociei10.dll.
So i copy the file to the path which define the environment variable PATH and i can run.

For DTS

ODTwithODAC1020221.exe

Saturday, March 16, 2013

SignalR Getting Started


ASP.NET SignalR is a new library for ASP.NET developers that simplifies the process of adding real-time web functionality to your applications. Real-time web functionality is the ability to have server-side code push content to connected clients instantly as it becomes available.
You may have heard of the HTML5 WebSocket API that enables efficient bidirectional communication between the browser and server. SignalR uses Websockets when it is supported by the browser and the server, and gracefully falls back to other techniques and technologies when it is not. Either way, your application code stays the same.
SignalR provides a simple ASP.NET API for creating server-to-client remote procedure calls (RPC) that call JavaScript functions in client browsers from server-side .NET code. SignalR also includes API for connection management (for instance, connect and disconnect events), grouping connections, and authorization.
http://www.asp.net/signalr