Samuel Giannotti

Greenhorn
+ Follow
since Nov 07, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Samuel Giannotti

Hi everybody,

It seems there is a conflict between the two specifications WS-1 Basic Profile and WSLD 1.1 spec.

In the BP there is a rule about WSDL document that says:

A wsdl:message in a DESCRIPTION containing a wsdl art that uses the element attribute MUST refer, in that attribute, to a global element declaration.

After this some samples about incorrect xml fragments are listed:

<message name=�GetTradePriceInput�>
<part name=�ticketSymbol� element=�xsd:string�/>
<part name=�time� element=�xsd:timeInstant�/>
</message>

The explanation about the incorrect fragment says (incorrect because xsd:string is not a global element), but this xml fragment was extracted from WSDL 1.1 specification.

Wich of them I�m supposed to trust for the exam?

Thanks,
Samuel Giannotti
SCJP, SCWCD, SCEA
Doing some simulate tests I notice that the real thing that we need to know about Design Patterns is where we should use each of them. So if someone could give some explanation about these patterns (Value Objects, MVC, Data Access Object, Business Delegate), or at least indicate where I can find any material to study.
[This message has been edited by Samuel Giannotti (edited November 08, 2001).]
[This message has been edited by Samuel Giannotti (edited November 08, 2001).]
Can I use the ServletContext method - public ServletContext getContext(java.lang.String uripath) - to get the ServletContext object from a servlet in the same WebServer, but running in a different web application?