1.
Which JAXR interface allows querying a business registry using SQL commands?
2.
A company is building a Java EE 5 purchase order processing system. This system will integrate with an external invoicing system as part of the purchase order
approval process. A developer created a new client application to access the invoicing system using request-response, but a new service call is receiving errors
every time it invokes the necessary Web service. Which statement is true about the Body element of the SOAP reply message?
3.
A developer needs to write a Web service that supports user sessions that timeout after 120 seconds. Which configuration file is correct for the developer use?
4.
A developer is asked to consult on a Web services project and assist the team with a good design approach on a new project. The team members disagree on
whether to use WSDL or Java first. Several members are skilled with XML and see a schema and WSDL as the correct place to start. The team has also learned
the deadline for this project has been moved up and another team plans to reuse their code. Which statement is true about the proper course of action to take in
this situation?
5.
Which statement is true about JAX-WS dynamic invocation?
6.
A client sends a required SOAP header as a SOAP message. The server-side process determines that information in the header is invalid and generates a SOAP
fault. What is the appropriate fault code for this type of SOAP fault?
7.
A document-style service defines a document passed to the Web service using xsd:anyType in the WSDL file that describes the service. How should the document
be typed in Java?
8.
A developer who recently added message optimization support to the company's Web services is tasked with explaining how the next crop of WSIT client
applications will use the feature. Which statement is true?
9.
Given:
1. try { // Call Web service Operation
2. org.me.calculator.client.CalculatorWS port =
3. service.getCalculatorWSPort();
4. // TODO initialize WS operation arguments here
5. int i = 3;
6. int j = 4;
7. // TODO process result here
8. int result = port.add(i, j);
9. out.println("Result: " + result);
10.
11. } catch (Exception ex) {
12. out.println("Exception: " + ex);
13. }

Assume Reliable Messaging is used and the code is correct except for what is missing at line 10. Which code fragment must be placed at line 10?

10.
Which situation requires the client to use the Dispatch interface to access the Web service?