01Jun/17

Part 5: Create a Web Service in Eclipse

Part 5: Create a Web Service in Eclipse

This is the last part in a larger series that is tied together by a blog entry at http://pettergraff.blogspot.com/2010/11/developing-web-service-in-eclipse.html
Update: It seems something has happened to this video where the picture freezes around 7.10. I apologize for this problem. It has been problem free for more than a year and I have reported the problem to YouTube and am awaiting response for how to fix this problem……

31May/17

Branding: Nike & Apple Marketing Strategy

Branding: Nike & Apple Marketing Strategy

Subscribe:

https://www.youtube.com/c/BrianGJohnsonTV?sub_confirmation=1

What can we learn from Apple and Nike when it comes to marketing and branding?

Share this video:

Don’t just share your message.
Stake your claim and amplify it!

NEW VIDEOS: Wednesdays & Thursdays

I share the very strategies, tactics and rituals that have generated job ending results for myself and countless students. More importantly, my methods have allowed me to impact others in a positive way and they can help you to do the same.

Subscribe and join me!

Subscribe:

https://www.youtube.com/c/BrianGJohnsonTV?sub_confirmation=

Send Your Swag:

Brian G. Johnson
3630 Outback Vista Point
Colorado Springs, CO 80904

** All video and audio content created by myself and or used with permission from the creator.…

29May/17

Creating a High Converting Inbound Marketing Strategy

Creating a High Converting Inbound Marketing Strategy

Is your digital strategy strong enough to tackle the market challenges and deliver growth in this fast-changing consumer landscape?

Andrew Levy and Tony Eades from the BrandManager (Sydney/Perth) will teach you the most important online marketing trends and how you can craft an effective Inbound marketing strategy aimed at increasing web traffic, high qualified leads and sales revenue . You will also discover what the future of marketing looks like.…

28May/17

Webservices-Java Webservice API’s

Webservices-Java Webservice API’s

DURGASOFT is INDIA’s No.1 Software Training Center offers
online training on various technologies like JAVA, .NET ,
ANDROID,HADOOP,TESTING TOOLS , ADF, INFORMATICA, SAP…
courses from Hyderabad & Bangalore -India with Real Time Experts.
Mail us your requirements to durgasoftonlinetraining@gmail.com
so that our Supporting Team will arrange Demo Sessions.
Ph:Call +91-8885252627,+91-7207212428,+91-7207212427,+91-8096969696.
http://durgasoft.com
http://durgasoftonlinetraining.com
https://www.facebook.com/durgasoftware

Home


https://www.facebook.com/durgajobsinfo………

27May/17

[Online Marketing Strategy] The Difference Between Strategy & Tactics

[Online Marketing Strategy] The Difference Between Strategy & Tactics

http://CTCmarketing.co.uk Do you have an Online Marketing Strategy or are you operating at the level of ‘tactics’? Not having a solid understanding of the difference between online marketing ‘strategy’ and online marketing ‘tactics’ can mean the difference between ‘success’ and ‘failure’ online.
It’s time to raise your game – and your results!

online marketing stratetgy
online marketing strategies
online marketing tips
basics of marketing
marketing basics
marketing strategy examples…

26May/17

Using Spring 4 and AngularJS to develop web applications based on REST architecture

Using Spring 4 and AngularJS to develop web applications based on REST architecture

Конференция Soft Labs вышла на международный уровень – теперь она проходят на английском языке.

Предлагаем посмотреть доклад “Using Spring 4 and AngularJS to develop web applications based on REST architecture”, в котором рассматривается развитие современных приложений, основанных на RESTful API с использованием самых популярных современных фреймворков Spring MVC на стороне сервера и AngularJS на стороне клиента.

Докладчик – Владимир Сонькин – эксперт Luxoft Training в области разработки ПО на Java: http://www.luxoft-training.ru/about/experts/sonkin.html…

24May/17

Part 1 Introduction to asp net web services

Part 1 Introduction to asp net web services

Link for code samples used in the demo
http://csharp-video-tutorials.blogspot.com/2013/11/part-1-introduction-to-aspnet-web.html

Link for all dot net and sql server video tutorial playlists
http://www.youtube.com/user/kudvenkat/playlists

In this video, we will discuss
1. Creating a simple asp.net web service
2. Technologies (HTTP, XML, SOAP) that are used with asp.net web services

Please Note: ASMX web services are a legacy technology. Most of the companies are now using WCF (Windows Communication Foundation) to build XML Web services and XML Web service clients. However, this course will be useful for those who are searching for a job as a dot net developer as there are some companies still using ASMX web services today, and could ask interview questions related to them.

