test
Monday, December 19, 2011
WSDL Explained
Visit my new portal bharaththippireddy.net
Up Next
1)Web Services Standards
2)Web Services Hands On Example in Java
3)Web Services Testing using Soap UI.
Related Presentations
1)XML : An Introduction
2)XML Schema Definition : Theory and Practice
3)XML Namespaces in Five Minutes
4)Web Services Overview For Everyone
Sunday, December 11, 2011
Web Services Overview For Everyone
Visit my new portal bharaththippireddy.net
Coming Up
1)WSDL Basics
2)Web Services Standards
3)Web Services Hands On Example in Java
4)Web Services Testing using Soap UI.
Related Presentations
1)XML : An Introduction
2)XML Schema Definition : Theory and Practice
3)XML Namespaces in Five Minutes
Monday, December 5, 2011
XML Namespaces in Five Minutes
Visit my new portal bharaththippireddy.net
Related Presentations:
1)XML : An Introduction
2)XML Schema Definition : Theory and Practice
Web Services is next - stay tuned and keep sharing and learning!
Friday, November 18, 2011
XML Schema Definition : Theory and Practice
Visit my new portal bharaththippireddy.net
Lecture
Hands On
I am working to get a better screen capture software.Please look at the XML and XSD below below if its not clear in the video.
1) The XML Schema file for Order
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<xs:element name="Order"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="CustomerName" type="xs:string"/> | |
<xs:element name="Item"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element name="ItemId" type="xs:string"/> | |
<xs:element name="ItemName" type="xs:string"/> | |
<xs:element name="Price" type="xs:decimal"/> | |
<xs:element name="Quantity" type="xs:positiveInteger"/> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
</xs:sequence> | |
<xs:attribute name="orderid" type="xs:string" use="required"/> | |
</xs:complexType> | |
</xs:element> | |
</xs:schema> |
2) The XML for Order
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" standalone="yes"?> | |
<Order xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="order.xsd" orderid="123"> | |
<CustomerName>Sparsa Reddy</CustomerName> | |
<Item> | |
<ItemId>007</ItemId> | |
<ItemName>iPhone 5</ItemName> | |
<Price>123</Price> | |
<Quantity>1</Quantity> | |
</Item> | |
<!-- I Pay --> | |
</Order> |
3) Download and Install XML Notepad from this URL - XML Notepad
4) Modify and add to the above schema file.Work on several examples using the various XSD schema elements on W3Schools.Master XML Schema Definition Today!
5) Please shoot me an email with your feedback or questions to bharathsblog@gmail.com
Click here to read the XML Introduction Article
Saturday, November 12, 2011
XML : An Introduction
Visit my new portal bharaththippireddy.net
Understanding the basics of XML and related technologies listed below is necessary for every IT professional no matter what team he works for and the kind of work s/he does.
I will be sharing more hands on examples on these topics starting with XML Schema Definition(XSD) next.
Thursday, November 3, 2011
J2EE Technology Roadmap for beginners
Visit my new portal bharaththippireddy.net
Once you learn these frameworks you can easily switch to any new framework with in the j2ee tiers.Below are the links that will get you started with the technologies listed in the presentation.I will be presenting each of these frameworks in detail in the future.Until then keep sharing and learning.
Core Java XML Design Patterns Servlets and JSPs JPA/ORM Spring JMS Web Services Ant ,Junit and Mockito Application Servers |
|
Purpose and Goal
Visit my new portal bharaththippireddy.net
The purpose of this technical blog is to share and learn with two simple goals.
1) Reduce the gap between the two worlds namely College and IT industry
2) Share with and Learn from others in the Industry.
Please also visit my blog on other topics like Career Development,Personal Development ,US Immigration etc.
Please mail your feedback and suggestions to : bharathsblog@gmail.com
Thanks for reading and sharing!
Subscribe to:
Posts (Atom)