the description element inside of web-resource-collection.
Joe Man
Ranch Hand
Joined: Feb 17, 2002
Posts: 71
posted
0
<!ELEMENT web-resource-collection (web-resource-name, description?, url-pattern*, http-method*)> e.g <web-resource-collection> <web-resource-name>Enterprise App</web-resource-name> <description>The Description goes here</description> <url-pattern>/EnterApp/*</url-pattern> <http-method>GET</http-method> </web-resource-collection> Question: Does the optional <description> element must be placed between <web-resource-name> and <url-pattern> elelments? Can it go after the <http-method> element?
Sun Certified Web Component Developer for the J2EE Platform<br />Sun Certified Programmer for the Java 2 Platform
Deepti Chalichama
Greenhorn
Joined: May 01, 2002
Posts: 25
posted
0
The order of the elements is important. They should appear in the order given in the specs The optional <description> element if present should be placed between <web-resource-name> and <url-pattern>. Hope this helps Regards, Deepti
Joe Man
Ranch Hand
Joined: Feb 17, 2002
Posts: 71
posted
0
Thanks Deepti! I appreciate your help.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: the description element inside of web-resource-collection.