Question

ONLY ANSWER IF YOU'RE WILLING TO ELABORATE! In your answer include "WHAT PROGRAMS" were used and...

ONLY ANSWER IF YOU'RE WILLING TO ELABORATE! In your answer include "WHAT PROGRAMS" were used and "HOW" you did it. I will need to learn this and I will need to make edit and must know which application were used. Briefly explain your answer so I may understand. I will complain and I will cancel my membership if only an answer is provided. Thanks! **IMPORTANT: Provide a 2 part answer so that I can TELL THE DIFFERENCE! I AM NEW TO THIS AND WANT TO LEARN.

Part1A: Define a schema for a flight availability request application that requests flight availability for a city pair on a specific date for a specific number and type of passengers. Also include: time or time window, connecting cities, client preferences, e.g., airlines, flight types, etc. the request can be narrowed to request availability for a specific airline, specific flight, or specific booking class on a specific flight. LET ME KNOW WHAT YOU USED TO DO THIS? EG. Notepad++ AND HOW YOU DID THIS?

Part1B: Write a simple SOAP program that returns information about commercial flights from the XML Schema of Exercise 3.4 (practical part of Problem Set 1). You are expected to use an Integrated Development Environment (IDE) to code, debug, compile, and test your programs for both the client and the server side of the application. The application can be tested on a single host, or two remote hosts on the Internet. You submission should include the following components. 1) Source code of the application; 2) Executables and instructions how to run the application; 3) A brief report that discusses your design, your implementation (e.g., platform of development, programming language, etc), and test cases. LET ME KNOW LANGUAGE USED IF APPLICABLE AND HOW YOU DID THIS.

Homework Answers

Answer #1
<xs:schema xmlns="http://www.opentravel.org/OTA/2003/05"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.opentravel.org/OTA/2003/05"
    elementFormDefault="qualified" version="2.007" id="OTA2007A">
        <xs:include schemaLocation="OTA_AirCommonTypes.xsd"/>
        <xs:include schemaLocation="OTA_AirPreferences.xsd"/>
        <xs:element name="OTA_AirLowFareSearchRQ">
                <xs:annotation>
                        <xs:documentation xml:lang="en">
        The Low Fare Search Request message requests priced itinerary options for
  flights between specific city pairs on specific dates for specific    numbers and
  types of passengers. Optional request information can include:
        - Time / Time Window
        - Connecting cities.
        - Client Preferences (airlines, cabin, flight types etc.)
        The Low Fare Search request contains similar information to a Low Fare Search
  entry on an airline CRS or GDS.
                        </xs:documentation>
                </xs:annotation>
                <xs:complexType>
                        <xs:sequence>
                                <xs:element name="POS" type="POS_Type">
                                        <xs:annotation>
                                                <xs:documentation xml:lang="en">Point of sale object. 
            </xs:documentation>
                                        </xs:annotation>
                                </xs:element>
                                <xs:element name="ProcessingInfo" minOccurs="0">
                                        <xs:annotation>
                                                <xs:documentation xml:lang="en">A collection of information that
            specifies how the message processing should occur or how the data
            should be returned.</xs:documentation>
                                        </xs:annotation>
                                        <xs:complexType>
                                                <xs:attributeGroup ref="AirProcessingInfoGroup"/>
                                        </xs:complexType>
                                </xs:element>
                                <xs:element name="OriginDestinationInformation" maxOccurs="10">
                                        <xs:annotation>
                                                <xs:documentation xml:lang="en">Origin and Destination location,
            and time information for the Air Low Fare Search request.
            </xs:documentation>
                                        </xs:annotation>
                                        <xs:complexType>
                                                <xs:complexContent>
                                                        <xs:extension base="OriginDestinationInformationType">
                                                                <xs:sequence>
                                                                        <xs:element name="AlternateLocationInfo" minOccurs="0">
                                                                                ...
                                                                                <xs:complexType>
                                                                                        <xs:attribute name="OriginLocation"
                          type="ListOfStringLength1to8" use="optional">
                                                                                                ...
                                                                                        </xs:attribute>
                                                                                        <xs:attribute name="DestinationLocation"
                          type="ListOfStringLength1to8" use="optional">
                                                                                                ...
                                                                                        </xs:attribute>
                                                                                </xs:complexType>
                                                                        </xs:element>
                                                                        <xs:element ref="TPA_Extensions" minOccurs="0"/>
                                                                </xs:sequence>
                                                                <xs:attribute name="RPH" type="RPH_Type" use="optional">
                  ...
                                                                </xs:attribute>
                                                                <xs:attribute name="RefNumber" type="Numeric1to99"
                    use="optional">
                                                                        ...
                                                                </xs:attribute>
                                                        </xs:extension>
                                                </xs:complexContent>
                                        </xs:complexType>
                                </xs:element>
                                <xs:element name="SpecificFlightInfo" type="SpecificFlightInfoType"
            minOccurs="0">
                                        ...
                                </xs:element>
                                <xs:element name="TravelPreferences" minOccurs="0" maxOccurs="10">
                                        ...
                                        <xs:complexType>
                                                <xs:complexContent>
                                                        <xs:extension base="AirSearchPrefsType">
                                                                <xs:attribute name="FlexDatePref" use="optional">
                                                                        ...
                                                                </xs:attribute>
                                                                ...
                                                        </xs:extension>
                                                </xs:complexContent>
                                        </xs:complexType>
                                </xs:element>
                                <xs:element name="TravelerInfoSummary">
                                        ...
                                        <xs:complexType>
                                                <xs:complexContent>
                                                        <xs:extension base="TravelerInfoSummaryType">
                                                                <xs:attribute name="TicketingCountryCode" type="ISO3166"
                    use="optional">
                                                                        ...
                                                                </xs:attribute>
                                                                <xs:attribute name="SpecificPTC_Indicator" type="xs:boolean"
                    use="optional">
                                                                        ...
                                                                </xs:attribute>
                                                        </xs:extension>
                                                </xs:complexContent>
                                        </xs:complexType>
                                </xs:element>
                        </xs:sequence>
                        <xs:attributeGroup ref="OTA_PayloadStdAttributes"/>
                        <xs:attributeGroup ref="MaxResponsesGroup"/>
                        <xs:attribute name="DirectFlightsOnly" type="xs:boolean" use="optional"
          default="false">
                                ...
                        </xs:attribute>
                        <xs:attribute name="AvailableFlightsOnly" type="xs:boolean"
          use="optional">
                                ...
                        </xs:attribute>
                </xs:complexType>
        </xs:element>
