strange problem with ADF faces and tomcat versions

2006-09-30 Thread Legolas Woodland
Hi thank you for reading my post i have faced a very strange problem with ADF faces and tomcat. is there any condition that an ADF Faces application works fine in my computer (on both OC4J and TOMCAT ) but does not works in production tomcat ? indeed i managed all database stuff and also i add

Re: can we post to another web application from a button action ?

2006-09-27 Thread Legolas Woodland
(); return null; } On 9/26/06, Legolas Woodland [EMAIL PROTECTED] wrote: Thank you for reply. what about sending them from server side ? if i send user to that url from serverside i can make my database change and then send him/her to other web site. can i have an action for outputlink and also

how i can forward to a jsf page from a servlet ?

2006-09-27 Thread Legolas Woodland
Hi Thank you for reading my post how i can forward to a jsf page in my web application from a servlet ? thanks

why i can not use f:param inside an html form?

2006-09-27 Thread Legolas Woodland
Hi Thank you for reading my post what is wrong with the following code ? [code] form action=https://www.3rdpartyWeb.com/CardServices/controller; method=GET enctype=multipart/form-data name=submissionform f:param value=#{Session.MID} name=MID id=MID/ f:param

can we set some request parameter using an action method ?

2006-09-27 Thread Legolas Woodland
Hi Thank you for reading my post can we set some request parameter using action methods? thanks

Re: can we set some request parameter using an action method ?

2006-09-27 Thread Legolas Woodland
) at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126) ... 28 more is there anything that i can do for this ? Grant Smith wrote: I haven't tried this, but how about something like: FacesContext.getCurrentInstance ().getExternalContext().getRequestParameterMap().put(key,value); On 9/27/06, Legolas

problem with using comandLink and navigation to 3rd party web site

2006-09-27 Thread Legolas Woodland
Hi Thank you for reading this post. I was in a need for an automatic form submission when user reach payment page , but as i could not handle it in that way i tried to use a commandLink to submit the form and redirect the user to 3rdparty web site , here is what i have done and the exception that

how i can post a form with some parameters using JSF ?

2006-09-27 Thread Legolas Woodland
Hi thank you for reading my post how i can post a form using jsf ? I need to have a form , i should put some attribute (parameters) inside the form and then submit that form using post method . indeed the form should have an action which is the 3rdparty web site url i also calculate some

how i can post a form with some parameters using JSF ?

2006-09-27 Thread Legolas Woodland
Hi thank you for reading my post how i can post a form using jsf ? I need to have a form , i should put some attribute (parameters) inside the form and then submit that form using post method . indeed the form should have an action which is the 3rdparty web site url i also calculate some

can we post to another web application from a button action ?

2006-09-26 Thread Legolas Woodland
Hi Thank you for reading my post I need to use post method to send some parameters to a web site, now , in my web application which is based on jsf , i do not know how i can do this as parameters has their name and also i should compute their values before i post them to other web site.

Re: can we post to another web application from a button action ?

2006-09-26 Thread Legolas Woodland
database change and when he/she clicked on it i post the parameter to that website? thanks Andrew Robinson wrote: Do you want to post from the client or the server? If from the client, just use the normal method. You can use h:outputLink with embedded f:param elements. On 9/26/06, Legolas Woodland

how to access a managed bean from a button action listener ?

2006-09-21 Thread Legolas Woodland
Hi thank you for reading my post how i can access a managed bean from a button action listener ? for example i have a managed bean named session and its scope is session , i used it to store user details until he/she logout and when he/she pressed the logout button i need to change some of that

Does file upload component works inside a jsf portlet ?

2006-05-04 Thread Legolas Woodland
Hi Thank you for reading my post Does file upload component works inside a portlet ? thanks

Re: Does file upload component works inside a jsf portlet ?

2006-05-04 Thread Legolas Woodland
Thank you for reply , but, is there any solution to upload a file inside a jsf based portlet ? On 5/4/06, Mike Kienenberger [EMAIL PROTECTED] wrote: On 5/4/06, Legolas Woodland [EMAIL PROTECTED] wrote: Thank you for reading my post Does file upload component works inside a portlet ?I'm pretty

Re: Does file upload component works inside a jsf portlet ?

