WSDL stands for Web Service Description Language, a standard by which a web service can tell clients what messages it accepts andwhich results it will return. WSDL contains every details regarding using web serviceMethod and Properties provided by web serviceURLs from which those method can be accessed. Data Types used. Communication Protocol used.This post will help you to program with WSDL without...
Sunday, 30 March 2008
Saturday, 15 March 2008
Multidimensional arrays in Javascript
Javascript has no inbuilt support for multidimensional arrays, however the language is flexible enough that you can emulate this behaviour easily by populating your arrays with separate arrays, creating a multi-level structure.You can create an array in Javascript simply by doing any of the following:var...
Wednesday, 12 March 2008
Migrating ASP.NET Site from IIS 6.0 to IIS 7.0
1. Remove the built-in Membership, Role and Profile providers If you are configuring your own Membership, Role or Profile providers with your own database connection string, make sure you remove the built-in ones or you may get an exception about not being able to connect to "LocalSqlServer". Which is the connection string used in machine.config for the stock providers. This did not happen under...
Monday, 10 March 2008
CSS Expression Optimization
CSS Expressions CSS expressions were introduced in Internet Explorer 5.0 and it allows you to to assign a JavaScript expression to a CSS property. For example, this allows you to set the position of an element according to the browser size. #myDiv { position: absolute; width: 100px; height: 100px; left: expression(document.body.offsetWidth - 110 + "px"); top:...
Thursday, 6 March 2008
Crystal Report 8.5 and SubReports (Reimport problems)
If you have a linked sub report in Main Crystal Report, every time you open the main report, it re imports the sub report if it founds the sub report in the same location. This is despite the fact that Re-import Subreports when Opening Reports check box is unchecked. This seems to me a bug. Similar bug in Crystal 10 has been reported on businessobject support web site.Clearing the 'Re-import Subreport...
Wednesday, 5 March 2008
Difference between NVARCHAR and VARCHAR in SQL Server
The broad range of data types in SQL Server can sometimes throw people through a loop, especially when the data types seem to be highly interchangeable. Two in particular that constantly spark questions are VARCHAR and NVARCHAR: what's the difference between the two, and how important is the difference? VARCHAR is an abbreviation for variable-length character string. It's a string of text characters...
Tuesday, 4 March 2008
SQL SERVER - Import CSV File Into SQL Server Using Bulk Insert - Load Comma Delimited File Into SQL Server
This is very common request recently - How to import CSV file into SQL Server? How to load CSV file into SQL Server Database Table? How to load comma delimited file into SQL Server? Let us see the solution in quick steps. CSV stands for Comma Separated Values, sometimes also called Comma Delimited...
SQL Query Analyzer Keyboard Shortcuts
This table displays the keyboard shortcuts available in SQL Query Analyzer. Activity Shortcut Bookmarks: Clear all bookmarks. CTRL-SHIFT-F2 Bookmarks: Insert or remove a bookmark (toggle). CTRL+F2 Bookmarks: Move to next bookmark. F2 Bookmarks: Move to previous bookmark. SHIFT+F2 Cancel a query. ALT+BREAK Connections: Connect. CTRL+O Connections: Disconnect. CTRL+F4 Connections: Disconnect...