41.What are the features of UDDI?Following are the features of UDDI −
42.What are the primary security issues with web services?There are three specific security issues with web services −
43.Which component of Web service describes interfaces to web services?UDDI describes interfaces to web services. 44.Which language UDDI uses?WSDL is the language that UDDI uses. 45.Is XML-RPC is platform-dependent?No! XML-RPC is platform-independent. 46.If a client sends an XML request to a server, can we ensure that the communication remains confidential?Yes! As XML-RPC and SOAP run primarily on top of HTTP and HTTP has support for Secure Socketes Layer SSL. Communication can be encrypted via SSL. 47.If a client connects to a web service, how do we identify the user? Is the user authorized to use the service?The following options can be considered but there is no clear consensus on a strong authentication
scheme. 48.What do you mean by Web services manageability?Web services manageability is defined as a set of capabilities for discovering the existence, availability, health, performance, usage, as well as the control and configuration of a web service within the web services architecture. As web services become pervasive and critical to business operations, the task of managing and implementing them is imperative to the success of business operations. 49.How to handle Network security threats in Web services?There are two possible solutions −
50.What are web services ?Main characteristics of the Web Services are :
for example in simple words , when we call somebody so the person dialing and calling is the client application , while person receiving the call is server applicationand "hello" word is the protocol as similar to HTTP request . 51.What is the difference between SOA and a web service?SOA (Service-Oriented Architecture) is an architectural pattern that makes possible for
services to interact with one another independently. 52.What is REST?REST (REpresentational State Transfer) is an architectural style by which data can be transmitted over transport protocol such as HTTP(S). 53.What is the difference between a REST web service and a SOAP web service?Below are the main differences between REST and SOAP web service
54.How to decide which one of web service to use REST or SOAP?“REST vs SOAP” we can rephrased to "Simplicity vs Standard". Of course, "Simplicity" with REST at most cases wins, it wins in performance, scalability and support for multiple data formats, but SOAP is favored where service requires comprehensive support for security (WS-security) and transactional safety (ACID). 55.What is JAX-WS?JAX-WS (Java API for XML Web Services) is a set of APIs for creating web services in XML format. 56.What is JAXB?JAXB (Java Architecture for XML Binding) is a Java standard that defines how Java objects are converted from and to XML. It makes reading and writing of XML via Java relatively easy. 57.Can we send soap messages with attachments?Yes, we can send different formats such as PDF document, image or other binary file with soap messages as an attachment. Messages send using the binary data. SOAP messages is attached with MIME extensions that come in multipart/related. 58.What is MTOM?MTOM (Message Transmission Optimization Mechanism) is a mechanism for transmitting large binary attachments with SOAP messages as raw bytes, allowing for smaller messages. 59.What is XOP?XOP (XML-binary Optimized Packaging) is a mechanism defined for the serializationof XML Information Sets that contain binary data, as well as deserialization back into the XML Information Set. |