Community-Credit.com
|
NonProfitWays.com
|
SOAPitstop.com
Skin:
Fiery Red
Mello Blue
Purple Passion
The Green Stuff
Grey Flannel
User: Not logged in
Hot Links
Home
Newsletter Signup
XSLT Library
Latest XML Blogs
Featured Examples
Presentations
Featured Articles
Book Chapters
Training Courses
Events
NewsGroups
Menu
Discussions
Examples
Tutorials
Tools
Articles
Resources
Websites
My Pitstop
Sign In
My Profile
My Articles
My Examples
My Favorites
My Resources
Add a Resource
Logout
HeadGeek
About Me
My Blog
HeadGeek Articles
Talking Portfolio
Resume
Pictures
World Trip Pics
Prev
Next
1
2
3
4
5
6
Building Smart Client using .NET
A Smart Client is an application that uses local processing, consumes XML Web Services and can be deployed and updated from a centralized server.
Type: XML.NET #Views: 934 Category: Article
Perform a Case-sensitive Search in .NET Using XPath
The following code shows to how to perform a case-sensitive search in .NET using XPath.
Type: XML.NET #Views: 531 Category: TipsAndTricks
Create a New XML File Using XmlDocument
This code demonstrates how to create a new XML file using XmlDocument.
Type: XML.NET #Views: 544 Category: TipsAndTricks
CreateAppendElement - appending a XmlElement under another XmlNode
Create an XmlElement object with inner text and make it a child of another XmlNode. Note: requires Imports System.Xml
Type: XML.NET #Views: 491 Category: TipsAndTricks
A better way to query for a single node
In the XmlNode class, that is the class that provides node functionality in an XMLDOM representation of an XML document, the SelectNodes (and the ancillary SelectSingleNode) method exploits the XPath query language to let you extract nodes based on logical conditions. The SelectNodes methods return a collection of XmlNode object, whereas SelectSingleNode returns only the first node that match the XPath criteria. However, a quick look at the implementation of SelectSingleNode suggests that using SelectNodes is often preferable. The following pseudocode shows the internal working of SelectSingleNode:
Type: XML.NET #Views: 539 Category: TipsAndTricks
.NET framework hailed as platform for XML
Microsoft's .NET framework provides a multilayered application development platform ideal for building XML-based Web services, a Microsoft engineer emphasized during a keynote presentation at the Software Development Conference and Expo on Wednesday.
Type: XML.NET #Views: 527 Category: Article
Ballmer talks up XML, .Net
This is a video showing Steve Balmer talking about the XML.NET.
Type: XML.NET #Views: 533 Category: Resource
XML in .NET: Object Serialization
One of the more powerful facilities of the .NET framework is its capability to store and retrieve object state from XML in a process called XML object serialization. In this article, Dale Michalk shows how to use this to parse and create XML documents with ease and minimal coding.
Type: XML.NET #Views: 602 Category: Article
XML in .NET: The DOM Interface
In this article, Dale Michalk focuses on the Document Object Model (DOM) API for XML information processing. Most programmers have become accustomed to this model while using XML parsers such as MXSML.
Type: XML.NET #Views: 519 Category: Article
Applied XML DevCon: Call for Speakers
Are you interested in presenting a 45-minute talk on some applied XML or Web Services topic? It doesn't matter which platform or OS you're targeting. It also doesn't matter whether you're an author or vendor or professional speaker or a developer in the trenches (in fact, I tend to be biased towards the latter). We're after interesting and unique applications of XML and Web Services technology and if you're doing good work in that area, then I need you to send me a session topic and 2-4 sentence abstract along with a little bit about yourself.
Type: XML.NET #Views: 1778 Category: Resource
Standards for Service-Oriented Architecture
XML and Web services are emerging as the platform for service-oriented architecture (SOA), both for intra- and inter-enterprise communication. As the first Java integrated development environment (IDE) for both authoring and consuming SOA, WebLogic Workshop inherently pushed the envelope with proprietary innovations. Since then, BEA has delivered on the promise of investment protection for these innovations via mechanisms ranging from open standards to open source. BEA's commitment to investment protection frees developers to take advantage of its cutting-edge productivity and integration features without fear of vendor lock-in. Let's take a look at the key SOA-based innovations in Workshop and how investment is protected in each case.
Type: XML.NET #Views: 551 Category: Article
InfoPath: Closing the Circuit on XML Transport
XML is the preferred way of transporting data from one system to another because it represents the structure and relationships of data elements without regard for presentation. XML has become the standard method for transporting data and has consequently driven the evolution of other technologies in recent years. Web services use HTTP/XML to request services and receive results. Databases support direct input and output of XML. XPath supports XML queries, and XSLT controls the visual presentation of XML data.
Type: XML.NET #Views: 536 Category: Article
A Standards-based Look at XAML's Features
Microsoft's Longhorn will introduce XAML, an application development framework for Web and Windows apps. But just how different is XAML from the already-available public standards set by the W3C?
Type: XML.NET #Views: 500 Category: Article
Using the AdRotator Web Control in ASP.NET
By far one of the easiest web controls to implement into a website, the AdRotator is a great introduction into plugging a control into your site, as well as a good introduction for those of you who have little experience with XML. From start to finish, it took me about 10 minutes to have rotating ads on the bottom of all my pages, with the ability to show certain ads more often than others. There are two steps to using the AdRotator on your page: creating an instance of the AdRotator web control on the page and creating the advertisement xml file.
Type: XML.NET #Views: 750 Category: Article
Load XML Fragments
There are many situations where you might find yourself holding an XmlReader that contains XML fragments representing data rows or pieces of an XML document. One of the most common is if you perform a query against SQL Server with a FOR XML clause. Another might be if you get that row set from a Web services call. Unless you just rip through the nodes in a forward-only, read-only, node-level manner, you will probably want to get that data in a more usable form for you application. You may want to get the data into an XmlDocument so that you can work with it using the XML Document Object Model (DOM), or you may want to get it into a DataSet so that you can easily data-bind against it. You may want to do both - be able to run XPath queries against the data, and data-bind to a grid in the UI.
Type: XML.NET #Views: 627 Category: Article
Building Portals with XML
the adoption of XML will enable the Web to enter a new dimension of use and usefulness. In this chapter from his book, Dave Carlson shows you how to recombine the XML information content with a presentation that is appropriate for the viewing device and the user's requirements in order to create a portal application.
Type: XML.NET #Views: 458 Category: Article
What's New for XML Developers in .NET 2.0
In a recent issue of this column, I gave you a quick overview of the new features in ADO.NET 2.0 for data access. Now I want to cover what is new on the XML side of the data access equation in .NET 2.0. XML usage for a variety of data scenarios continues to grow by leaps and bounds. There is just no better approach to bringing together heterogeneous data than working with it in the form of XML. As such, Microsoft continues to try to make the XML management capabilities of .NET more and more powerful to make your life easier.
Type: XML.NET #Views: 417 Category: Article
Get There with XPathNavigator
In XPath Basics I gave a quick introduction to the syntax of XPath expressions to help the uninitiated get comfortable with XPath, which is a very important technology to understand for working with XML data of many forms. The thing about XPath is that it can't do anything on its own; it needs a processing engine to perform work based on the expressions. That processing engine could come in many forms.
Type: XML.NET #Views: 477 Category: Article
XML and Web Services for Microsoft Developers - Part 1
Microsoft's Internet Explorer version 4.0 was the first Web browser to support XML. Since then XML support has been introduced in various Microsoft products, such as Office XP and SQL Server 2000. Microsoft re-assured its commitment by including extensive support for XML in the .NET framework.
Type: XML.NET #Views: 251 Category: Article
Use the Xml Web Control to Display Database Query Results as XML
Sometime you may need to query a database and produce the results as an XML file. The .Net XML Web Control makes this extremely easy to do. All you have to do is create an instance of the XML control on your .aspx page. A very few lines of code can then be used to display the database query as XML. To show you how easy this is, note the aspx file immediately below - two lines of code, counting the @Page directive!
Type: XML.NET #Views: 427 Category: Article
Prev
Next
1
2
3
4
5
6
Featured Products
Fans of "The Office"
Dwight Bobbleheads are here!
“It's me! I'm the bobblehead! Yes!”
Advertise on XMLPitstop
Our Sponsors
Advertise on XMLPitstop
Partners
Friends
EggHead Cafe
Web Servicee development
DotNetSlackers
Discount ink cartridges
outsourcing it
desktop fax
fax server
chicago web design
Alojamiento de Web
UK Web Hosting
Megapixel IP Security Camera
Dolce&gabbana sunglasses
Video Surveillance
VoIP Internettelefonie AT
Statistics
4,312 Total Members
6 members(last 30 days)
1 members(last 7 days)
0 members(today)
1,953 Total Discussions
0 Posts(last 30 days)
0 Posts(last 7 days)
0 Posts(today)
47,487 Total Blog Posts
0 Blogs(last 30 days)
0 Blogs(last 7 days)
0 Blogs(today)
8,699 Newsgroup Posts
0 Posts(last 30 days)
0 Posts(last 7 days)
0 Posts(today)
14,253 Total Resources
11 Resources(last 30 days)
0 Resources(last 7 days)
0 Resources(today)
David Silverlight's XMLPitstop.com
| 2801 Florida Ave #225|Miami, FL 33133|Ph:305-447-1139