Saturday, March 21, 2015

History

Filled under:

The first websites were created in the early 1990s.[1] These sites were manually written in HTML.
Over time, software was created to help design web pages and by 1998 Dreamweaver had been established as the industry leader; however, some have criticized the quality of the code produced by such software as being overblown and reliant on tables. As the industry moved towards W3C standards, Dreamweaver and others were criticized for not being compliant.[2] Compliance has improved over time, but many professionals still prefer to write optimized markup by hand.
Open source tools were typically developed to the standards, and made fewer exceptions for the then dominant Internet Explorer's deviations from the standards. The W3Cstarted Amaya in 1996 to showcase Web technologies in a fully featured Web client. This was to provide a framework that integrated lots of W3C technologies in a single, consistent environment. Amaya started as an HTML and CSS editor and now supports XMLXHTMLMathML, and SVG.[3]
Geocities was one of the first more modern website builders that didn't require any technical skills. Five years after its launch in 1994 Yahoo! purchased it for $3.6B. After becoming technically outdated it was shut down for good in April 2009.[4] Since then the market for do-it-yourself website building tools has evolved with companies like Weebly,Wix.com and Webs.com. Together, these three companies host more than 100m websites.[5]

Posted By Unknown8:52 PM

Website Builder

Filled under:

Website builders are tools that allow the construction of websites without manual code editing. They fall into two categories:
  • online proprietary tools provided by web hosting companies. These are typically intended for users to build their private site. Some companies allow the site owner to install alternative tools (commercial or open source) - the more complex of these may also be described as Content Management Systems;
  • software which runs on a computer, creating pages offline and which can then publish these pages on any host. (These are often considered to be "website design software" rather than "website builders".)

Posted By Unknown8:51 PM

Developers

Filled under:

                                                                          
               Leader                                          Members    
                                                                   Mausam Pun
Rahul Thapa Magar                       Binaya Basnet                                                                                     Neetish Poudel
                                                                   Madav Prashad Ghimere
                                                                   Nita Subedi
                                                                                                                                                     

                                            

Posted By Unknown8:48 PM

Logo

Filled under:


We opened this site in 2015 A.D

Posted By Unknown7:00 PM

Monday, March 2, 2015

What We Do

Filled under:

Posted By Unknown3:04 AM

Welcome to Data Active Services

Filled under:

Welcome to Data Active Services. We are a specialist consultancy house and development company that deliver HTML5 Rich Internet Applications (RIAs) using advanced development frameworks  to enhance the speed and productivity of our work

Based in the Paphos area of Cyprus, we offer design, development and general web based support as well as industry standard qualified project management services business analysis and consultancy,. Whether you are a major corporate or a small one-man-band, we will have the skills that can support your business

                    What We do
Our focus is centred around high quality consulting, development, analysis and project management services, ensuring you are given leading expertise in the design and delivery of function rich, data heavy solutions that are more than just a pretty looking website - From custom Business Intelligence solutions through to complete on-line shops, we can service them all. 



Ensuring success is key to our customers and we continue to deliver value at a high level of productivity, meeting the needs of our clients.

Our core skillsets are split into the following areas:


  • Architecture design and development
  • Expertise in the leading RIA development frameworks
  • Java and the traditional java web development stacks
  • Experienced and proven track record in Project Management
  • Advanced Business Analysis and Requirements gathering services

Posted By Unknown3:01 AM

Friday, February 27, 2015

Difference Between Web Service and WCF

Filled under:


The Enterprise Integration Zone is brought to you in partnership with WSO2. Learn more about WSO2's API Management.
Overview
My previous article provided an Introduction to WCF  (Windows Communication Framework). Now we will discuss the differences between Web Services and WCF concepts.

Web Services (ASMX)
Web Services are used to send/receive messages using the Simple Object Access Protocol (SOAP) via HTTP only.

It is available in the namespace “System.Web.Services. WebService Class” with a constructor, methods, prosperities and events.

Code
using System;    
using System.Collections.Generic;    
using System.Web;    
using System.Web.Services;    
    
namespace HelloWorldServices    
{    
    /// <summary>    
    /// Summary description for Service1    
    /// </summary>    
    [WebService(Namespace = "http://tempuri.org/")]    
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]    
    [System.ComponentModel.ToolboxItem(false)]    
    public class Service1 : System.Web.Services.WebService    
    {    
    
        [WebMethod]    
        public string HelloWorld()    
        {    
            return "Hello World";    
        }    
    }    
}  
WCFWCF is used to exchange messages using any format via any transport protocol like HTTP, TCP/IP, MSMQ, Named Pipes and and so on. Its default format is SOAP.
Note: Microsoft Message Queuing (MSMQ) is a messaging queue services developed by Microsoft.
Simple Object Access Protocol (SOAP) is a messaging protocol developed by W3C.

Code: IService1.cs

using System;    
using System.Collections.Generic;    
using System.Linq;    
using System.Runtime.Serialization;    
using System.ServiceModel;    
using System.ServiceModel.Web;    
using System.Text;    
    
namespace HelloWorldWCFService    
{    
    // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.    
    [ServiceContract]    
    public interface IService1    
    {    
    
        [OperationContract]    
        string GetData(int value);    
    
        [OperationContract]    
        CompositeType GetDataUsingDataContract(CompositeType composite);    
    
        // TODO: Add your service operations here    
    }    
    
    
    // Use a data contract as illustrated in the sample below to add composite types to service operations.    
    [DataContract]    
    public class CompositeType    
    {    
        bool boolValue = true;    
        string stringValue = "Hello ";    
    
        [DataMember]    
        public bool BoolValue    
        {    
            get { return boolValue; }    
            set { boolValue = value; }    
        }    
    
        [DataMember]    
        public string StringValue    
        {    
            get { return stringValue; }    
            set { stringValue = value; }    
        }    
    }    
}    
Service1.svc 

using System;    
using System.Collections.Generic;    
using System.Linq;    
using System.Runtime.Serialization;    
using System.ServiceModel;    
using System.ServiceModel.Web;    
using System.Text;    
    
namespace HelloWorldWCFService    
{    
    // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in code, svc and config file together.    
    public class Service1 : IService1    
    {    
        public string GetData(int value)    
        {    
            return string.Format("You entered: {0}", value);    
        }    
    
        public CompositeType GetDataUsingDataContract(CompositeType composite)    
        {    
            if (composite == null)    
            {    
                throw new ArgumentNullException("composite");    
            }    
            if (composite.BoolValue)    
            {    
                composite.StringValue += "Suffix";    
            }    
            return composite;    
        }    
    }    
} 
Differences between Web Services and WCF Table
S.NumberFunctionsWCF
1It is available in the namespace "System.Web. Services.WebService Class"It is available in the namespace "System.ServiceModel"
2It is supported hosting only IISIt is supported hosting like IIS, Self Hosting (Console hosting), Windows Activation Services, Windows Services
3It is used for the XML Serializer onlyIt is used to DataContractSerializer only
4It is supported one-way communication and Request-ResponseIt is supported one-way, two-way (Duplex) communication and Request- Response
5It is supported binding like XML 1.0, Message Transmission Optimization Mechanism (MTOM), CustomIt is supported binding like XML 1.0, Message Transmission Optimization Mechanism (MTOM), Binary and Custom
6It is supported transport protocol like HTTP, TCP and customIt is the supported transport protocol like HTTP, TCP, Named Pipes, MSMQ, P2P and custom
7It is supported protocol securityIt is the supported protocol security, transaction and reliable message
Conclusion

This article will help to understand the differences between Web Services and WCF in .NET.

Posted By Unknown11:56 PM