[jboss-user] [JBoss Seam] - s:selectItems + a4j:support = NullPointerException

2008-02-10 Thread saeediqbal1
I get a nullpointerexception when i move the select box back to the item that is noSelectionLabel. When I select a valid entry inside the drop down, it works OK. But when we go back to resetting it by selecting the noSelectionLabel, it pops the following error. Is this a bug? |

[jboss-user] [JBoss Seam] - Re: EntityManager is Null inside Constructor

2008-02-03 Thread saeediqbal1
ok Thanks cyberanto View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4125838#4125838 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125838 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: EntityManager is Null inside Constructor

2008-02-01 Thread saeediqbal1
|@PersistenceContext | private EntityManager entityManager; | private ListCorpCustomers existingData; | public void fillExistingData() | { | existingData = entityManager.createQuery(select c from CorpCustomers c where

[jboss-user] [JBoss Seam] - EntityManager is Null inside Constructor

2008-01-30 Thread saeediqbal1
Please refer to http://jira.jboss.org/jira/browse/EJBTHREE-665 We are facing the same issue. When we call a method inside the constructor, and that method has a entitymanager.createQuery or anything with entitymanager, it returns nullpointerexception. It never gets initialized. Is there

[jboss-user] [JBoss Seam] - Re: h:selectOneMenu with s:selectItems not binding to anythi

2008-01-16 Thread saeediqbal1
Just override the hashcode and equals on the id of the entity. and when you submit the form you will need to catch the entity id. which you will get . those few errors you got are the exact errors we were banging our head against. View the original post :

[jboss-user] [JBoss Seam] - Re: How to switch to the tab page where the error occurs in

2008-01-16 Thread saeediqbal1
i think tomahawk tabs had the ability to set a particular tab you want active to be activated. i am not sure about richfaces. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4120303#4120303 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Trouble W/ NullPointerException

2007-12-17 Thread saeediqbal1
Try using this instead of @In with em @PersistenceContext EntityManager em; View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113304#4113304 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4113304

[jboss-user] [JBoss Seam] - PayPal integration

2007-12-17 Thread saeediqbal1
Can i get any pointers to integrate paypal into my seam application please? Thanks, -saeed View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113340#4113340 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4113340

[jboss-user] [JBoss Seam] - HowTo: Pass POST values to external sites and also redirect

2007-12-17 Thread saeediqbal1
How would i do this in seam/jsf, for example i have this in a regular html form that redirects me to the url in the action in form form action=https://www.paypal.com/cgi-bin/webscr; |method=post So users can go on that page and put their payments etc. I know how to call POST using

[jboss-user] [JBoss Seam] - Re: Exception

2007-12-16 Thread saeediqbal1
Try changing the top one to ScopeType.SESSION as they have in the booking example @Stateful | @Name(hotelSearch) | @Scope(ScopeType.SESSION) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113273#4113273 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Trouble W/ NullPointerException

2007-12-16 Thread saeediqbal1
Please try using the setParameter(s) instead. see if the query works then. It probably doesnt see the params at all. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113274#4113274 Reply to the post :

[jboss-user] [JBoss Seam] - Re: PersistenceException when using double in Oracle10g

2007-12-16 Thread saeediqbal1
I have the same issue. I disabled validation for now. Pete this isnt a hibernate issue, i think its a seam issue because the mapping is saved in a seam reverse engineering xml file but it doesnt pick up the mapping. why?. Please help!! View the original post :

[jboss-user] [JBoss Seam] - Re: SelectOneMenu problem

2007-12-15 Thread saeediqbal1
i am having a similar problem. I think 2.0.1 has a fix for it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113134#4113134 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4113134

[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-15 Thread saeediqbal1
I am having a similar issue. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113135#4113135 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4113135 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: SelectOneMenu problem

2007-12-15 Thread saeediqbal1
I am wondering is this issue due to using jsf ri 1.2 compared to previously using myfaces? because our applications worked fine in 1.2 and now in 2.0 they are broke on SelectOneMenu :( View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113136#4113136 Reply to the

[jboss-user] [JBoss Seam] - Re: Problem with SelectOneMenu

2007-12-15 Thread saeediqbal1
I fixed my issues by implementing public boolean equals(Object obj) and public int hashCode() in the entity bean View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4113143#4113143 Reply to the post :

[jboss-user] [JBoss Seam] - ReRender does not update the Form drop down values

2007-12-14 Thread saeediqbal1
I have the following reRender tag on the button a4j:commandButton action=#{speedDial.InsertNewRecord} value=Save reRender=dataEntry / In the stateful bean it actually modifies the value of the list but this form element inside a4j:outputPanel id=dataEntry does not update the values to

[jboss-user] [JBoss Seam] - Re: ReRender does not update the Form drop down values

2007-12-14 Thread saeediqbal1
Here is the thing, the data in my code comes from my database so i dont think i can have the code out to test. But i can explain as best as possible. For the list that my action method populates or updates it is defined as follows: - @Out(required=false) | private List String

[jboss-user] [JBoss Seam] - Re: Myseam, the jboss seam2.0GA's expander framework, offers

2007-11-18 Thread saeediqbal1
Hi Chen, This looks interesting. I'll check it out :) By the way please email me at saeedcs (at) gmail (dot) com , I would like to try to contribute to your project as well. I love seam by Jboss Gavin as well as appfuse by Matt Raible -saeed View the original post :

[jboss-user] [JBoss Seam] - Re: Difference between session timeout and not logged in yet

2007-11-14 Thread saeediqbal1
seems like a good intuitive idea, how do we get our apps to show session expired message? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4104429#4104429 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4104429

[jboss-user] [JBoss Seam] - Re: After updating to 2.0.0.GA uiComponent.findComponent(str

2007-11-07 Thread saeediqbal1
So how did you get around it in the java code? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4102455#4102455 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4102455 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Create New Entity - Page Round Trip Update autoincrem

2007-10-08 Thread saeediqbal1
I am not good at this either, but i see at one point you call it statusId and the other one you just call it id , is this a typo? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4092825#4092825 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Functionality difference between EntityHome and EntityCo

2007-10-04 Thread saeediqbal1
in the examples that come with seam, which ones use EntityHome and what ones use EntityController? I would like to take a look at their implementations. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4091788#4091788 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Functionality difference between EntityHome and EntityCo

2007-10-04 Thread saeediqbal1
Thanks Matt I appreciate your help. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4091805#4091805 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4091805 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Problem with injection @In

2007-10-04 Thread saeediqbal1
exactly what was causing me alot of waste of time and frustration. Something that works in the examples should also work in our projects. whats up with that? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4091807#4091807 Reply to the post :

[jboss-user] [JBoss Seam] - Re: multiple calls to same method from s:div rendered...

2007-09-25 Thread saeediqbal1
JSF backing bean methods/getters can be called unlimited times. there is no set limit. Ofcourse its not only one time because we have experienced 4-6 times ourselves. So live with it and maybe do what we did. put a condition statement to check if the property was already set. otherwise return

[jboss-user] [JBoss Seam] - Re: I cannot get this test through, please help

2007-09-24 Thread saeediqbal1
seam-gen for me has been buggy so i use this now http://chiralsoftware.com/master-sauce/ Master Sauce for mysql connection in the resources folder in the **ds.xml i have this ?xml version=1.0 encoding=UTF-8? | | !DOCTYPE datasources | PUBLIC -//JBoss//DTD JBOSS JCA Config 1.5//EN |

[jboss-user] [JBoss Seam] - Target Unreachable

2007-09-24 Thread saeediqbal1
I am getting this exception Exception during request processing: javax.servlet.ServletException: /createTicket.xhtml @29,71 value=#{createTicket.tickets.subject}: Target Unreachable, 'tickets' returned null tickets is an entity bean as defined like this @Entity | @Name(tickets) |

[jboss-user] [JBoss Seam] - Re: Migrating to seam 1.2.1

2007-09-24 Thread saeediqbal1
seam version 1.2.1 is not the latest version. i am pretty sure 2 is the latest View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4088250#4088250 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4088250

[jboss-user] [JBoss Seam] - Re: Migrating to seam 1.2.1

2007-09-24 Thread saeediqbal1
oops sorry now i see. you mean GA version View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4088251#4088251 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4088251 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Gavin King: Bad tools of Seam is kill its uses!!!

2007-09-20 Thread saeediqbal1
[EMAIL PROTECTED] wrote : | | I will put together a wink if you like? people could add in winks for other IDE's like IntelliJ, NetBeans etc. | | Please advise. Tony yes please anything would be great. View the original post :

[jboss-user] [JBoss Seam] - Re: Gavin King: Bad tools of Seam is kill its uses!!!

2007-09-18 Thread saeediqbal1
Tony could you please post a tutorial on how you do all that? I dont have myeclipse i would rather try doing that using redhat studio. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4085528#4085528 Reply to the post :

[jboss-user] [JBoss Seam] - Re: s:formattedText breaking, and seamspace

2007-09-11 Thread saeediqbal1
i am facing similar issue XML Parsing Error: mismatched tag. Expected: . Location: http://localhost:8080/seam-blog/seam/index.xhtml Line Number 37, Column 13:Okie dokke ^ please help resolve this. whats the point of having a text box when it cannot parse special characters. thanks

[jboss-user] [JBoss Seam] - Re: s:formattedText breaking, and seamspace

2007-09-11 Thread saeediqbal1
Here is the string i put in a blog post to reproduce the error .. lets see if we can test this thing. I(* D23= ' ' ' /a sdrfd Okie dokke - Please fix this Jboss Seam Team!!! looks bad View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083195#4083195

[jboss-user] [JBoss Seam] - Re: s:formattedText breaking, and seamspace

2007-09-11 Thread saeediqbal1
http://jira.jboss.org/jira/browse/JBSEAM-1914 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4083198#4083198 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4083198 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: s:formattedText breaking, and seamspace

2007-09-11 Thread saeediqbal1
I am thinking of putting this method to save the day. Would you guys let me know what would be the best place to put it in ? public static String stripNonValidXMLCharacters(String in) { | StringBuffer out = new StringBuffer(); // Used to hold the output. | char

[jboss-user] [JBoss Seam] - Please explain h:commandButton value=Post/

2007-09-09 Thread saeediqbal1
In the blog example, inside post.xhtml, we have commandButton without action or any other property but value. Can somebody explain how the post works with this code please? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4082456#4082456 Reply to the

[jboss-user] [JBoss Seam] - Re: Urgent - Error in deploying the NumberGuess Example

2007-06-11 Thread saeediqbal1
did you install jboss as using the installer? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=405#405 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=405 ___ jboss-user

[jboss-user] [JBoss Tools (users)] - Major Restructuring of this Forum Needed

2007-05-15 Thread saeediqbal1
On April 27th, there was this news piece here http://labs.jboss.com/blog/jbosside__jbosstools__rhds__and_exadel telling us about the RedHat Developer Studio. It mentioned a subversion link and links to these forums. The sticky's and announcements in this forum are quite old. I think there is a

[jboss-user] [JBoss Seam] - Re: s:link invoking page action for CURRENT page during post

2007-05-01 Thread saeediqbal1
I guess everybody is busy preparing for JavaOne. I had a similar issue few days back but didn't get much helpful replies either. You know what why dont you join me camp right next to JBoss booth in JavaOne and get all our seam issues resolved. View the original post :

[jboss-user] [JBoss Seam] - Re: Problem with FacesMessages

2007-04-30 Thread saeediqbal1
what is the scope? what are you using? the rendered tag? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4042012#4042012 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4042012 ___

[jboss-user] [JBoss Seam] - Re: If NoResultException, then logic in JSF or Java

2007-04-29 Thread saeediqbal1
No that did not work unfortunately. I think i may need to do that first option i said have a new form inside this code block in the same .xhtml page s:div rendered=#{reportActivity.value == null} | PUT THE FORMS HERE | /s:div What do you think? or just say that click

[jboss-user] [JBoss Seam] - Re: If NoResultException, then logic in JSF or Java

2007-04-29 Thread saeediqbal1
Most of the examples i have seen use s:div's rendered tag. I may try something new myself. Thanks Pete View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041734#4041734 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041734

[jboss-user] [JBoss Seam] - Re: EntityHome validation error (Chapter 14 example)

2007-04-28 Thread saeediqbal1
cja987 wrote : ... prefer to have all CRUD actions go through the session bean that simply injects the EntityHome itself. TMTOWTDI. | what are you saying? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041619#4041619 Reply to the post :

[jboss-user] [JBoss Seam] - If NoResultException, then logic in JSF or Java

2007-04-28 Thread saeediqbal1
In my simple application that i am writing, now i can edit records if a single resultset exist in database, pull it in the form and edit it and click save to modify the contents fine. Now the problem is that when nothing is returned from that database, for example an activity record for that

[jboss-user] [JBoss Seam] - Re: If NoResultException, then logic in JSF or Java

2007-04-28 Thread saeediqbal1
Well that ActivityEdit.xhtml file is the one that creates a row in database (auto generated by seam-gen with entity) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041621#4041621 Reply to the post :

[jboss-user] [JBoss Seam] - Re: If NoResultException, then logic in JSF or Java

2007-04-28 Thread saeediqbal1
Hello View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4041673#4041673 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4041673 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Seam] - Re: What type is simple class?

2007-04-26 Thread saeediqbal1
My guess would be it is the default type. now what is the default type? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040831#4040831 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4040831

[jboss-user] [JBoss Seam] - Re: First JBoss Seam book released

2007-04-25 Thread saeediqbal1
[EMAIL PROTECTED] wrote : | Now the book has finally come out. We will have it in JavaOne bookstores. | free giveaways? please say yes View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040698#4040698 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Where is Gavin?

2007-04-24 Thread saeediqbal1
get well soon Gavin. Are you bringing any goodies for us at Java one? Thats one thing i look forward to at the pavilion. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040359#4040359 Reply to the post :

[jboss-user] [JBoss Seam] - Re: New ICEfaces SeamGen Comp. Showcase projects

2007-04-24 Thread saeediqbal1
Amazing. I'll give it a shot. Congratulations for this in advance. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040360#4040360 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4040360

[jboss-user] [JBoss Seam] - Re: s:selectItems problem

2007-04-24 Thread saeediqbal1
petemuir wrote : s:selectItems expects a ListSex rather than a ListSelectItem. Take a look at the ui example for some sample usage. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040375#4040375 Reply to the post :

[jboss-user] [JBoss Seam] - Re: basic question

2007-04-24 Thread saeediqbal1
my concern is the technical jargon in it. can you break it down for us peter? please View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040390#4040390 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4040390

[jboss-user] [JBoss Seam] - Re: Documentation : Seam Issues example

2007-04-24 Thread saeediqbal1
was it this one? http://www.jboss.com/index.html?module=bbop=viewtopict=106971postdays=0postorder=ascstart=10 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4040392#4040392 Reply to the post :

[jboss-user] [JBoss Seam] - Re: HowTo: When going to a page to enter data, pull from db

2007-04-21 Thread saeediqbal1
Problem Now one problem was fixed that it picked up stuff from database. But if the row does not exist, and then when i put stuff in the form and say save/submit ... it saves blank values. nothing null This is what my xhtml page has at the bottom. Basically it was all generated by seam-gen

[jboss-user] [JBoss Seam] - Re: HowTo: When going to a page to enter data, pull from db

2007-04-21 Thread saeediqbal1
Thanks for the information and you are right. I was putting the action logic into EntityHome. Quite funny now i realize. I did a new-form and it created the class i may want to put my stuff in and new-query. I guess i dont want to put my action logic in entityhome, i'll keep it separate as

[jboss-user] [JBoss Seam] - Re: HowTo: When going to a page to enter data, pull from db

2007-04-21 Thread saeediqbal1
Thanks Captain and Peter. I'll read it again and make sure I understand what you said Well how do i know if an object is not a Seam Component? The answer could be apparent to many people but i am not shy to ask what i am not sure of. View the original post :

[jboss-user] [JBoss Seam] - Re: HowTo: When going to a page to enter data, pull from db

2007-04-21 Thread saeediqbal1
I see what you are saying Captain and very well said, for this sort of information we need to have new books coming out :) ! Anyway thanks Cptn and Peter for your valuable help. Cptn how is your weekend so far? what are you doing next weekend maybe we could meet at coffee. View the original

[jboss-user] [JBoss Seam] - HowTo: When going to a page to enter data, pull from db ed

2007-04-20 Thread saeediqbal1
Hey guys, I have been trying to learn this stuff in a fast pace lately and much of it makes good sense. I was able to create a project in seam-gen some entities from database crud, and some actions. Also modifying the xhtml pages and some configuration to learn Seam. Anyway now i have this

[jboss-user] [JBoss Seam] - Re: HowTo: When going to a page to enter data, pull from db

2007-04-20 Thread saeediqbal1
Oh sweet. I will try that and let you know. I remember seeeing @Factory in one of the files. Question for you. What do you think is appropriate place for this based on what I'm doing. In the action bean or in the entity ? Any recommendation on scope? Thanks View the original post :

[jboss-user] [JBoss Seam] - Re: HowTo: When going to a page to enter data, pull from db

2007-04-20 Thread saeediqbal1
CptnKirk wrote : | | For the most part though, if I'm simply going to initialize a variable that I'll use later within a controller's action method, putting the @Factory on a method within the controller is the way I go. Where would you initialize the variable? In the same object right?

[jboss-user] [JBoss Seam] - Re: HowTo: When going to a page to enter data, pull from db

2007-04-20 Thread saeediqbal1
Awesome it worked first time i tried. OK i have a suggestion or just brainstorming for what was produced initially by seam-gen in my code. For example in the xhtml it had this s:decorate id=entryaDecoration template=layout/edit.xhtml | ui:define name=labelentrya/ui:define

[jboss-user] [JBoss Seam] - Re: Handling Expired Password Best Practice

2007-04-20 Thread saeediqbal1
shane you coming to java one? who will come from jboss seam team? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4039487#4039487 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4039487

[jboss-user] [JBoss Seam] - Re: Exadel, JBoss and Seam

2007-04-13 Thread saeediqbal1
If we are going to use Eclipse as primary development ide for JBoss/Seam applications, then what is the point for Micheal Yuan's talk in Java One called Rapid Seam Application Development with the NetBeans IDE ? How much of Exadel would be mentioned in that talk? I am kind of confused here.

[jboss-user] [JBoss Seam] - Re: Simple question about sample apps with Seam

2007-04-13 Thread saeediqbal1
I guess i found somewhat here . when you run seam-gen you also see [input] Do you want to drop and recreate the database tables and data in import.sql each time you deploy? [n] (y,n,) n View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037201#4037201 Reply to

[jboss-user] [JBoss Seam] - Re: Simple question about sample apps with Seam

2007-04-13 Thread saeediqbal1
Thanks for the info. Can we have an existing project that has import.sql for example dvd store .. and we make it an empty file in order to avoid database creation/deletion. would the application complain? View the original post :

[jboss-user] [JBoss Seam] - Re: Simple question about sample apps with Seam

2007-04-13 Thread saeediqbal1
i am going to have a blank import.sql file once the objects are created in the database. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037263#4037263 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4037263

[jboss-user] [JBoss Seam] - Re: JavaOne

2007-04-12 Thread saeediqbal1
After the suggestion from Matt Raible, i am moving back to Seam from Spring now i guess the documentation has improved. Gavin what happened to the trainer you guys hired to create courses? Also the wiki is missing the lab for 1.2 here http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossSeamLabs I

[jboss-user] [JBoss Seam] - Re: Seam/Hibernate meetup in San Francisco, Friday, March 2

2007-02-28 Thread saeediqbal1
Gavin: Thanks for the information. Just wondering who would be there from the jboss team. and what's the informal plan. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4023894#4023894 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Factory and injection in EntityHome

2007-02-18 Thread saeediqbal1
was that stuff generated from seam-gen? because i've not seen that code in my entityhome. whats going on? why do you have @In for the row data in there? isnt that supposed to be set in the serializable class? atleast thats how my seam-gen made it. dont know how to proceed anyway :P View the

[jboss-user] [JBoss Seam] - Re: Issue with 'seam generate-entities'

2007-02-18 Thread saeediqbal1
seam-gen is confusing i need help View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4018546#4018546 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4018546 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - java.lang.out of memory error permgen space

2007-02-18 Thread saeediqbal1
I saw that after modifying some of the seam-gen generated xhtml files jsf code and deploying it right after the other after 3-4 times. Is that normal? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4018558#4018558 Reply to the post :

[jboss-user] [JBoss Seam] - Re: java.lang.out of memory error permgen space

2007-02-18 Thread saeediqbal1
I'm glad I shared this information with you guys. Is it safe to use JRockit with Seam? Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4018604#4018604 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4018604

[jboss-user] [JBoss Seam] - Re: Factory and injection in EntityHome

2007-02-18 Thread saeediqbal1
hey how are you using debugger with jboss AS ? are you using the wtp version of eclipse? feel free to email me saeedcs ...at... gmail dot com thanks! -saeed View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4018606#4018606 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam Gen template error?

2007-02-17 Thread saeediqbal1
Hey Guys while you are at the bug. Can you please report this if its not done already. when running seam generate-entities , i get the following error which refers to the file list.xhtml.ftl line 30 which is | #if property.value.typeName == string [hibernate] INFO: Hibernate Tools

[jboss-user] [JBoss Seam] - Re: Seam Gen template error?

2007-02-17 Thread saeediqbal1
i just used eclipses built in cvs rep. to download jboss-seam folder from the head section in the repository. is that the one with new template files? or was it the version section? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4018340#4018340 Reply to the

[jboss-user] [JBoss Seam] - Re: Issue with 'seam generate-entities'

2007-02-17 Thread saeediqbal1
How do i get rid of this error operator == is undefined for the argument type(s) int on these lines (!getMembersId().getId() == null) I tried doing .intValue() but no go. Annoying problem in the method isIdDefined View the original post :

[jboss-user] [JBoss Seam] - Re: Issue with 'seam generate-entities'

2007-02-17 Thread saeediqbal1
Correction. the above error is this operator == is undefined for the argument type(s) int,null why does it consider null when we explicitly state the return value to be not null like here @Column(name = id, nullable = false) | @NotNull | public int getId() { |

[jboss-user] [JBoss Seam] - Re: Seam Gen template error?

2007-02-17 Thread saeediqbal1
i concur, this seems to be fixed now in the cvs build i downloaded. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4018379#4018379 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4018379

[jboss-user] [JBoss Seam] - Re: Issue with 'seam generate-entities'

2007-02-17 Thread saeediqbal1
thats what seam-gen gave me. anyway i';ll get back to playing with seam View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4018380#4018380 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4018380

[jboss-user] [JBoss Seam] - Re: Issue with 'seam generate-entities'

2007-02-17 Thread saeediqbal1
compile was successful. but eclipse is showing the red dot i now think i should ignore that Buildfile: C:\devhome\workspace\pproject\build.xml init: compile: BUILD SUCCESSFUL Total time: 656 milliseconds View the original post :

[jboss-user] [JBoss Seam] - Re: Conversation versus Session Context

2007-02-16 Thread saeediqbal1
reference document is ancient :) i am trying to stop following it but its hard not to look at it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017791#4017791 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017791

[jboss-user] [JBoss Seam] - Re: does seam-gen support tomcat?

2007-02-15 Thread saeediqbal1
just wondering if we can make a project through seam-gen on AS and then port it over to TC ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017158#4017158 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017158

[jboss-user] [JBoss Seam] - Re: does seam-gen support tomcat?

2007-02-15 Thread saeediqbal1
Just wondering aloud.. Hey agori you may have a solution here. Make it in Jboss AS and port it over to tomcat ? run both servers on different ports. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017160#4017160 Reply to the post :

[jboss-user] [JBoss Seam] - Re: does seam-gen support tomcat?

2007-02-15 Thread saeediqbal1
I haven't done that myself yet but the place i would start is look at the build.xml file in the root folder of seam distribution, it has deploy and deploytomcat. that's how i would pack. But you bring up a good topic to write a document on. Maybe I should play with seam-gen and porting it to

[jboss-user] [JBoss Seam] - Re: Getting the helloworld example working in Tomcat

2007-02-15 Thread saeediqbal1
I haven't done this myself but I would go into tomcat manager and make sure the component that has helloAction is started and restart the server. Its either not seeing it or helloAction is not running View the original post :

[jboss-user] [JBoss Seam] - Re: Tip worthy of inclusion in the documentation...

2007-02-15 Thread saeediqbal1
what section# in doc talks about that? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017218#4017218 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017218 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Seam Gen Problem

2007-02-15 Thread saeediqbal1
did you confirm if the *connector*.jar file was not missing? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017241#4017241 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017241

[jboss-user] [JBoss Seam] - Re: Seam Gen Problem

2007-02-15 Thread saeediqbal1
Some pointers of the same problem http://forum.java.sun.com/thread.jspa?threadID=691687messageID=4020886 http://www.opensubscriber.com/message/users@cocoon.apache.org/1407968.html http://forum.hibernate.org/viewtopic.php?t=945739 let me know what if any of that fixes the problem please

[jboss-user] [JBoss Seam] - Re: Tip worthy of inclusion in the documentation...

2007-02-15 Thread saeediqbal1
I second that. its helpful to see it in the documentation please. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017245#4017245 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017245

[jboss-user] [JBoss Seam] - Re: Seam Gen Problem

2007-02-15 Thread saeediqbal1
Yes i think hibernate is looking for it somewhere else. in that other site they said shared/lib folder, but i dont know where in seam. I would try putting that connector in a few other folders and restart the AS and try again. Gavin could help point out exactly what to do. View the original

[jboss-user] [JBoss Seam] - Re: Seam Gen Problem

2007-02-15 Thread saeediqbal1
off the top of my mind 3 places i can think of putting that connector.jar in 1) jboss as/server/default/lib 2) seam/lib/ 3) seam/seam-gen/lib/ bounce the server and try. let us know View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017269#4017269 Reply to the

[jboss-user] [JBoss Seam] - Re: Seam Generator

2007-02-15 Thread saeediqbal1
well do you have the connector jar in the correct place for oracle database? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017449#4017449 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4017449

[jboss-user] [JBoss Seam] - Re: Anyone see this?

2007-02-14 Thread saeediqbal1
interesting.. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4016725#4016725 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4016725 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Restrict

2007-02-14 Thread saeediqbal1
Thanks Tony. I'll try Jason's advise too View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4016750#4016750 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4016750 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Web services and Seam

2007-02-13 Thread saeediqbal1
all the best team! All I would ask is keeping the document (reference manual + api) updated with new features. since I'm just learning Seam and developing a personal project in it for now. Forums are very nice help as well. View the original post :

[jboss-user] [JBoss Seam] - Re: Rules and navigation

2007-02-13 Thread saeediqbal1
I would suggest go ahead and open the source code. Look into the resources folder and you will see a file called numberguess.drl . Examine that and then look at the source code. Contents are package org.jboss.seam.example.numberguess import org.jboss.seam.drools.Decision global Decision

[jboss-user] [JBoss Seam] - Re: Rules and navigation

2007-02-13 Thread saeediqbal1
oh Mr. Bean i forgot to say the above stuff was the seam(distribution)/examples/drools/ . I learned the functionality from that example, which is pretty good. Personally i'm not using drools for now. Dont want to get tangled into alot of new stuff. View the original post :

[jboss-user] [JBoss Seam] - Re: seam-gen enhancement

2007-02-13 Thread saeediqbal1
Correct me if i am wrong. Isn't the functionality requested the same as seam generate-entities ? or maybe i misunderstood it. data model View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4016001#4016001 Reply to the post :

[jboss-user] [JBoss Seam] - Re: using seam expression language enhancements in integrati

2007-02-13 Thread saeediqbal1
what example is it ? i want to test too View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4016005#4016005 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4016005 ___ jboss-user mailing

  1   2   >