Sign In
Sumit Amar
Research and Development
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
ASP.NET
Augmented Reality
Hardware
HCI
JavaScript
Natural User Interfaces
Pages
S/AJAX
SQL/Server
Web Services
Archive
Archives
April 2010
(1)
March 2009
(2)
January 2008
(1)
March 2007
(1)
October 2006
(1)
February 2006
(1)
September 2005
(2)
June 2005
(9)
May 2005
(1)
June, 2005
MSDN Blogs
>
Sumit Amar
>
June, 2005
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Sumit Amar
Encrypt at client side and decrypt at server
Posted
over 7 years ago
by
Volcanic
2
Comments
There might be situations where the content from thin client that is accessible via internet, needs to be encrypted (without storing the encryption logic at the client) and subsequently be decrypted on the server side code that doesn't run on SSL. Here...
Sumit Amar
Web Services: Revolutionize your business
Posted
over 7 years ago
by
Volcanic
2
Comments
Industry is talking of Web Services to the height of Petronas Towers. For an IT professional unaware of Web Services following questions come up, 1. How practical is it when it comes to implementation? 2. Are they real, or hype? 3. Why Web Services? 4...
Sumit Amar
Publish, Discover and Invoke Web Services using SOAP and UDDI
Posted
over 7 years ago
by
Volcanic
0
Comments
Introduction The project contains code that allows to Describe, Discover and Invoke a web service in .NET using SOAP SDK 3.0 and UDDI SDK 2.0 beta on .NET SDK 1.1. Background UDDI (Universal Description Discovery and Integration) is a standard that defines...
Sumit Amar
Retrieving SOAP Envelope from WebException
Posted
over 7 years ago
by
Volcanic
0
Comments
Web Services might be invoked using HttpWebRequest. If the invocation raises a service specific exception, the WebException’s Message property gives “Internal Server Error (500)”. There exists a need to parse the WebException object to retrieve the original...
Sumit Amar
Granting EXECUTE privilege on group of stored procedures to a specified user
Posted
over 7 years ago
by
Volcanic
0
Comments
CREATE proc grants(@procs varchar(100),@user varchar(100)) as declare curse cursor for select name from sysobjects where type='P' and name like @procs OPEN CURSE declare @proc varchar(100) declare @stmt nvarchar(200) fetch next from curse into @proc while...
Sumit Amar
Working with custom sections in app|web.config
Posted
over 7 years ago
by
Volcanic
0
Comments
Requirement may arise to define a custom section in app.config or web.config configuration file(s), to load a related but dynamic data for configuration purpose. Following is an example of how this can be achieved; element contains a sub element where...
Sumit Amar
Intercepting Downloads in ASP.NET
Posted
over 7 years ago
by
Volcanic
0
Comments
There might be general situations when developer needs to provide a download link to users for any kind of document that may include but not limited to doc, pdf, zip etc. However, the scenarios do exist when developer wants to authenticate the users before...
Sumit Amar
Selecting XML nodes defined with namespaces
Posted
over 7 years ago
by
Volcanic
0
Comments
While isolating nodes with custom namespace definition, it might be problematic to retrieve the nodes using XPath (SelectSingleNode or SelectNodes methods). Because if the target XML document contains a URN prefix in the node, that has to be defined and...
Sumit Amar
HTA (HyperText Applications): Caveats and Features
Posted
over 7 years ago
by
Volcanic
2
Comments
Caveats: 1. Security: HTAs bypass the Internet Explorer's advanced settings to disable/enable active scripting, which leads to vulnerability in system to malfunction. However, since the HTAs interact with local system (using ActiveXObjects) for file/DB...
Page 1 of 1 (9 items)