» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with WSDL + service-oriented

JBI/SOA Tips: Consider using a StaX-based parser to process huge XML datasets

Choose the right XML parser for your implementation. You have a choice of using either a DOM-based, SAX-based or a StaX-based XML parser.

XML: del.icio.us/tag/xml

JBI/SOA Tips: Consider using a StaX-based parser to process huge XML datasets

Choose the right XML parser for your implementation. You have a choice of using either a DOM-based, SAX-based or a StaX-based XML parser.

JAX-WS: del.icio.us/tag/jax-ws

JBI/SOA Tips: Consider using a StaX-based parser to process huge XML datasets

Choose the right XML parser for your implementation. You have a choice of using either a DOM-based, SAX-based or a StaX-based XML parser.

BPEL: del.icio.us tag/BPEL

JBI/SOA Tips: Separation of Concerns

The Abstract WSDL documents business-specific information. The Concrete WSDL however is technical in nature and may have nothing to do with business-specific information.

BPEL: del.icio.us tag/BPEL

JBI/SOA Tips: Cache wherever possible

Repeated calls over the network can degrade the performance of your system. For read intensive type services that provide relatively static content like historic data or catalog information, cache as much data as you can ...

XML: del.icio.us/tag/xml

JBI/SOA Tips: Cache wherever possible

Repeated calls over the network can degrade the performance of your system. For read intensive type services that provide relatively static content like historic data or catalog information, cache as much data as you can ...

JAX-WS: del.icio.us/tag/jax-ws

JBI/SOA Tips: Cache wherever possible

Repeated calls over the network can degrade the performance of your system. For read intensive type services that provide relatively static content like historic data or catalog information, cache as much data as you can ...

BPEL: del.icio.us tag/BPEL

JBI/SOA Tips: Security/Performance Tradeoffs

If multiple short messages are being exchanged between the client and the service, setting up security either through SSL over HTTPS or WS-Security may not be optimal because of the handshake overhead involved in setting it up.

JAX-WS: del.icio.us/tag/jax-ws

JBI/SOA Tips: Security/Performance Tradeoffs

If multiple short messages are being exchanged between the client and the service, setting up security either through SSL over HTTPS or WS-Security may not be optimal because of the handshake overhead involved in setting it up.

BPEL: del.icio.us tag/BPEL

JBI/SOA Tips: Security/Performance Tradeoffs

If multiple short messages are being exchanged between the client and the service, setting up security either through SSL over HTTPS or WS-Security may not be optimal because of the handshake overhead involved in setting it up.

XML: del.icio.us/tag/xml

JBI/SOA Tips: Stateless vs Stateful

WSDL-based Web Services define a stateless model and an unordered set of operations. WSDL and therefore WSDL-based web services do not have the concept of state ...

XML: del.icio.us/tag/xml

JBI/SOA Tips: Stateless vs Stateful

WSDL-based Web Services define a stateless model and an unordered set of operations. WSDL and therefore WSDL-based web services do not have the concept of state ...

JAX-WS: del.icio.us/tag/jax-ws

JBI/SOA Tips: Do not use the SOAP action header for message routing purposes

Do not rely on the SOAP action header for message routing purposes. The HTTP binding SOAP action field is not available in the SOAP 1.2 specification and has already been deprecated in the WS-I basic profile specification too.

BPEL: del.icio.us tag/BPEL

JBI/SOA Tips: Do not use the SOAP action header for message routing purposes

Do not rely on the SOAP action header for message routing purposes. The HTTP binding SOAP action field is not available in the SOAP 1.2 specification and has already been deprecated in the WS-I basic profile specification too.

XML: del.icio.us/tag/xml

JBI/SOA Tips: Do not use the SOAP action header for message routing purposes

Do not rely on the SOAP action header for message routing purposes. The HTTP binding SOAP action field is not available in the SOAP 1.2 specification and has already been deprecated in the WS-I basic profile specification too.

JAX-WS: del.icio.us/tag/jax-ws

JBI/SOA Tips: Be aware of SOAP Verbosity (Message size overhead)

Depending on the nesting levels of the parameter types, XML and SOAP message overhead can grow significantly.

XML: del.icio.us/tag/xml

JBI/SOA Tips: As much as possible, avoid using Base64 Encoded/Raw bytes in the message Body

At times an XML could contain characters or declarations that are not supported by SOAP or the runtime - examples are, DTD declarations, binary data, locale specific character encoding, etc. In such cases you may have to use Base64 encoding of the raw byt

XML: del.icio.us/tag/xml

JBI/SOA Tips: As much as possible, avoid using Base64 Encoded/Raw bytes in the message Body

At times an XML could contain characters or declarations that are not supported by SOAP or the runtime - examples are, DTD declarations, binary data, locale specific character encoding, etc. In such cases you may have to use Base64 encoding of the raw byt

JAX-WS: del.icio.us/tag/jax-ws

JBI/SOA Tips: As much as possible, avoid using Base64 Encoded/Raw bytes in the message Body

At times an XML could contain characters or declarations that are not supported by SOAP or the runtime - examples are, DTD declarations, binary data, locale specific character encoding, etc. In such cases you may have to use Base64 encoding of the raw byt

BPEL: del.icio.us tag/BPEL

JBI/SOA Tips: Use strongly typed messages - Avoid use of xsd:any to represent the entire message Body

You have to stay away from the tendency to use an xsd:string element to represent your whole message body.

JAX-WS: del.icio.us/tag/jax-ws

JBI/SOA Tips: Use strongly typed messages - Avoid use of xsd:any to represent the entire message Body

You have to stay away from the tendency to use an xsd:string element to represent your whole message body.

BPEL: del.icio.us tag/BPEL

JBI/SOA Tips: Expose Request/Response Message Exchange Patterns to external Clients

Expose Coarse-Grained Service Interfaces to external Clients. Do not expose service interfaces that are fine-grained. Fine-grained service interfaces will kill system performance.

JAX-WS: del.icio.us/tag/jax-ws

SOA Tips: Do not mix style/use in the same service

In the same service either expose all your operations with document/literal or as rpc/literal. Do not mix the style/use alternatives in the same Service.

JAX-WS: del.icio.us/tag/jax-ws

JBI/SOA Tips: Use strongly typed messages - Avoid use of xsd:string to represent the entire message Body

You have to stay away from the tendency to use an xsd:string element to represent your whole message body.

JAX-WS: del.icio.us/tag/jax-ws

JBI/SOA Tips: Expose Request/Response Message Exchange Patterns to external Clients

When exposing a service interface to external clients, always expose Request/Response Message Exchange Patterns (MEPs) as much as possible since they work best with HTTP transports and provide interoperability.

XML: del.icio.us/tag/xml

JBI/SOA Tips: Expose Request/Response Message Exchange Patterns to external Clients

When exposing a service interface to external clients, always expose Request/Response Message Exchange Patterns (MEPs) as much as possible since they work best with HTTP transports and provide interoperability.

JAX-WS: del.icio.us/tag/jax-ws