2006-05-04 Thread Legolas Woodland
that the extension filter does.On 5/4/06, Legolas Woodland [EMAIL PROTECTED] wrote: Thank you for reply , but, is there any solution to upload a file inside a jsf based portlet ? On 5/4/06, Mike Kienenberger [EMAIL PROTECTED] wrote: On 5/4/06, Legolas Woodland [EMAIL PROTECTED] wrote: Thank you

Re: [OT]Problem with accessing form Element using javaScript

2006-04-02 Thread Legolas Woodland
: elem.style.cssText = "..."; this should also work. cheers, Gerald On 4/1/06, Laurie Harper [EMAIL PROTECTED] wrote: Legolas Woodland wrote: Hi thank you for reading my post. I have this problem in my web application : generated html which i view in my b

[OT]Problem with accessing form Element using javaScript

2006-03-30 Thread Legolas Woodland
Hi thank you for reading my post. I have this problem in my web application : generated html which i view in my browser has this : [code] span id=form1:staticText8 style=border-width: 1px; border-style: solid; border-color: rgb(0, 0, 0) rgb(0, 0, 0) rgb(0, 0, 0) rgb(0, 0, 0); height: 15px;

Re: [OT]Problem with accessing form Element using javaScript

2006-03-30 Thread Legolas Woodland
ry case. Apart from that, getting the dom element through the generated id is not best practice. Use forceId="true" in the jsp tag to be sure that you can get the id on client in a predictable manner. cheers, Gerald On 3/31/06, Legolas Woodland [EMAIL PROTECTED] wrote: Hi thank y

[ADF faces] Command button does not accept style attribute?

2006-03-29 Thread Legolas Woodland
Hi Thank you for reading my post I am trying to use ADF faces , i have a command button like : af:commandLink immediate=true text=Component Guide style=left: 264px; top: 150px; position: absolute action=guide/ ad it rerun an error that say : Attribute style invalid for tag commandLink

[ADF Faces]Could not find renderer for CoreCommandLink

2006-03-29 Thread Legolas Woodland
Hi Thank you for reading my post. I get the following in application server log file and command link button does not show in the page here is my jsf code af:commandLink immediate=true text=Component Guide inlineStyle=left: 264px; top: 150px; position: absolute action=guide/ and

is there a component in Myfaces or in the web which can show resource string of a given key

2006-03-28 Thread Legolas Woodland
Hi Thank you for reading my post. I am looking for a component that can show , string resource of a given Key. I mean a component that i sets some of its property and then i could set the string resource key in my backing bean and it shows value for that key in html page. Thanks

How i can show current timeStamp in jsf

2006-03-26 Thread Legolas Woodland
Hi Thank you for reading my post How i can show current timestamp in jsf ? thanks

Re: How i can show current timeStamp in jsf

2006-03-26 Thread Legolas Woodland
Andreas Zeller - zit-systems wrote: Hey Legolas, Timestamp? java.util.Calendar.getInstance().getTime() will give you the current time and date... Does that help you? Andreas Legolas Woodland wrote: Hi Thank you for reading my post How i can show current timestamp in jsf

I am trying to run a sample application of myfaces in tomcat 5.5.9 but it return NullPointerException

2006-03-24 Thread Legolas Woodland
Hi Thank you for reading my post. I am trying to test a sample myfaces application in tomcat 5.5.9 , but it return the following exception: java.lang.NullPointerException at javax.faces.webapp.UIComponentTag.setupResponseWriter(UIComponentTag.java:615) at

Does any one used zk1 for ajax purpose ?

2006-03-20 Thread Legolas Woodland
Hi Does any one used http://zk1.sourceforge.net/ for ajax purpose ? how does it compare with other ajax frameworks? Thanks

newbee question about navigation.

2006-03-20 Thread Legolas Woodland
Thank you for reading my post I have a button in one of my page which i want the application to navigate to another page when user pressed that button . i made the button like the folwoing h:commandButton action=Logout title=Logout label=Logout value=Logout /h:commandButton and my

newBee question : what are these additional declaration in web.xml for jsf stuff.

2006-03-20 Thread Legolas Woodland
There are two declaration in web.xml that i can not understand these are : servlet servlet-nameFaces Servlet/servlet-name servlet-classjavax.faces.webapp.FacesServlet/servlet-class load-on-startup1/load-on-startup /servlet !-- Faces Servlet Mapping --

Re: newbee question about navigation.

2006-03-20 Thread Legolas Woodland
Thank you , the solution works fine :-) Joey Geiger wrote: commandButton and commandLink need to be surrounded by a form. h:form/h:form There are cases where commandLink will work without a form, but I've run into issues with that. Legolas Woodland wrote: Thank you for reading my post I

