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...
Normal Distribution Problems Include any pertinent information used in your calculations: z-scores, table areas, etc. In...
Normal Distribution Problems Include any pertinent information used in your calculations: z-scores, table areas, etc. In other words, briefly describe how you came up with your answer. 4. A bag of potato chips claims to contain 7 oz. of potato chips. Random sampling determines that the bags contain an average of 7.2 oz. with a standard deviation of 0.081 oz. a. What is the maximum weight that 20% of the bags contain less than? b. What is the minimum weight...
Fluorine-18, which has a half-life of 110 min, is used in PET scans If 180. mg...
Fluorine-18, which has a half-life of 110 min, is used in PET scans If 180. mg of fluorine-18 is shipped at 7:00 A.M., how many milligrams of the radioisotope are still active when the sample arrives at the radiology laboratory at 4:10 P.M.? Express your answer to three significant figures and include the appropriate units I have posted this question and another question that did not get answered yesterday. Didn't know if you can check into this?
Case Study 1 Calculations: Calculate the client's target heart rate using the Karvonen formula. Training Program:...
Case Study 1 Calculations: Calculate the client's target heart rate using the Karvonen formula. Training Program: Design a full 12-week periodized training program for the client described in the Client Profile. Be very specific as you design the training program. This is an opportunity for you to demonstrate your full comprehension of the information and concepts discussed throughout the course. List the types of exercise, duration, sets, reps, rest intervals, and so on. Include the following in your case study...
Case Study 2 Calculations: Calculate the client's target heart rate using the Karvonen formula. Training Program:...
Case Study 2 Calculations: Calculate the client's target heart rate using the Karvonen formula. Training Program: Design a full 12-week periodized training program for the client described in the Client Profile. Be very specific as you design the training program. This is an opportunity for you to demonstrate your full comprehension of the information and concepts discussed throughout the course. List the types of exercise, duration, sets, reps, rest intervals, and so on. Include the following in your case study...
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...
Subject:EC230/EEC2225 Section 1 Guiding children's behavior. But I chose psychology to be easy. I need this...
Subject:EC230/EEC2225 Section 1 Guiding children's behavior. But I chose psychology to be easy. I need this answer by today. At this point in the course, you have learned several things about punishment, including the origins, how it has been used, and the negative consequences that produce long-term effects. In a 1-2 page paper, written in APA format with proper spelling and grammar, address the following: When guiding children's behavior, why should punishment not be used? What are the negative impacts...
Our new service manager starts work today! This is great news! As our business starts to...
Our new service manager starts work today! This is great news! As our business starts to expand, we must move our software project along. You will need to talk to some of our employees to better understand the functionality and requirements for the proposed system. This is important because they are the key stakeholders of the system. You should make a list of employees who you will want to interview. I suggest that you learn the process for scheduling an...
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...
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...