</xs:schema>

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://www.opentravel.org/OTA/2003/05"
    targetNamespace="http://www.opentravel.org/OTA/2003/05"
    elementFormDefault="qualified" version="5.000" id="OTA2007A">
        <xs:include schemaLocation="OTA_AirCommonTypes.xsd"/>
        ...
        <xs:element name="OTA_AirLowFareSearchRS">
                <xs:annotation>
                        <xs:documentation xml:lang="en">
        The Low Fare Search Response message contains a number of 'Priced Itinerary'
  options. Each includes:
        - A set of available flights matching the client's request.
        - Pricing information including taxes and full fare breakdown for each 
    passenger type
        - Ticketing information
        - Fare Basis Codes and the information necessary to make a rules entry.
        This message contains similar information to a standard airline CRS or GDS Low
  Fare Search Response message.
                        </xs:documentation>
                </xs:annotation>
                <xs:complexType>
                        <xs:sequence>
                                <xs:choice>
                                        <xs:sequence>
                                                <xs:element name="Success" type="SuccessType">
                                                        <xs:annotation>
                                                                <xs:documentation xml:lang="en">Success
 Standard way to indicate successful processing of an OTA message. Returning an
 empty element of this type indicates success.</xs:documentation>
                                                        </xs:annotation>
                                                </xs:element>
                                                <xs:element name="Warnings" type="WarningsType" minOccurs="0">
                                                        <xs:annotation>
                                                                <xs:documentation xml:lang="en"> Standard way to indicate
successful processing of an OTA message, but one in which warnings are generated.
</xs:documentation>
                                                        </xs:annotation>
                                                </xs:element>
                                                <xs:element name="PricedItineraries" type="PricedItinerariesType">
                                                        <xs:annotation>
                                                                <xs:documentation xml:lang="en">Successfull Low Fare priced
                itineraries in response to a Low Fare Search request.
                </xs:documentation>
                                                        </xs:annotation>
                                                </xs:element>
                                        </xs:sequence>
                                        <xs:element name="Errors" type="ErrorsType">
                                                <xs:annotation>
                                                        <xs:documentation xml:lang="en"> A collection of errors that
              occurred during the processing of a message.</xs:documentation>
                                                </xs:annotation>
                                        </xs:element>
                                </xs:choice>
                        </xs:sequence>
                        <xs:attributeGroup ref="OTA_PayloadStdAttributes">
                                <xs:annotation>
                                        <xs:documentation xml:lang="en"> The OTA_PayloadStdAttributes
          defines the standard attributes that appear on the root element for all
          OTA payloads.</xs:documentation>
                                </xs:annotation>
                        </xs:attributeGroup>
                </xs:complexType>
        
Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Please let me know what programs are used to make the code and also a description...
Please let me know what programs are used to make the code and also a description of how to do this please! Write a Java program to print the sum (addition), multiplication, subtraction, and division of two numbers. Start your code by copying/pasting this information into an editor like notepad, notepad++, or IDLE: public class Main { public static void main(String[] args) { // Write your code here } } Sample input: Input first number: 125 Input second number: 24...
Hey i just read your comment and you just need to answer do you agree or...
Hey i just read your comment and you just need to answer do you agree or disagree with ir and explain My Teacher gave this answer and we need to response this answer You need to response this answer why you agree with it or why you disagree and explain You have Two Answer you need to response on your own word Reactions may include: feedback, agreements, disagreements, etc. with supporting facts, material, citations, etc. to support your reaction (or...
Answer the following question for any pilgrimage of your choice 1) What is name of your...
Answer the following question for any pilgrimage of your choice 1) What is name of your pilgrimage site? 2) Where is located? 3) Can you make a pilgrimage at any time or does it need to be on a certain day to coincide with a celebration/ceremony/time of year? 4) Can you visit alone or must you be with a group? 5) Do you know anyone that has been to this place? 6) If so, asked them for five things you...
please can you make it simple. For example using scanner or hard coding when it is...
please can you make it simple. For example using scanner or hard coding when it is a good idea instead of arrays and that stuff.Please just make one program (or class) and explain step by step. Also it was given to me a txt.htm 1.- Write a client program and a server program to implement the following simplified HTTP protocol based on TCP service. Please make sure your program supports multiple clients. The webpage file CS3700.htm is provided. You may...
Part 2: Identify one or more review articles (or primary literature articles) about your cell part....
Part 2: Identify one or more review articles (or primary literature articles) about your cell part. You may use either PubMed, Google Scholar, Science Direct, and/or Web of Knowledge. If you have trouble finding articles about your cell part, be sure that you search using multiple different search terms and in multiple different places. For example if you were assigned Nucleus you might search for “Nucleus”, “Nuclear trafficking”, “Nuclear Lamina”, “Nuclear Pore complex” etc. When using PubMed, be sure to...
I post this question twice, please don't answer this post if you already answer the other...
I post this question twice, please don't answer this post if you already answer the other one, if you can answer different answer that's fine. REASON WHY I POST IT TWICE, I NEED TWO DIFFERENT VIEW. Discussion Hi All - this week you will learn about DNA - the molecule of life! You may think that protein-coding genes are the most important, but results from the Human Genome Project revealed that only about 2% of our DNA codes for protein...
please choose and write true answer only and quickly?? The key elements of domestic violence are...
please choose and write true answer only and quickly?? The key elements of domestic violence are all of the following except:       Apology.    Intimidation. Physical injury.     Humiliation. ********* Nurse Angela is working in the emergency department of Medical Center. She is conducting an interview with a victim of spousal abuse. Which step should the nurse take first? Establish a rapport with the victim and the abuser. Request the presence of a security guard Ensure privacy for interviewing...
Please read through the article below and answer the question at the end of the article....
Please read through the article below and answer the question at the end of the article. High-Performing Teams Need Psychological Safety. Here’s How to Create It “There’s no team without trust,” says Paul Santagata, Head of Industry at Google. He knows the results of the tech giant’s massive two-year study on team performance, which revealed that the highest-performing teams have one thing in common: psychological safety, the belief that you won’t be punished when you make a mistake. Studies show...
Develop a Traceroute application in python using ICMP. Your application will use ICMP but, in order...
Develop a Traceroute application in python using ICMP. Your application will use ICMP but, in order to keep it simple, will not exactly follow the official specification in RFC 1739.. Below you will find the skeleton code for the client. You are to complete the skeleton code. The places where you need to fill in code are marked with #Fill in start and #Fill in end. Code from socket import * import os import sys import struct import time import...
Read the case and answer the following Multiple choice questions. There are 5 questions total, where...
Read the case and answer the following Multiple choice questions. There are 5 questions total, where some of them might have more than one correct answers. You can choose more than one options where you think is suitable for the above question. PERFORMANCE MANAGEMENT Project Manager Oliver Caine skimmed his notes as he waited for Ben Robins to come to the meeting room. He hoped Ben would arrive soon, as he wanted to get the con-versation finished quickly. Ben walked...