Mefeedia - find, watch, and share online video
Discover the Video Web™

 

 
Search across 15,000 video sources.
 

Web Services Videos
newest 100 web services videos / web services widgets / media rss: Video feed for web services

(What is web_services? - Edit Wiki)

Videos 1 to 30
WCF and AIF in Dynamics 2009: Chatting with Michael MerzWCF and AIF in Dynamics 2009: Chatting with Michael Merz
from Channel 9
September 29, 2008

In this video I’m back on the Advanta campus chatting with Michael Merz, Program Manager for Application Integration Framework (AIF) on the Dynamics AX team. AIF is a standards-based framework that allows you to publish and consume web services.  It’s used primarily in integration scenarios when connecting Dynamics AX with other systems.  AX also has .NET Business Connector (BC.NET) for integrating with .NET applications.  BC.NET is more for client side integration.  AIF is all about web services and is completely standards-based. Under the covers AIF takes full advantage of .NET using Windows Communication Foundation (WCF).  For more complex integration scenarios AIF can also help expose services using MSMQ and BizTalk. With Dynamics AX 2009, the team ships a bunch of services (about 60 out of the box) that are ready for use.  That includes, for example, the more common scenarios like integration with sales orders or customers.  AIF allows you to create, read, update and delete those sales orders while maintaining the integrity of the database (i.e. without directly touching the database at all).  This is done independent of the transport so when developing you could begin by updating via http and later switch to MSMQ.  This can be as simple as enabling the service then “generating” which generates the WCF interface (i.e. WSDL).  That web service is then available to be consumed by any standards-based client (including apps written in php, java and naturally any of the languages in Visual Studio).  You can also configure the service endpoints to change the binding or authentication parameters. In the video, Michael walks us through using a standard Excel Visual Studio Tools for Office (VSTO) project to consume a AX 2009 sales order service that is exposed using AIF.  He also shows us how, by using WS-Addressing in the WCF headers, you can pass a target company for a web service call. By default, AX limits error messages coming back from the server for security reasons.  Michael shows us how to configure AX to propagate those errors when you need to see them. Dynamics AX is a rich platform for supply chain management and financials.  AIF opens up AX so that ISVs can build on that richness by integrating their own applications.  Sometimes when you do that you need to consume a web service exposed by external applications.  We see here how you can plug external web services into the AX processes.  In this case, Michael shows us how when trying to create a customer in Dynamics AX with a name that has been blacklisted by the US government (“Bin Laden”, for instance.  Yikes!  :) ) the customer create process calls out to an external web service in the cloud to verify the customer name.  This seamless integration of external processes is a boon for ISVs that need those deep integration points.  Michael explains how. In order to do this sort of integration you build a Service Reference in the Application Object Tree (AOT) to provide the parameters.  AX takes care of much of work by generating the artifacts (compilation, deploying, bundling etc) that are deployed and executed on the server.  CLR interop is available in order to use .NET DLLs and their classes.   Some code samples are available here: Application Integration Framework Overview (MSDN) Calling the Customer and Vendor Services (Dianne Siebold)
Nonprofit Websites advice by Tony SilveiraNonprofit Websites advice by Tony Silveira
from recent posts - blip.tv (beta)
September 25, 2008

Tony is a canadian that excels in nonprofit websites. This video was shot in Montreal, Canada.
The Dynamics Duo talk about Dynamics CRM and SharePointThe Dynamics Duo talk about Dynamics CRM and SharePoint
from videos - Channel 9
August 12, 2008

