20
Sat, Apr
5 New Articles

Convert AS/400 Data into XML

Web Languages
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

XML has become the Internet standard in data representation. XML can not only be transported over HTTP, but it can also go through firewalls, making this markup language quite fluid. XML Web Services, as its name suggests, is highly dependent upon XML.

Don't let the name XML Web Services intimidate you. For iSeries and AS/400 folks, it's conceptually nothing but an elaborate service program. XML Web Services are very similar to service programs, as they provide a service to other programs. You can pass parameters to a Web Service and return parameters back. A detailed discussion of Web Services is beyond the scope of this article, so just consider a Web Service as a service program that returns data back to the calling application--in our case, the Web page.

This article demonstrates how to access data from three different sources via .NET XML Web Services and then convert them all into XML files. We'll create an ASP.NET page called Myfirstpage. This page will connect to three different Web Services to obtain data from AS/400, SQL Server, and an Access table.

This method employs "datasets," which are simply disconnected read/write containers for holding one or more tables of data and the relationships between these tables. .NET includes whole series of objects that are specifically designed to manage and manipulate XML data. This includes native support for XML-formatted data within objects like the DATASET, as well as a whole range of objects that integrate a new XML parsing engine with the .NET framework as a whole. To finish our job, we will convert each of the datasets received from the XML Web Service into an XML file and display the data on the Web page.

Create a Web Page

First, create a Web page called Myfirstpage in Visual Studio .NET by launching Visual Studio .NET and choosing New Project and ASP.NET Web application, as shown in Figure 1.

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V400.png

Figure 1: Launch Visual Studio .NET and choose New Project and ASP.NET Web application. (Click images to enlarge.)

Change the name from Webproject1 to Myfirstpage. Then, delete the generic Webform1.aspx and add another Web page called Myfirstpage.aspx. (Note the .aspx extension rather than .asp). Place three buttons, one label, and a grid on the page.
Your page should look something like Figure 2:

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V401.png

Figure 2: Here's your new page.

You are now ready to receive data from Web Services, which will be displayed in the grid.

Now, add a Web reference to the XML Web Services that will return the data from the three sources. Visual Studio .NET allows you to set a reference to an existing Web Service on your local Web server or any other available Web server over the Internet. To add Web Services references to the Myfirstpage.aspx, right-click on the project and choose Add Web Reference. See Figure 3.

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V402.png

Figure 3: Add Web Services references.

In the dialog box that comes up, insert your Web Service URL in the address. In this example, the Web Service is called http://localhost/test/AS400Webservice/AS400.asmx (Figure 4).

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V403.png

Figure 4: Enter your Web Service URL.

In the right pane, reference to this Web Service will be added to your project (Figure 5).

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V404.png

Figure 5: Your Web Services references have been added to your project.

When you create a Web page in ASP.NET, the page extension is .aspx. Likewise, when you create a Web Service in ASP.NET, the extension is .asmx. The AS400.asmx is nothing but a class, and AS400_data is a method of AS400 class, which happens to return a dataset.

Now, add the next two Web Services to your project and rename the references to Access, AS400, and SQLServer, respectively. Your project should look like Figure 6:

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V405.png

Figure 6: Rename your Web Services references.

You now have three Web references added to your project, each pointing to a different Web Service.

Display the Data on the Web Page

Now, it's time to get the data, display it on the Web page, and write it to the XML file at the same time. If you ran your page right now, it would look like Figure 7:

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V406.png

Figure 7: Without data, your page will look like this.

Notice that you have three buttons and a label on the page. The idea is to click a button to get data associated with that data source, display it on the page, and create an XML file.

You'll need some simple code to get the data from the Web Services, display it, and write an XML file based on the data returned by the Web Service. The following line of code will actually write the XML file:

SQLserver_objdataset.WriteXml(Server.MapPath("SQLserver.XML"))

You could easily amend this code to write the file to your C: drive or any network drive you choose as long as you have appropriate permissions to that drive or folder:

SQLserver_objdataset.WriteXML("C:SQLserver.XML") 

Users can then access that file right from Excel or Word.

Now, when you click on the button "Get Data from AS/400 and convert it into XML," you should see a screen like that shown in Figure 8:

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V407.png

Figure 8: Your AS/400 data has dropped into your Web page.

Notice that the label states that you retrieved data from the AS/400 and wrote it to an XML file called AS400.XML. The file will appear in your Project Explorer (Figure 9):

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V408.png

Figure 9: Project Explorer now shows your AS400.XML file.

Double-click on the AS400.XML file, and you will see the file as shown in Figure 10:

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V409.png

Figure 10: Here are the contents of your AS400.XML file.

Let's recap: Myfirstpage.aspx connects to a Web service called AS400Webservice that connected to AS/400, retrieved the data, and returned a dataset object to the Myfirstapge.aspx page, which displayed the data in a grid and then wrote an XML file.

Following is the code snippet for getting the AS/400 data:

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As 

System.EventArgs) Handles MyBase.Load
        'Put user code to initialize the page here
    End Sub

    
    Private Sub Button_AS400_Click(ByVal sender As System.Object, ByVal 

e As System.EventArgs) Handles Button_AS400.Click

        Dim AS400_objdataset As DataSet
        Dim AS400_proxy As New AS400.AS400()
        AS400_objdataset = AS400_proxy.AS400_data
        Me.DataGrid1.DataSource = AS400_objdataset
        Me.DataBind()
        AS400_objdataset.WriteXml(Server.MapPath("AS400.XML"))
        Me.Label1.Text = "Data retrieved from AS/400 and written to XML 

file AS400.XML"



    End Sub

End Class


Note the method called Button_AS400_click. This is invoked every time you click the button "Get Data from AS/400 and convert it into XML" on the Web page.

In the code immediately following that, you declare your dataset object called AS400_objdataset. This data set will receive the data sent by the Web Service AS400webservice.

The next line simply instantiates the Web Service, and the line after that sets the AS_400_objdataset object to receive the results sent by the Web Service class AS400 and its method, AS400_data.

You could repeat the same procedure and return and display data from SQL Server and Access and write to XML files. When you click on "Get Data from SQL Server and convert it into XML," you get the following Web page, displaying the Authors table in Pubs database and an XML file called SQLserver.xml in your Project Explorer. See Figure 11.

http://www.mcpressonline.com/articles/images/2002/article_final--Malik062104--ConvertToXML%20V410.png

Figure 11: You can also get data from SQL Server and convert it into XML. (Author's Note: The fictitious data shown here is provided as sample data with SQL Server.)

Note that the label states where the data is coming from and its corresponding XML file name.

Again, you can look at the XML file by simply double-clicking on the XML file in your Project Explorer.

You can essentially repeat the process for Access and produce an XML file.

Tahir Malik is a Senior iSeries programmer/analyst with Kos Pharmaceuticals, Inc. He has over a decade of iSeries development experience. He has worked extensively with iSeries Web enablement projects, including client/server programming and intranet/extranet Web development using .NET. He can be reached at This email address is being protected from spambots. You need JavaScript enabled to view it..

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: