Patricia Teoh

Greenhorn
+ Follow
since Feb 25, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Patricia Teoh

I tried using the h:commandLink and h:outputLink and it didn't work. Got it solved by using c:forEach tag in jstl. This is due to the c:forEach being compile time loop and ui:repeat render time loop. The values of c:forEach loop will be preloaded thus the parameters will be populated when it encounters the s:link tag.

I guess this is the reason why it works with the c:forEach tag.
14 years ago
JSF
Anyone can help out with this? It has been bothering me for quite some time. Not sure if there are other alternatives.
14 years ago
JSF
Hi All,

I am currently using the jsf facelets and core tags to perform a loop to populate a menu list. Within each menu entry, there will be a list of parameter inside it. So in order for me to print out the link, I would need to do a nested loop to pass in all the parameter list into the s:link. However, i am unable to. I did a <h:outputText> to print out the parameter values and I managed to but when I tried to pass the values into the <f:param> tag, seems like it doesn't display the parameters at all.



Is this a problem with nested loops? Please advise.

Thanks
14 years ago
JSF
I am tasked to create a web service that sits in the Weblogic server. I have a few questions after doing some readings:

1. Does the web service that sits on the Weblogic server use the weblogic's stub generator or I am free to use any other code generator like from JWSDP?

2. If I adhere to the SOAP messaging style, interoperability will not be an issue. If not, what do I have to make sure that the service can be called by other systems?

I hope there is someone out there who can help me by answering questions. Might sound studpid but I really want to learn.

Thanks
16 years ago
Hi,
I am having a problem whereby I have a servlet to redirect to a specific jsp. I have another menu which is being generated by servlets. Both will have to load at the same time. I have tried using jsp:include tag to generate the menu but it seems to redirect the whole page to just the menu part. I want just small portion of the page to be the menu and the other portion to be the redirected jsp. Is there any way to create the menu without re-writing the menu into a jsp but by using the servlet to generate it (since it's already there)?
Thank you very much for any help that I can get.
19 years ago