In this segment Girish and I talk about how Dynamics CRM integrates with SharePoint.  We begin with a little guidance for where you might use one over the other and where they work well together.  And they sure do go well together.  “Separated at birth” is how I put it in the video.  :)  Girish’s demo shows a custom SharePoint page.  Not many people know that SharePoint can be stylized using CSS to build sites that look nothing like plain vanilla SharePoint.  This is a pretty good example of that. We use a SharePoint List Web Part to pull data from CRM to show a list of CRM users and the hours from their time sheets.  This was pulled directly from CRM using web services.  We also show how could use that data to display a dashboard style gauge using Dundas Gauge for SharePoint.  You can pull CRM data directly into SharePoint to build a dashboard.  You can then pull that dashboard into the CRM web client (minus the SharePoint chrome).  By pulling it into the web client it automatically shows up in the Outlook client.  Speaking of Outlook; in the last segment we talked about customization but didn’t show the Outlook client so Girish gives us a quick tour of how that works also. Each of the forms in CRM are URL-addressable.  Girish puts that to good use in showing how you can pop a CRM form directly from within SharePoint.  He also shows how CRM lights up automatically when you have Office Communicator installed leaving room for some interesting Unified Communication scenarios.  We should probably do an episode on UC soon. The segment wouldn’t be complete if we didn’t show some code.  Girish built the list part using the Visual Studio Web Part project template.  The code to pull in the time sheets into a list web part is about 10 lines of C#. The hardest part was doing the authentication.  CRM provides a plug-able authentication mechanism and 3 different auth options out of the box.  On-premise deployments will likely use Active Directory, while CRM Online uses Windows Live ID and finally if you’re deploying in a partner-hosted mode you’ll use form-based authentication.  Girish shows how as an ISV you can build your application once and take all of those options into account.  After that the code you write is portable across all the deployment options. 
Travis Grigsby on Web services for POS applicationsTravis Grigsby on Web services for POS applications
from IBM developerWorks podcasts
August 12, 2008

Travis Grigsby is a developer with IBM Software Group Emerging Standards, and is the co-author of a new developerWorks article on Web Services for Point of Service applications. He talks about working on the specification and about the enhanced mobility of POS devices and apps to come.
endpoint.tv - SOAP and REST a Perspectiveendpoint.tv - SOAP and REST a Perspective
from Channel 9
August 03, 2008

Most of you know all about SOAP but perhaps you have been hearing a lot more about REST web services lately.  Wondering what this is all about?  Well check out this episode where Bob Familiar and I discuss the two.
also in:    


Web Services in Clearspace 2.0Web Services in Clearspace 2.0
from recent posts - blip.tv (beta)
June 16, 2008

Learn how to use web services to access your data in Clearspace 2.0 with Andrew Wright, Jive Software Engineer.
Episode 98: Stefan Tilkov on RESTEpisode 98: Stefan Tilkov on REST
from Software Engineering Radio - the podcast for professional software developers
May 23, 2008

Podcast (MP3): Download Hosts: Markus Guests: Stefan Tilkov Recording venue: OOP 2008 In this episode we discuss REST (Representational State Transfer) with Stefan Tilkov. We started out by discussing the 5 steps to REST: IDs, links, Standard Methods, multiple representations and stateless communication. We then looked at how to use HTTP for REST, and discussed about how to use it for Web Services. We then we discussed whether and how to use REST for enterprise applications, and not just for apps on the internet. We concluded the discussion with a couple of recommendations. Links Stefan s Blog Article: REST Introduction Article: Addressing Doubts about REST Fielding s dissertation on REST REST Wiki Book: Restful Web Services
SoapUI : Testcases & how to test web services (english version)SoapUI : Testcases & how to test web services (english version)
from Revver - video Videos
April 19, 2008

Author: aristotle85 Added: Sat, 19 Apr 2008 07:28:41 -0800 Duration: 538How to test a web service using soapui. Also in this video, i will talk about how to use testcases to know the response time taken for getting response from a web service. All content in this video are in english
SoapUI : Testcases & how to test web services (english version)SoapUI : Testcases & how to test web services (english version)
from my videos
April 19, 2008

Author: aristotle85 Added: Sat, 19 Apr 2008 07:28:41 -0800 Duration: 538How to test a web service using soapui. Also in this video, i will talk about how to use testcases to know the response time taken for getting response from a web service. All content in this video are in english
SoapUI : Testcases & how to test web services (english version)SoapUI : Testcases & how to test web services (english version)
from Most Recent
April 19, 2008

Author: aristotle85 Added: Sat, 19 Apr 2008 07:28:41 -0800 Duration: 538How to test a web service using soapui. Also in this video, i will talk about how to use testcases to know the response time taken for getting response from a web service. All content in this video are in english
SoapUI : Testcases & how to test web services (malay version)SoapUI : Testcases & how to test web services (malay version)
from Revver - video Videos
April 12, 2008

