Useful Resources For Visual Web JSF Development in Netbeans
The Visual Web JSF Development features have gone through quite a bit of branding and packaging changes over the last few years from Creator to Visual Web Pack to being available intergrated out of the box with netbeans.There are a lot of useful resources available to help developers using these features, Here is a collection of links to those.
Netbeans Visual Web Pack FAQs - http://wiki.netbeans.org/wiki/view/NetBeansVWPUserFAQ
Netbeans 6 Docs - http://www.netbeans.org/kb/trails/web.html , http://www.netbeans.org/kb/60/web/index.html
NB Support Alias Archive - http://www.nabble.com/Visual-Web-f24578.html
Netbeans Visual web Pack (NB 5.5.1) - http://www.netbeans.org/kb/55/vwp-index.html
Creator Tutorials - http://developers.sun.com/jscreator/learning/tutorials/2/index.jsp
Creator How to - http://developers.sun.com/jscreator/reference/techart/2/index.jsp
Creator FAQs - http://developers.sun.com/jscreator/reference/faqs/index.jsp
Creator Forum - http://forum.java.sun.com/forum.jspa?forumID=881
Creator Blogs - http://developers.sun.com/jscreator/community/blogs/index.jsp


How do i register a remote mysql database in
Netbeans 6.1?
Posted by Rohan on May 07, 2008 at 03:28 AM PDT #
Hi There,
Please post your support questions to the Netbeans mailing lists at
http://www.netbeans.org/community/lists/
for better response.
Thanks
K
Posted by Kishore on May 11, 2008 at 10:53 PM PDT #
hi my name is maryam.
i have problem when i use jsf-webui and netbeans
when swap page to another page and when came back ,then all pictures in my table lost.
page 1------->page2---------->page1 then my table's picture lost!!!!
my code:
table border="3" background="resources/Image/bt.gif">
<tr>
<td>
test table
</td>
<td>
test table
</td> <td>
test table
</td> <td>
test table
</td>
</tr>
</table>
Posted by Maryam on September 19, 2008 at 02:25 PM PDT #
Can you try setting "background="/resources/Image/bt.gif" ? (The relative path resources/Image may be failing because the current directory is somehow reset when switching pages).
You may also want to file a bug at http://www.netbeans.org/community/issues.html , with a reproducible testcase.
Posted by Karthikeyan Rajeswaran on September 19, 2008 at 03:32 PM PDT #
but when i write background="http://localhost:8080/tempstore/resources/Image/bt.gif" all bug in my project resolve!
what can i get url in visual web jsf?
like in jsf i can use <%=basepath%> but i can't use it in jsf! even i can't use <jsp:expression></jsp:expression> !!!
i am tired.
tank you for help me.
Posted by Maryam on September 20, 2008 at 02:37 AM PDT #
From http://www.nabble.com/JSF-1.2_03-confusion....please-help-td9498275.html:
...in jsf 1.1 i used this method
<input type="text" value =
"${pageContext.request.contextPath}"/>
...I would recommend using the following expression to
get the contextPath:
#{facesContext.externalContext.requestContextPath}
Does that help?
Posted by Karthikeyan Rajeswaran on September 20, 2008 at 10:02 AM PDT #
i can't use this method,however
Tank you.
Posted by maryam on November 21, 2008 at 11:36 PM PST #