Re: newBee question : what are these additional declaration in web.xml for jsf stuff.

2006-03-20 Thread Legolas Woodland
, dean Legolas Woodland wrote: There are two declaration in web.xml that i can not understand these are : servlet    servlet-nameFaces Servlet/servlet-name    servlet-classjavax.faces.webapp.FacesServlet/servlet-class    load

Re: Yet another calendar (also works in Java Studio Creator)

2006-03-17 Thread Legolas Woodland
Edwin Goei wrote: On 3/17/06, Legolas Woodland [EMAIL PROTECTED] wrote: Thank you for reading my post. Does this component use Creator theming system ? I mean what will happen if i disable the Them system of creator by removing the them link , what will happen to your component

Re: Yet another calendar (also works in Java Studio Creator)

2006-03-16 Thread Legolas Woodland
Matthias Wessendorf wrote: Edwin has already an Apache account ;-) http://www.edwingo.org/ -Matthias On 3/11/06, Dennis Byrne [EMAIL PROTECTED] wrote: Great news Edwin ! You'll want to read this http://www.apache.org/licenses/ , fill out http://www.apache.org/licenses/icla.txt

Re: How Does JDeveloper Compare with Java Studio Creator

2006-03-04 Thread Legolas Woodland
Martin Marinschek wrote: Thing = embedded OC4j in JDeveloper. I didn't try JSC so far - would the performance be better there? Any experiences? regards, Martin No performance is not better there. you will hang for ever in case that you open a project with 200 jsp files. best IDE

Re: How Does JDeveloper Compare with Java Studio Creator

2006-03-02 Thread Legolas Woodland
Mike Duffy wrote: Thx Werner. Do you know if Java Studio Creator supports MyFaces and Tomahawk? Mike It does not support MyFaces and Tomahawk in its designer. so you can not import them into JSC and use them in its page designer , until you make some required files that represent

Some simple questions about JSF frameworks ....?

2006-02-28 Thread Legolas Woodland
Hi Thank you for reading my post. I want to know what additional features SEAM from jboss ,Clay , Shale from Apache and Facelets bring to jsf. I will be happy if some one give me a simple answer. Thank you

[other] Does any one has experience with Daylirazor Hosting?

2006-02-15 Thread Legolas Woodland
Hi Thanks for reading my post Does any of member here used www.dailyRazor.com hosts for their java based web applications ? I want to purchase an ImpactRazor from them , its price is 10.95/month if i buy 1 year hosting plan. i think its price is good but i have no experience with them. any

How i can cache some part of a jsf file , which change in backing bean?

2006-02-10 Thread Legolas Woodland
Hi Thank you for reading my post. How i can cache some parts of a jsf file ? Indeed , i want to cache an image which i assign its image url in backing bean. upon visitor request creation of this image is very heavey , so i want to cache it for some hours. thanks

Re: [other]Borland want to sell its IDE products.....

2006-02-09 Thread Legolas Woodland
I think , who will buy these stuff , All company that has money to by these product line has their own stuff (IBM ,BEA ,SUN ,MS,ORACLE) , is there any other company that has enough cash to buy those products ? how much those products costs ? for example how much should buyer pay to get Jbuilder

Where i can download ADF faces which are donated to Myfaces ?

2006-02-08 Thread Legolas Woodland
Hi Thank you for reading my post where i can find a download able package of Cheeroke? (Oracle ADF faces which are donated to Apache) Thank you

[other]Borland want to sell its IDE products.....

2006-02-08 Thread Legolas Woodland
Hi just look at http://blogs.borland.com/davidi/archive/2006/02/08/23013.aspx it say that borland is going to sell its IDEs , what will happen next ? who will buy jdeveloper ?

Is there any color picker components which works with JSC components?

2006-02-06 Thread Legolas Woodland
Hi thank you for reading my post. I need a color picker component to use in my jsf portlet application which I am developing with JSC is there any color picker component available in OSS or Free license ? thanks

Files upload inside a jsf portlet

2006-02-05 Thread Legolas Woodland
Hi thank you for reading my post. I need file upload facility inside a jsf portlet , now i do not know how to implement this feature because i use JSC and its file upload does not works inside a portlet. can some one tell e whether Myfaces file upload works inside portlet or not ? Thank you.

Re: {ANN] Oracle JDeveloper 10.1.3 Production Released