Author: aristotle85 Added: Fri, 11 Apr 2008 21:52:31 -0800 Duration: 483How to test a web service using soapui. Also in this video, i will talk about how to use testcases to know the response time taken for getting response from a web service. All content in this video are in malay.
SoapUI : Testcases & how to test web services (malay version)SoapUI : Testcases & how to test web services (malay version)
from my videos
April 12, 2008

Author: aristotle85 Added: Fri, 11 Apr 2008 21:52:31 -0800 Duration: 483How to test a web service using soapui. Also in this video, i will talk about how to use testcases to know the response time taken for getting response from a web service. All content in this video are in malay.
Web Services Security in MetroWeb Services Security in Metro
from popular posts - blip.tv (beta)
April 03, 2008

In this video Ed Ort of the java.sun.com staff interviews three key members of the Metro Web Services Security team about support for web services security in the Metro web services stack.
Barak Pridor Talks about ClearForest, Calais, Reuters and the Semantic WebBarak Pridor Talks about ClearForest, Calais, Reuters and the Semantic Web
from Talking with Talis
March 11, 2008

In our latest podcast I talk with ClearForest CEO, Barak Pridor. We discuss the changing business model in Reuters' core markets, and consider ways in which their acquisition of ClearForest in 2007 helps Reuters position for the future. We also consider the technical and business decisions behind Reuters' recent announcement of an open API for the new Calais Web Service, built upon ClearForest's technology. For more analysis of the conversation, see ZDNet's blog, The Semantic Web. Listen Now Download MP3 [35 mins, 16Mb] During the conversation, we refer to the following resources; Autonomy Calais, and launch coverage on ReadWriteWeb and SemanticWeb.com ClearForest Tim O'Reilly discusses his interview with Reuters' Devin Wenig Reuters TechCrunch coverage of Amazon Web Services traffic This conversation was conducted using Skype on Thursday 21 February, recorded with Ecamm Network's Call Recorder for Skype, and edited on a Mac with Garageband. For further Talking with Talis podcasts on the emerging Web of Data, see here. Technorati Tags: ClearForest, Barak Pridor, Reuters, Semantic Web, Talis, Talking with Talis, web services
Web HostingWeb Hosting
from The Chris Pirillo Show
March 10, 2008

Add to iTunes | Add to YouTube | Add to Google | RSS Feed There are a million places out there to buy your web hosting from. How do you know which is the right choice for you? What things should you keep in mind when choosing? These tips sent in by a community member should help ease your mind a bit. Don t buy what you don t need. When buying a product, you buy it for what you want it to do, right? Hosting is no different. If it s going to be an image hoster, why do you want a phpBB Board, or MediaWiki included? Consider how much traffic you expect to get, and look around. Don t be afraid to move your hosting around often. If there s a better offer around in the short run, chances are you re best taking it because by the time you roll around to needing to pay for hosting, you ll still find some options which, for one year, are either hysterically cheap, or just plain free. Look on the internet for voucher codes. If you think you ve found the host for you, looked at their reputation, and decided Yes, that s who I want to go with take a look at their competitors again. A prime example of this is Dreamhost; their voucher codes can turn $100+ a year into $20 for the first year, with a domain name included. If you re getting free email, USE IT IF YOU CAN. Too many people still use hotmail addresses when they have hosting that provides them with email addresses. If you re making a small business venture, a domain-name based address will say a lot more about your professionality than a hotmail, yahoo or aol email. I personally have one for Mail, MSN, Ebay and my Wii, so as to filter the unnecessary stuff as much as possible. Always pay for your hosting up front initially. There s nothing worse than changing providers and then realizing that your subscription payment is still recurring. Not only does it cause stress, but the problems that arise while getting the money back can make you wish you never tried them. WhyPark.com - Stop Parking Your Domains. AdsenseReady - 150 AdSense Web Sites. 15,000 Mb Hosting For $4.95/mo. Want to embed this video on your own site, blog, or forum? Use this code or download the video: object width= 425 height= 350 param name= movie value= http://www.youtube.com/v/17YeTgBd1fk /param param name= wmode value= transparent /param embed src= http://www.youtube.com/v/17YeTgBd1fk type= application/x-shockwave-flash wmode= transparent width= 425 height= 350 /embed /object br / a href= http://chris.pirillo.com/ Chris /a | a href= http://live.pirillo.com/ Live Tech Support /a | a href= http://media.pirillo.com/ Video Help /a | a href= http://feeds.pirillo.com/ChrisPirilloShow Add to iTunes /a Related Content:Recommended Web Hosting SolutionThe (mt) (gs) ReportFree Or Cheap Web HostingYou re Never Too Young to Start Goal SettingThe Reasons I Chose Rackspace for Hosting
Channel 9: The VideosChannel 9: The Videos
from Channel 9: The Videos
March 02, 2008