In WCF video series we will discuss building XML Web Services and clients.

What are web services and why should we use web services?
Web services are a standardized way for developing interoperable applications i.e enabling an application to invoke a method of another application. These applications can be on the same computer or different computers. Web services use open standards and protocols like HTTP, XML and SOAP. Since these are open and well known protocols, applications built on any platform can interoperate with web services. For example, a JAVA application can interoperate with a web service built using .NET. Similarly a web service built using JAVA can be consumed by a .NET application.

Hyper Text Transfer Protocol (HTTP) is the protocl widely used by web services to send and receive messages.
The messaging protocol is SOAP. SOAP stands for Simple Object Access Protocol. SOAP messages are in XML format.

Building ASP.NET web services
Building ASP.NET web services is easy. Here are the steps.
Step 1: Create a an ASP.NET Empty Web Application and name it WebServicesDemo.

Step 2: Right click on WebServicesDemo project in solution explorer and add – New Item. From the Add New Item dialog box select Web Service. Change the name of the WebService1.asmx to CalculatorWebServices.asmx.

Web Services have .asmx extension. For this reason web services are also often called as ASMX web services.

Notice that a webservice is a class that is decorated with [WebService] attribute and inherits from System.Web.Services.WebService base class. The [WebService] attribute tells that the this class contains the code for a web service. WebService Namespace is used to uniquely identify your web service on the internet from other services that are already there on the Web. WebService Namespace can be any string, but it is common to give it a company’s internet domain name as they are usually unique. Something like
[WebService(Namespace = “http://pragimtech.com/webservices”)]

It is not mandatory for a web service to inherit from System.Web.Services.WebService base class. However, if the web service has to use ASP.NET session or application state objects, then inheriting from System.Web.Services.WebService base class will provide direct access to these asp.net objects.

To allow a web service to be called from Javascript, using ASP.NET AJAX, then decorate the web service class with [System.Web.Script.Services.ScriptService] attribute. In a later video session, we will discuss calling a web service using asp.net AJAX.

Step 3: Copy and paste the following code in CalculatorWebServices.asmx
using System.Web.Services;
namespace WebServicesDemo
{
[WebService(Namespace = “http://pragimtech.com/webservices”)]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class CalculatorWebServices : System.Web.Services.WebService
{
[WebMethod]
public int Add(int firstNumber, int secondNumber)
{
return firstNumber + secondNumber;
}
}
}

Notice that, the CalculatorWebServices class contains a single method called Add(). This method adds 2 numbers and return the sum. This method is decorated with [WebMethod] attribute. If you want the method exposed as part of the Web service, then the method must be public and should be decorated with [WebMethod] attribute. This attribute has got several properties which can be used to configure the behavior of the XML Web service method. We will discuss these properties in a later video session.

At this point we are done building a web service. Run the application by pressing CTRL + F5.

Notice that the Add() method that we created in the web service is displayed on the page. Clicking on the method name will take you to page where you can test the method. This page also shows the format of the SOAP request and response messages.

SOAP 1.2 is a new version with some major changes. For all the differences between them please refer to the following link
http://www.w3.org/2003/06/soap11-soap12.html…

23May/17

eTalks – The Secrets of Food Marketing

eTalks – The Secrets of Food Marketing

Think you aren’t being fooled by advertising tricks?

Take a look at this so-called expert revealing food marketing’s secret weapon.

No amount of marketing makes factory farming acceptable. You can stop the spin at http://www.ciwf.org.uk/truth

——————————-

This film was created by Catsnake (catsnake.com) for Compassion in World Farming (CiWF – ciwf.org.uk). For more information, please visit: ciwf.org.uk/truth
We would like to give a big thank you to all those who helped with the project and the individuals who assisted in bringing the project to life:
Cast:
Actress: Kate Miles
Crew:
Director: Edward L. Dark
Writer: Stephen Follows
Producer: Lucy Fazey
Executive Producers: Stephen Follows & Edward L Dark
Editor: Rob Garwood
Casting Director: Annelie Powell
Production Designer: Jenny Ray
Graphic Designer: Vincent Chatell
Stage Manager: Gareth Weaver
Costume: Giulia Scrimineri
Camera Operator: Steve Brook-Smith
Camera Operator: Anthony Gurner
Camera Operator: George Simpson
Sound Recordist: Sean Plunkett
Production Assistant: Lauren Allen
On Set Runner: Jessica Zuniga
Speakers and Performers:
Host: Tom Allen
Paleoanthropologist: Ella Murray
Astrophysicist: Ricarda Beckmann
Burlesque Dancer: Scarlette Belle
Shot on Location at: The Yard Theatre in Hackney Wick…