2006-02-02 Thread Legolas Woodland
Jonas Jacobi wrote: In case you wonder why I have been quite ;) Today we released Oracle JDeveloper 10.1.3 Studio production release - you can download it from here with plenty of tutorials and other goodies. There is also improved doc on ADF Faces. Re post Hi , it is very good news

What is different between a jsf portlet and plain jsf application

2006-02-02 Thread Legolas Woodland
Hi Thank you for reading my post. I want to know what is different betweena jsf portlet and a plain jsf web application. imagine that i made a web application using myfaces components , now i wannt to deploy that web application into some portlet container like JetSpeed . if i do not need any

Re: {ANN] Oracle JDeveloper 10.1.3 Production Released

2006-01-31 Thread Legolas Woodland
Jonas Jacobi wrote: In case you wonder why I have been quite ;) Today we released Oracle JDeveloper 10.1.3 Studio production release - you can download it from here with plenty of tutorials and other goodies. There is also improved doc on ADF Faces. Hi , it is very good news I will

How to retrive request parameter in jsf pages

2006-01-31 Thread Legolas Woodland
Hi thank you for reading my post. how i can retrieve request parameter in jsf ? for example if i have : http://127.0.0.1/myproj/faces/viewMessage.jsp?messageID=15 how i can retrieve that message ID in backing bean of jsf page ?

a problem with servlet url mapping , a complex problem.

2006-01-22 Thread Legolas Woodland
a problem with servlet url mapping , a complex problem. Hi Thank you for reading my post. My problem is about using a Chart library which works well in jsf application but it does not works in JSF portlets. I think i find the problem but i do not know the solution. to use this charting

how i can change this tags usage to jsf standard mode.

2006-01-18 Thread Legolas Woodland
Hi Thank you for reqding my post. how i can translate this tags to equal jsf tags (I mean how i should change useBean to jsf equal ones.) jsp:useBean id=pageViews class=de.laures.cewolf.example.PageViewCountData/ cewolf:chart id=line title=Page View Statistics type=line

problem when adding a jsp-config to web.xml to make jspf recognized as XML formatted files.

2006-01-14 Thread Legolas Woodland
Hi Thank you for reading mu post. I tried to add / change following items in web.xml for my jsf application to make suret hat application server treat jspf files as utf-8 (XML format). what i my web.xml changed section looks like after i add changes is: [code] ?xml version=1.0 encoding=UTF-8?

how i can open a browser windows using a button in jsf ?

2006-01-14 Thread Legolas Woodland
Hi Thank you for reading my post how i can open a browser windows using a button in jsf ? for example if i want to open a window which will show http://www.mywebsite.com?name=TestNamefamily=TestFamily and before opening the window i need to set those two variables. can some one help me with

How i can open a link in a browser window using a button ?

2006-01-13 Thread Legolas Woodland
Hi Thank you for reading my post. how i can open a pop-up browser ? I want to open a pop-up browser with a dynamic link which i make by using my parameters. is it possible to put a button on page and make some code to open a pop-up browser ? Can some one help me to do this ? I should tell

how to load string resources from bundle files in backing beans ?

2006-01-12 Thread Legolas Woodland
Hi Thank you for reading my message. I have a problem , I need to load some of my resource string from String bundle By string bundle i mean the .properties file that we use to make application i18n-ed . Now i need to load some of my key from bundle file in one of my jsf page backing bean.

Re: how to load string resources from bundle files in backing beans ?

2006-01-12 Thread Legolas Woodland
= bundle.getString("your key here"); regards, Cagatay Civici Thank you very much. it works  , what will happen if user change the locale by using the button that i provide ? will it return current locale ? Thank you On 1/12/06, Legolas Woodland [EMAIL PROTECTED] wrote: Hi

How to cache a page for some days (in server side) , and allow user to knwo the page OLD

2006-01-10 Thread Legolas Woodland
HiThank you for reading my post. I have a very heavy to create web page wich contain some chartI want users to be able to see the live report once per 2 days. This page contain some sophisticate query , so refreshing the page data could be very heavy job. so i want to allow users to see a

Is there any difference between binding using a Managed bean (defined in faces-config.xml) and an object,defined in backing bean class ?

2006-01-09 Thread Legolas Woodland
Hi thank you for reading my post. Is there any difference between binding using a Managed bean (defined in faces-config.xml) and an object defined in backing bean class ? in a tutorial i saw that author used a Managed beans to accomplish some jobs. he referenced to a Managed beans by using