Kirk Evans interviews Wayne Citrin, CTO of JNBridge, looking at the JNBridge JMS Adapters for .NET and BizTalk. Listen to the podcast(MP3) Listen to the podcast(WMA) Download the Video Watch the Video
Brian Kernighan: The Changing Face of ProgrammingBrian Kernighan: The Changing Face of Programming
from Princeton University Podcasts
February 13, 2008

The rapid evolution of languages, tools, environments, and expectations presents major challenges and opportunities for programmers and for software engineering education. This is true across all kinds of programming, but is especially so for Web systems, which are now routinely written in untyped scripting languages and include Ajax, mashups, toolkits, frameworks like Rails and Django, and a profusion of interfaces, all operating asynchronously on distributed systems. For the past 7 or 8 years Dr. Kernighan has been teaching a course on advanced programming techniques that is more and more stretched between important old material and new unproven material that might be important. In this talk he will illustrate some of the challenges and discuss ways in which we might use complexity and rapid change to advantage. More info: http://blogs.princeton.edu/itsacademic/2008/02/the_changing_face_of_programming.html
Episode 9: Remoting Pt.1 and Listener FeedbackEpisode 9: Remoting Pt.1 and Listener Feedback
from Software Engineering Radio - The Podcast for Professional Software Developers
March 19, 2006

Podcast (MP3): Download Hosts: Markus Michael Guests: Recording venue: This Episode as well as the next one take a look at remoting infrastructures such as CORBA, .NET Remoting or Webservices. In this first part we will take a look at why remote communication is necessary in the first place, what remoting middleware can do for you as well as which other middleware technologies exist in addition to OO-RPC systems, such as messaging middleware. Finally, we conclude with a brief overview of what the broker pattern can do for us in the context of remoting middleware. Links Remoting Patterns, the book that contains the patterns based on which we explain remoting middleware POSA 1, the book which contains the broker pattern. The Broker Pattern Revisited, a paper describing the essence of the Broker Pattern POSA 2 contains a number of implementation patterns for concurrent systems Enterprise Integration Patterns take a look at messaging middleware CORBA information .NET Remoting overview Web Services information at W3C Web Services standards at OASIS
Episode 10: Remoting Pt. 2Episode 10: Remoting Pt. 2
from Software Engineering Radio - The Podcast for Professional Software Developers
March 29, 2006

Podcast (MP3): Download Hosts: Markus Michael Guests: Recording venue: This is the second part of the remoting infrastructures discussion started in Episode 9. We take a look at how remoting infrastructures such as CORBA, .NET Remoting or Web Services work internally. This includes the low level details of the transport layer, marshalling, client proxies as well as interceptors and asynchronous communication. At the end, Michael will explain how all this relates to CORBA and Markus will map the concepts to .NET remoting. We don't have additional links in these show notes since all the relevant links had been posted for Episode 9 already.
Episode 20: Interview Michael StalEpisode 20: Interview Michael Stal
from Software Engineering Radio - The Podcast for Professional Software Developers
June 24, 2006

Podcast (MP3): Download Hosts: Markus Guests: Michael Stal Recording venue: In this Episode, we talk to Michael Stal, a Senior Principal Engineer at Siemens Corporate Technology, POSA 1 and 2 Co-Author and Editor of the german JavaSpetrum magazine. Since Michael's core focus is middlware, much of our discussion centered around that topic. Webservices and SOA, of course, have also been covered. Other topics include Java vs. .NET as well as Patterns. Links Michael s Homepage Pattern Oriented Software Architecture, Volume 1 Pattern Oriented Software Architecture, Volume 2 Article by Michael on SOA A Blog Entry by Michael on SOA Michael s magazine, JavaSpektrum (german) Java vs. .NET: at O Reilly Java vs. .NET: at Java World Michael s Pattern Laws
Episode 39: Interview Steve VinoskiEpisode 39: Interview Steve Vinoski
from Software Engineering Radio - The Podcast for Professional Software Developers
December 06, 2006