A question about managed beans , how MB methods treated ?

2006-01-08 Thread Legolas Woodland
A question about managed beans , how MB methods treated ? Hi thank you for reading my post. I have a managed bean like the following defined in faces-config.xml managed-bean descriptionOver all report Bean/description managed-bean-nameOAllReport/managed-bean-name

How this problem with unicode characters can happen . it convert chatracters to #6546 .... after an action

2006-01-07 Thread Legolas Woodland
Hi Thank you for reading my post. I have a jsf application , i sets all page encodings to utf-8 but now after i enter some unicode data in a form and press submit it convert them all to #5454.. i attach the screen shots. I should say that I am using Creator studio 2 ea 2. Thank you

Re: JSF Chart Creator and JSF Client Side Validators

2006-01-05 Thread Legolas Woodland
Cagatay Civici wrote: Hi, JSF Chart Creator control requires JFreeChart to compile but as you guys said if it is not possible to include it in myFaces due to licensing issues the best solution for now might be to provide a link to it from MyFaces so users who need charting can find easily.

Re: JSF Chart Creator and JSF Client Side Validators

2006-01-05 Thread Legolas Woodland
. On 1/5/06, Legolas Woodland [EMAIL PROTECTED] wrote: Cagatay Civici wrote: Hi, JSF Chart Creator control requires JFreeChart to compile but as you guys said if it is not possible to include it in myFaces due to licensing issues the best solution for now might be to provide a link

Re: JSF Chart Creator and JSF Client Side Validators

2006-01-04 Thread Legolas Woodland
Martin Marinschek wrote: Sharing means you want to tell us about them or you want to donate them ;) ? regards, Martin On 1/3/06, Cagatay Civici [EMAIL PROTECTED] wrote: Hi, I have created a series of free components for JSF. All I want is to share them with you. JSF Chart

Re: JSF Chart Creator and JSF Client Side Validators

2006-01-04 Thread Legolas Woodland
Sorry if i post it twice , i think last time no one noticed at the end of email which i put m reply. Hi Thank you for providing these components as Im going to use them in my project which i build using Creator studio. i have some questions : 1-in your manual in step 2 you said that we should

Re: Is there any add remove List component available ?

2006-01-02 Thread Legolas Woodland
Simon Kitching wrote: On Mon, 2006-01-02 at 00:13 +0330, Legolas Woodland wrote: Hi Thank you for reading my posy. "Add remove list " is a component that has two list box and two buttons which facilitate selection of some items from available list to selected list. th

Re: HURRAY!!! SORTING IS WORKING!!!!

2006-01-01 Thread Legolas Woodland
he Creator Architect is very active in this list , maybe he could clarify some doubts. *overall view : It will be a good product when they port it to netbeans 5 for enhancing the editor , Fix its performance problems* Mike Legolas Woodland wrote: Mike wrote: It seems that my problem was that

Is there any add remove List component available ?

2006-01-01 Thread Legolas Woodland
Hi Thank you for reading my posy. Add remove list is a component that has two list box and two buttons which facilitate selection of some items from available list to selected list. there is one component like the above but much more completer in SJC , but it does not works well in a portlet

Can we use several package of jsf components together ?

2005-12-31 Thread Legolas Woodland
Hi Thank you for reading my post. can i use more than one package of jsf components in a page ? I mean , i use Creator studio , now i want to use some of myface components (menu) in a page that i create with Studio creator , will it cause problems ? does other components on the page wich from

Re: [Studio Creator] Re: Can we use several package of jsf components together ?

2005-12-31 Thread Legolas Woodland
Craig McClanahan wrote: On 12/31/05, Dennis Byrne [EMAIL PROTECTED] wrote: On that topic, I'm interested in working on the design time support for the MyFaces components, so that they run nicely in Creator, and contributing it back to the MyFaces project.We get this request (MyFaces

Re: HURRAY!!! SORTING IS WORKING!!!!

2005-12-31 Thread Legolas Woodland
Mike wrote: It seems that my problem was that my IDE had, for some reason, stopped updating the deployment directory even though the code would work after the changes I made thanks to all the great suggestions here. Now, at least, I have a Java problem, not a MyFaces problem. Now, I'm trying

is there any tutorial or sample for Myface localization ?

2005-12-29 Thread Legolas Woodland
Hi Thank you for reading my post. is there any sample which i can learn localizing JSF application from it ? my questions are 1-where to put the .properties file , in Struts i could define them in struts-config.xml but i do not have any clue about jsf 2-how to call key from .properties file ?

I have about 400 navigation case , does it decrease the performance ?

2005-12-29 Thread Legolas Woodland
Hi Thank you for reading my post. I have about 400 navigation case in my jsf application. will it decrease my jsf application performance under high load ? Indeed i have a Tabset (using Studio creator) , it is in a page fragment and I add this page fragment to all my 20 web pages. and each

Re: I have about 400 navigation case , does it decrease the performance ?

2005-12-29 Thread Legolas Woodland
, it is a great help :-) -Original Message- From: Legolas Woodland [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 29, 2005 04:55 PM To: 'MyFaces Discussion' Subject: I have about 400 navigation case , does it decrease the performance ? Hi Thank you for reading my post. I have

Re: I have about 400 navigation case , does it decrease the performance ?

2005-12-29 Thread Legolas Woodland
the tabset comes from a jspf) now my question is : how i can change the selected tab according to each page ? -Original Message- From: Legolas Woodland [mailto:[EMAIL PROTECTED] Sent: Thursday, December 29, 2005 04:55 PM To: 'MyFaces Discussion' Subject: I have about 400 navigation case , does

Re: is there any tutorial or sample for Myface localization ?

2005-12-29 Thread Legolas Woodland
Werner Punz wrote: Legolas Woodland wrote: Hi Thank you for reading my post. is there any sample which i can learn localizing JSF application from it ? my questions are 1-where to put the .properties file , in Struts i could define them in struts-config.xml  but i do

what is technically diffrent between a page fragment and a page

2005-12-28 Thread Legolas Woodland
Hi Thank you for reading my post. can some one tell me what is different between a jsf page fragment and a jsf page ? Thanks

is it possible to use a jsf application as a portlet ?

2005-12-19 Thread Legolas Woodland
is it possible to use a jsf application as a portlet ? Hi I have a jsf application and now i want to use it as a portlet . what is steps to convert the jsf application to a portlet ? is there any tutorial for this ? Thank you

How i can Use Myface as runtime of My Creator application.

2005-12-18 Thread Legolas Woodland
Hi Thank you for reading my post. I want to replace Sun jsf implementation which is with Creator Studio with myface. Problem with Original implementation (I think) is that it does not works OK with unicode entered date. for example if i enter some unicode characters in one form and submit it

Re: what libraries or frameworks i should use for my new jsf based project..... ?

2005-11-28 Thread Legolas Woodland
Hi Thank you for your replys. My question is from Mr McClanahan , does Studio creator 2 support : 1-adding new components to pallete ? for example how i can add myface components to its component set ? 2-there is a table component which could be bind to a data table now : 1-does it support inline

Re: what libraries or frameworks i should use for my new jsf based project..... ?

2005-11-28 Thread Legolas Woodland
Craig McClanahan wrote: On 11/28/05, Legolas Woodland [EMAIL PROTECTED] wrote: Hi Thank you for your replys. My question is from Mr McClanahan , does Studio creator 2 support : 1-adding new components to pallete ? Yes. You can package a set of components

what libraries or frameworks i should use for my new jsf based project..... ?

2005-11-27 Thread Legolas Woodland
Hi Thank you for reading my post. I should write a web application based on JSF and Sun java Studio Creator 2. here is my requirements : 1-reporting and charting 2-database access ,(all kinds of bindings between database and grids , text box , checkbox ) 3-some Ajax Operation (e.g : user

Is it possible to use Myface components with SUN RI ?

2005-11-17 Thread Legolas Woodland
Hi Thank you for reading my post. is it possible to use some of Myface components with Sun refrence implementation ? I mean using them in Creator studio ? Thank you

how to convert a myface application to a standard portlet

2005-11-16 Thread Legolas Woodland
Hi Thank you for reading my post. is it possible to convert a jsf application to a Portlet ? I mean a jsf application wich used myface implementation. if it si feasible , can you pleas give me some hint about it

[OT]which web log hoster (provider ) to use ?

2005-10-02 Thread Legolas Woodland
HiThank you for reading my postWhere does usually Java developer make thier Blog ?I want to make a web log for myself and i want it to let me post blog entry which may contain imagesI checked te jroller and it has not possibility to add images to blog entry Which of blog hoster provide this