Podcast (MP3): Download Hosts: Markus Guests: Steve Vinoski Recording venue: JAOO 2006 This episode is an interview with Steve Vinoski. Steve works as the Chief Engineer for IONA. He's what you'd call a middleware guru, he was for example deeply involved with CORBA. So, this interview centers mainly around middleware. We begin by talking about his own history wrt. middleare and ORBs and how ORBs evolved over time. We then talked about whether coarse-grained, stateless components might be a better abstraction for distributed systems than "objects". We then covered the future of CORBA, it's use in ethe embedded space as well as the practical relevance of the POSA patterns when building ORBs. Then we switched topics and addressed the role of web services as a "middleware middleware" and the maturity of WS-* specifications. We then looked at what Steve is working on these days, which is e.g. the Advanced Message Queueing Protocol (AMQP) as well as dynamic languages. We concluded the interwiew with his view on SOA. Links Steve s Blog His Book, Advanced CORBA Programming with C++ CeltixFire Service Framework QPid AMQP implementation IONA s Artix ESB
Episode 85: Web Services with Olaf ZimmermannEpisode 85: Web Services with Olaf Zimmermann
from Software Engineering Radio - The Podcast for Professional Software Developers
February 01, 2008

Podcast (MP3): Download Hosts: Markus Guests: Olaf Zimmermann Recording venue: OOPSLA 2007 In this Episode we're talking about Web Services with IBM's Olaf Zimmermann. We mainly focus on the WS-* stack. We also discuss a couple of SOA foundations and architectural decisions that need to be taken when building an SOA using Web Serivces. We also briefly mention the REST vs. WS-* debate. Links Book: Perspectives on Web Services Olaf s Team at IBM Olaf s OOPSLA 07 Tutorial World Wide Web W3C Web Services activities OASIS WS-Interoperability (WS-I) Apache Web Services projects SOA Decision Modeling Project Further Links
Autowake KiteTeam.plAutowake KiteTeam.pl
from Vimeo / Recent Public Videos
February 01, 2008

Autowake KiteTeam.pl from Lukas on Vimeo. Cast: Lukas
Button Mash This - Hands On: TurokButton Mash This - Hands On: Turok
from Vimeo / Recent Public Videos
February 01, 2008

Button Mash This - Hands On: Turok from ButtonMashThis on Vimeo. Rannie and chelle play through the first 15mins of 'Turok' for the Xbox360 and tell us their initial thoughts. Cast: ButtonMashThis
Dansacademy Groningen (José) 12Dansacademy Groningen (José) 12
from Vimeo / Recent Public Videos
February 01, 2008

Dansacademy Groningen (José) 12 from jmneuts on Vimeo. 23 maart 2007 Open dag op de dansacademy Lucia Marthas in Groningen Cast: jmneuts
teaserteaser
from Vimeo / Recent Public Videos
February 01, 2008

teaser from eddie coleman on Vimeo. for milk & cookies Cast: eddie coleman
HeysátanHeysátan
from Vimeo / Recent Public Videos
February 01, 2008

Heysátan from glasklinge on Vimeo. my video version from Sigur Rós - Heysátan frankenstein 1931, montage - effekte: glasklinge Cast: glasklinge
Everybody wants to be an astronautEverybody wants to be an astronaut
from Vimeo / Recent Public Videos
February 01, 2008

Everybody wants to be an astronaut from seedervan on Vimeo. I didn't know, Mikado could get you on the Apollo space adventure ;) Cast: seedervan
Office knightsOffice knights
from Vimeo / Recent Public Videos
February 01, 2008

Office knights from seedervan on Vimeo. To get to the elevator, you first have to defeat a fellow Mikado knight! ..or something, hehe Cast: seedervan



Log in or sign up to leave comments.

0 comments on web services:

(No comments yet..)





get widgets

RSS feed for web services: Media RSS 2.0 feed with enclosures

To add your video to this page, just add this code in your video blog post: