[JBoss-user] [Remoting] - Re: error while shutting down multicast detector

2006-05-22 Thread [EMAIL PROTECTED]
FWIW: after this NPE occurs, the only non-daemon thread left in my VM (and why my VM isn't dying when I want it to) is this: | Thread [SocketServerInvokerThread-127.0.0.1-1] (Suspended) | waiting for: org.jboss.remoting.transport.socket.ServerThread (id=2) |

[JBoss-user] [Remoting] - error while shutting down multicast detector

2006-05-22 Thread [EMAIL PROTECTED]
Anyone ever see this NPE while shutting down the multicast detector? I can't replicate this - its very rare and intermittent. But I definitely have seen this more than once. | [java] 01:46:43,139 WARN [jboss.remoting.detection.multicast.MulticastDetector] Error removing server |

[JBoss-user] [JBoss jBPM] - Re: Associate field list in designer?

2006-05-22 Thread [EMAIL PROTECTED]
Dan, I have no clue of what you are trying to achieve. Can you describe this in a little more detail? Regards, Koen View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945210#3945210 Reply to the post :

[JBoss-user] [JBoss jBPM] - unable to deploy ActionHandler

2006-05-22 Thread kpavan_8
Using jBPM 3.1.1 Eclipse 3.2 I am using the gpd Eclipse plugin for deploying. I added ActionHandler classes to the project and tried deploying, but it throws Excpetion happened while deploying. The stack trace is given below. If i remove the actionhandlers it deploys properly. Can somebody

[JBoss-user] [JBoss jBPM] - Re: jBPM ProcessDefinition instance state and POJO class sta

2006-05-22 Thread [EMAIL PROTECTED]
Ahmed, The reason why you have to wait this long is probably because no one (probably including me) has a clue of what you really mean... But I am gonna try anyway. If you want to use (a reference to) your car as a process variable in the process instance: yes you can. Or if you want to

[JBoss-user] [JBoss jBPM] - Re: JSP integration in form tasks

2006-05-22 Thread hosierdm
The existing jBPM web application is an example. The source (classes and pages) are all available in the distribution that you downloaded. It's really easy to figure out how to interact with jBPM to do your own webapp by looking at the source code for the HomeBean and TaskBean at least. You

[JBoss-user] [JBoss jBPM] - Re: unable to deploy ActionHandler

2006-05-22 Thread hosierdm
Are your ActionHandler classes in the same Eclipse project as your process and also checked in the Deployment tab? I think there is a limitation with GPD right now where the Java classes must reside in the same Eclipse project in order for them to be deployed with the process. View the

[JBoss-user] [JBoss jBPM] - Re: JSP integration in form tasks

2006-05-22 Thread MTG
OK...i agree. But is possible, use the GPD, deploy for example to Tomcat and construct my own webapp that interacts with the database and the processe definition. Is there any example? Because the problem is the start, then i think anybody can self motivate and continue the work... Thanks

[JBoss-user] [JBoss jBPM] - Re: org.hibernate.StaleObjectStateException when retrieving

2006-05-22 Thread foreverman
I think there are some problems in implementations of method JbpmContext.close. If jbpmContext.close() failed for some reason(in my case, when some exceptions are thrown, invoke setRollbackOnly, then jbpmContext.close), then jbpmContext will not be pushed out of stack of theadLocal varaible. And

[JBoss-user] [JBoss jBPM] - Re: unable to deploy ActionHandler

2006-05-22 Thread kpavan_8
yes, the actionhanlder classes are in the same jBPM project. They are under src/java directory. In the deployment tab, if I check the actionhanlder classes to be deployed, it throws error. If I uncheck them it goes smoothly. Is there any other procedure of deploying other than the gpd? View the

[JBoss-user] [Beginners Corner] - Re: Isolated EAR and segmentation fault

2006-05-22 Thread sankeyraut
Did u find any way to reload the class file in jboss View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945217#3945217 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945217

[JBoss-user] [JBossWS] - Re: ClassCastException: org.jboss.axis.Message

2006-05-22 Thread Sonal Raj
Hi All, The stubs are generated using wscompile tool. Sun StubBase class is casting the response message to com.sun.xml.messaging.saaj.soap.MessageImpl and Since JBoss uses an axis message factory for the response message.so there is the Class Cast Exception. But still not able to find the

[JBoss-user] [EJB 3.0] - ServiceLocator EJB3

2006-05-22 Thread jc7442
My application is composed of Swing standalone clients and a JBoss application server with EJB3. With such kind of architecture, it seems that I still need to implement an old style ServiceLocator. Is there other alternative ? Is there somewhere a reference implementation for such pattern with

[JBoss-user] [JBoss Portal] - JBoss Portal 2.2.1-SP1 - Released

2006-05-22 Thread [EMAIL PROTECTED]
The JBoss Portal Team is very proud to provide JBoss Portal 2.2.1. The files are available on our download page: http://www.jboss.com/products/jbossportal/downloads The documentation is also viewable online: http://www.jboss.com/products/jbossportal/docs This version has been tested with

[JBoss-user] [JBoss Portal] - JBoss Portal 2.2.1-SP1 - Released (Repost)

2006-05-22 Thread [EMAIL PROTECTED]
The JBoss Portal Team is very proud to provide JBoss Portal 2.2.1-SP1. The files are available on our download page: http://www.jboss.com/products/jbossportal/downloads The documentation is also viewable online: http://www.jboss.com/products/jbossportal/docs This version has been tested

[JBoss-user] [JBoss Seam] - Re: 4.0.4.GA deploy problem... I think

2006-05-22 Thread drapierwim
This has nothing todo with previuos post but I didn't wanted to start a new topic. When I undeploy my app it seems that the jBPM tables aren't droped even if the hbm2dll property has been set to create-drop, Is that normal or can it be fixed? | hibernate-configuration | session-factory

[JBoss-user] [EJB 3.0] - Re: ServiceLocator EJB3

2006-05-22 Thread martin ganserer
Hi, I have a swing client too! I think a ServiceLocator is a good approach. I can not imagine that there are better alternatives. Regards Martin View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945222#3945222 Reply to the post :

[JBoss-user] [EJB 3.0] - Re: ServiceLocator EJB3

2006-05-22 Thread jc7442
I'm thinking about something with IoC in order to access EJB in the same way on client side and on server side. But I've not tried it View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945223#3945223 Reply to the post :

[JBoss-user] [EJB 3.0] - Re: ServiceLocator EJB3

2006-05-22 Thread martin ganserer
Hi, what do you mean by IoC? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945224#3945224 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945224 --- Using Tomcat but

[JBoss-user] [JBossWS] - Jboss with SOAP Application Using EJB

2006-05-22 Thread dhanaraj
Hi Friends, Can any one help me out ,How to run ejb3.0 application on jboss,but the transaction[Request ,Response] done via SOAP. It means, I have an Swing application as client ,if i run my client jar[In client Place],have to connect with jboss through SOAP. Is there any

[JBoss-user] [EJB 3.0] - Re: ServiceLocator EJB3

2006-05-22 Thread jc7442
Annotations on client side coupling with an Inversion of control framework such as Spring or a Aspect library such as JBoss AOP. It should be possible to have the same way to retrieve services on client and server side, but I'm afraid that something quite heavy to add to a simple Swing client

[JBoss-user] [JBossWS] - Re: Cannot find child element: not using namespace ?

2006-05-22 Thread Dust_Puppy
This might be a really stupid question but I can?t get this to work =/ any input is appreciated Should not the namespace specified in the soap operation be used when parsing the incoming xml ? i use a JSR-109 client as described in the documentation.. Now I cant se any different in behavior

[JBoss-user] [JBoss Seam] - Re: @Observer does not work in booking example

2006-05-22 Thread kh2ouija
I just noticed that when annotating a method of a SFSB as @Observer for a certain standard event, I can't raise that event in the same bean as the method, as it will cause this: javax.ejb.EJBException: Application Error: no concurrent calls on stateful beans. Instead of raising that event, you

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: cmp2.x jdbc2 pm SELECT DISTINCT

2006-05-22 Thread anajavi
My first post was a bit messy. The real problem here is that I cannot use SELECT DISTINCT OBJECT (o), because it puts TEXT-fields in the DISTINCT query. With standard ejb 2.1 configuration one can use ON-LOAD, but with the new container configuration it is always ON-FIND. View the original

[JBoss-user] [JBoss Seam] - Re: 4.0.4.GA deploy problem... I think

2006-05-22 Thread elfuhrer
This is not a deployment problem this is a packaging problem. Gavin I think you should not be combining all the libraries altogether, I'd suggest that you keep the JBoss libraries as they are since those libraries especially the ejb3x.jar are changing. This error is simple and I solved the

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Problems with Oracle JDBC Driver 10.2.0.1.0

2006-05-22 Thread sheckler
We are using 10.1 driver too and started a call at Oracle because of that error (we are fixed to jdk 5.0 ). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945233#3945233 Reply to the post :

[JBoss-user] [Installation, Configuration Deployment] - Jboss doesn't want start

2006-05-22 Thread plusdesign
I have server with procesors 2 x 3,0GHz Xeon dual core with Debian 3.1R2, Java JDK 1.5.0.06 installed on in. I tried to run JBoss 4.0.2 on this machine and it doesn,t want started, when I copy folder with Jboss on ma personal computer with debian 3.1R2 Jboss started and it works. Did You hear

[JBoss-user] [JBoss jBPM] - Re: unable to deploy ActionHandler

2006-05-22 Thread hosierdm
You can try saving the process as a file (using the button on the left instead of the one on the right), and then copy the file to the server deploy directory. If you are able to get that far without an Exception, the server should pick it up and deploy it. Although, you might get the same

[JBoss-user] [JBoss jBPM] - Re: Associate field list in designer?

2006-05-22 Thread codek
I wish to draw out a business process using the designer. I then want to be able to generate the application from the diagram. The links give me the navigation within the application, but I need somewhere to specify the fields which need to be prompted for at each transition. Does that make

[JBoss-user] [JBoss Seam] - Re: 4.0.4.GA deploy problem... I think

2006-05-22 Thread drapierwim
Just for time saving I would like to have more details on the required jar stuff Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945237#3945237 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945237

[JBoss-user] [Beginners Corner] - JBoss compatibility issues

2006-05-22 Thread [EMAIL PROTECTED]
Hi Just asking the question which I think I know the answer to but want to check before we spend the money! We are about to purchase a Sun X4100 running Solaris 10 on and want to check that someone out there has run JBoss on Soaris 10 at least, even better on an x86 chipset. As JBoss is Java

[JBoss-user] [EJB 3.0] - EJB3 naming

2006-05-22 Thread jc7442
It looks like by default name for a ejb seesion bean looks like: earName/class.getSimpleName/remote Does it comes from J2EE specifications or is it a JBoss specific ? Where can I find some documentation about that ? View the original post :

[JBoss-user] [JBossWS] - Re: WSTools Errors

2006-05-22 Thread palin
parikhm wrote : jboss-4.0.4.GA with jdk 1.5 | | From the ant task , I get | | java.lang.NoClassDefFoundError: EDU/oswego/cs/dl/util/concurrent/ConcurrentReaderHashMap | at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1225) | at

[JBoss-user] [JBoss Getting Started Documentation] - Re: JBOSS IDE tutorial

2006-05-22 Thread serfig
I have a problem with the tutorial example. I get these errors: INFO [org.jboss.web.tomcat.tc5.session.JBossCacheManager] init(): replicationGranularity_ is 0 and invaldateSessionPolicy is 2 ERROR [org.jboss.web.tomcat.tc5.session.JBossCacheManager] JBossCacheService to Tomcat clustering not

[JBoss-user] [EJB/JBoss] - Re: How to know if a bean instance is accessed by a local or

2006-05-22 Thread drabbit
This is an interesting question, but I doubt there is a solution to it. You might want to go one step back and post what you need to know this information for. If it is merely for logging and to check if calls are local or remote, you could just write an interceptor that logs the invocation

[JBoss-user] [EJB 3.0] - Re: could not register synchronization with JTA TransactionM

2006-05-22 Thread robert129
Hi Emmanuel, Thank you for your reply. I'm not sure if we are inadvertently overriding the hibernate transaction factory. We have an EAR which contains a .har file and a .war file. We use JNDI to obtain the session factory. The .har file contains the hibernate.cfg.xml which contains:

[JBoss-user] [JBossWS] - Re: wstools generate wrong array type class !

2006-05-22 Thread [EMAIL PROTECTED]
Collections are not supported in JAXRPC http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWSFAQSupportedDataTypes You could use arrays View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945246#3945246 Reply to the post :

[JBoss-user] [EJB/JBoss] - Re: RequiredNew transaction type

2006-05-22 Thread drabbit
methodC should run in a separate transaction and commit upon completion. Your post doesn't show how you called methodB and methodC, so let me make sure: Did you call those methods over the local interface or just inside the bean implementation? The new Transaction is of course only started if

[JBoss-user] [JBoss Seam] - Re: RequestParameter problem

2006-05-22 Thread mirko27
any explanations? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945249#3945249 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945249 --- Using Tomcat but need to do

[JBoss-user] [JBossWS] - Re: Cannot find child element: not using namespace ?

2006-05-22 Thread Dust_Puppy
solved the problem.. to get it to use namespace for its element i needed to extract the part to its own element like wsdl:message name=getVersionResponse | wsdl:part name=getVersionReturn element=impl:getVersionReturn / | /wsdl:message | | xsd:element

[JBoss-user] [JBoss Seam] - Re: RequestParameter problem

2006-05-22 Thread [EMAIL PROTECTED]
Sorry, no-one can help because it's _your_ explanation which is insufficient. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945251#3945251 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945251

[JBoss-user] [JBossWS] - Confused about the new JBossWS, JSR 109 and wstools

2006-05-22 Thread steinarruneEriksen
I finally though I had it all figured out, making a Session bean Web Services as specified under the JSR 109 docs. I have a standalone client that can access this via JNDI java:comp/env/service/MyService and this works fine as long as the client run on the same host as the service. I should

[JBoss-user] [JBoss jBPM] - Re: jBPM ProcessDefinition instance state and POJO class sta

2006-05-22 Thread ahmed.adly
Dear Koen, I am very happy for your reply. And I am sorry for you did not understand me. but I'll try to make it clear. I want to create instance of this Process Definition. Then make the token to start at node #3 (which is do some maintenance to car) instead of start state without calling

[JBoss-user] [JBoss jBPM] - Re: unable to deploy ActionHandler

2006-05-22 Thread kpavan_8
I havent understood what u mean by saving the process as a file, using left button.. is there a process of deploying the class files thru ant task?? i found somethin like deploypartask, which tends to be deploying par file. there is no par file in the latest jbpm. how do i use the task to

[JBoss-user] [JBoss Getting Started Documentation] - Re: Which webserver JBOSS is using?

2006-05-22 Thread mp123
Yes. JBoss itself contains Tomcat. Thanks, mp. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945255#3945255 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945255 ---

[JBoss-user] [JBossWS] - Getting rmi.MarshalException from my client.

2006-05-22 Thread Duffcase
Hi. I'm trying to make a simple implementation of a webservice using document/literal and J2Me CLDC1.1 MIDP2.0 I've been using a combination of jbossws and suns wireless toolkit, but the errors are the same. I used wstools to generate all the essential stuff. The problem is I'm getting this

[JBoss-user] [JBoss jBPM] - couldn't commit hibernate session PLZ HLP

2006-05-22 Thread bodabela
Hi! I use oracle 9.2 and I get the following exceptions when I try to persist anything. Help! Plz! The core problem is: couldn't commit hibernate session Is it a configuration problem or what? Thx! 12:13:16,984 [main] DEBUG DefaultConnectionTester : Testing a Connection in response to an

[JBoss-user] [JBossWS] - Re: wstools not generating Java for enum pattern

2006-05-22 Thread [EMAIL PROTECTED]
Is this still an issue with jboss-4.0.4.GA? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945259#3945259 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945259 --- Using

[JBoss-user] [JBossWS] - Re: JBossWS and wsgl2java

2006-05-22 Thread [EMAIL PROTECTED]
wstools does not generate staticly compilable stubs. We use the JSR109 client deployment model where you look au a preconfigured stub from JNDI. Look at the sample clients View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945261#3945261 Reply to the post :

[JBoss-user] [JBoss Seam] - the bookmarded url has conversationId when using redirect in

2006-05-22 Thread liudan2005
I've been having problem with bookmark pages for a couple of days and hope to get someone's help here. let me describe my scenario in short. Say I can list many shops and each shop can sell many items. Each shop has got its own id, so they can be accessed by a bookmakable url (e.g.

[JBoss-user] [JBoss Messaging] - Re: MDBExample in 1.0.1.CR1

2006-05-22 Thread wondermike
Hi, I'm sorry, if that post confused you, I deleted the whole server and reinstalled a jboss-4.0.4.GA with jboss-messaging-1.0.1.CR1 and the mdb example worked immediately. That must have been some kind of misconfiguration in the old deployment tree. I must say, once I understood a little bit

[JBoss-user] [JBossWS] - Re: WSException while passing custom object to JSR-181 web-s

2006-05-22 Thread [EMAIL PROTECTED]
Please monitor http://jira.jboss.com/jira/browse/JBWS-929 Also look at the client section in the FAQs http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWSFAQ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945270#3945270 Reply to the post :

[JBoss-user] [JBoss Portal] - change default page

2006-05-22 Thread poyge394
Hi How can i change the default page: I whant: 1. remove default page. 2. add my own page to start page. when i just remove the default page now: i get HTTP Status 404 - and this exception in console: org.jboss.portal.core.ObjectNotFoundException: Not allowed to access resourceDefault page

[JBoss-user] [JBossWS] - Re: Examples

2006-05-22 Thread [EMAIL PROTECTED]
Is this the location URL? | http://ntcdxi01:50100/XISOAPAdapter/MessageServlet?channel=:DXI_Client_400:SynchronousWebServiceversion=3.0Sender.Service=DXI_Client_400Interface=http%3A%2F%2Fnetcare.co.za%2Fxi%2Fswitchtonetcare%5ESynchronousSoapReceiver | View the original post :

[JBoss-user] [JBossWS] - Re: java.lang.NullPointerException

2006-05-22 Thread [EMAIL PROTECTED]
What is the NPE stack trace? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945273#3945273 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945273 --- Using Tomcat but

[JBoss-user] [Beginners Corner] - problem with Jboss and ibatis

2006-05-22 Thread winylm
Hi, I am doing a project, that i use jboss+spring+ibatis+mysql, but when i deploy my war file on Jboss. I am just testing a single function login. For the first time, i can login. Then i change the password in database, but i can't login use new password, the system.println() shows that Jboss

[JBoss-user] [JBossWS] - Re: Multiple return types in Document-style endpoints

2006-05-22 Thread [EMAIL PROTECTED]
How did you generate the wsdl? Also have a look at http://fisheye.jboss.com/viewrep/JBossWS/trunk/src/test/java/org/jboss/test/ws/marshall/MarshallDocLitTestCase.java?r=275 it conains many methods with many different return types View the original post :

[JBoss-user] [JBossWS] - Re: Support for java enum type.

2006-05-22 Thread [EMAIL PROTECTED]
JAXWS, JAXB-2.0 is not part of J2EE-1.4 JBossWS-1.0.0.GA does not have support for JAXWS nor for JAXB. You can monitor the roadmap for progress on this. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945276#3945276 Reply to the post :

[JBoss-user] [JBossWS] - Re: NoSuchMethodError in remote client WS call

2006-05-22 Thread [EMAIL PROTECTED]
Yes, you have the wrong wsdl4j.jar on your client classpath. Use the one from the jboss client dir View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945277#3945277 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945277

[JBoss-user] [JBoss jBPM] - jbpm OAS

2006-05-22 Thread gkara
Hello, we are trying to integrate JBPM with OAS by making a compatible ear file for JBPM on OAS out of the sar file existing in starters kit. Ideally jbpm is deployable on any application server. Did anybody have experience with jbpm on OAS? Just to know in advance if it is impossible or what

[JBoss-user] [JBossWS] - Re: JBoss 4.0.4GA and JAXB

2006-05-22 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBWS-947 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945279#3945279 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945279 --- Using

[JBoss-user] [EJB/JBoss] - Setting timeout for EJB call

2006-05-22 Thread radhirepala
Hi, I am accessing an EJB(Ideally another AS(eg. weblogic)) from EJB deployed in Jboss AS, when the method is not returning for any reason I have to terminate the request. Is there any configuration specified by jboss to terminate the process after certain time period. I heared Weblogic is

[JBoss-user] [JBossWS] - Re: WSTools Errors

2006-05-22 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWSFAQClientJars View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945282#3945282 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945282

[JBoss-user] [JBossWS] - Re: Generaet stubs for J2EE1.5 client

2006-05-22 Thread [EMAIL PROTECTED]
Please monitor http://jira.jboss.com/jira/browse/JBWS-929 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945283#3945283 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945283

[JBoss-user] [EJB 3.0] - Any possibility to invoke EJB3 from 1.4 client?

2006-05-22 Thread silbunn
Currently I got a situation where I am forced to have java 1.4.2 client and wondering if there is any chance to invoke session bean (EJB3)? Any suggestions welcome! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945285#3945285 Reply to the post :

[JBoss-user] [JBossWS] - Re: JBossWS tutorial

2006-05-22 Thread [EMAIL PROTECTED]
http://labs.jboss.com/portal/index.html?ctrl:id=page.default.infoproject=jbossws View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945286#3945286 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945286

[JBoss-user] [JBossWS] - Re: Migrating ATG Web Services to JBossWS

2006-05-22 Thread [EMAIL PROTECTED]
http://labs.jboss.com/portal/index.html?ctrl:id=page.default.infoproject=jbossws View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945287#3945287 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945287

[JBoss-user] [JBossWS] - Re: JBoss WS with attachment issues

2006-05-22 Thread [EMAIL PROTECTED]
http://labs.jboss.com/portal/jbossws/user-guide/en/html/mtom-xop.html http://labs.jboss.com/portal/jbossws/user-guide/en/html/attachments.html View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945288#3945288 Reply to the post :

[JBoss-user] [Beginners Corner] - Re: property file outside jar

2006-05-22 Thread cristalleke
Is there no expert who can help me or provide me a link where I can find some information? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945289#3945289 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945289

[JBoss-user] [JBossWS] - Re: Endpoint: http://host/srv/uri:Test Problem

2006-05-22 Thread [EMAIL PROTECTED]
Thanks Anders, good post. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945293#3945293 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945293 --- Using Tomcat but need

[JBoss-user] [Messaging, JMS JBossMQ] - Re: configuration on JBOSS for JMS

2006-05-22 Thread cristalleke
Hi Mike, Thanks for the reply. The problem is that I did not do the installation of JBOSS. Is there be a special requirement needed during the installation of the AS? Thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945292#3945292 Reply to the post :

[JBoss-user] [EJB/JBoss] - Re: java.lang.ClassCastException javax.rmi.PortableRemoteObj

2006-05-22 Thread coyotelp
Hi, I've the same problem. From Junit Classes It's works fine ( remote Ejb only). From Servlet Classes : If I Use : new InitialContext().lookup(java:comp/env/ejb/xxx) , i have a ClassCastException. If I Use : Hashtable props = new Hashtable(); props.put(

[JBoss-user] [JBossWS] - Re: Server or Client fault code??

2006-05-22 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBWS-805 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945296#3945296 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945296 --- Using

[JBoss-user] [JBossWS] - Re: rpc/encoded style on JBOSS4.0.4GA

2006-05-22 Thread [EMAIL PROTECTED]
rpc/encoded is not allowed by the BasicProfile-1.0. You would need to use literal encoding View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945297#3945297 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945297

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Problem with the Tutorial

2006-05-22 Thread somnathp
I am also facing this problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945298#3945298 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945298 --- Using Tomcat but

[JBoss-user] [JBossWS] - Re: URL mapping of Webservice

2006-05-22 Thread [EMAIL PROTECTED]
If it is a JSE endpoint you can define the /context-root in jboss-web.xml and the url-mapping in web.xml If it is an EJB endpoint have a look at @PortComponent http://fisheye.jboss.com/viewrep/JBossWS/trunk/src/main/java/org/jboss/ws/annotation/PortComponent.java?r=377 View the original post :

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - The difference between Tomcat 5.5.16 and JBoss(Tomcat5.5.16)

2006-05-22 Thread Rikko
Hi, I encountered a weird situation while trying to debug a portlet. The bug I tried to debug is not really that important, but if you want to know: Somehow when I press the save button in this portlet it didn't save. In my efforts to get this portlet debugged, I tried to view this portlet as

[JBoss-user] [Messaging, JMS JBossMQ] - Re: How to connect to a remote Queue from webapp

2006-05-22 Thread jaikiran
You need to specify the remoteserver name(or address) in the InitialContext and do a lookup for the remote queue. Something like: // create a JNDI context | Hashtable env = new Hashtable(); | env.put(Context.INITIAL_CONTEXT_FACTORY,

[JBoss-user] [JBossWS] - Re: WSException: String passed is null

2006-05-22 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBWS-948 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945302#3945302 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945302 --- Using

[JBoss-user] [JBoss/Spring Integration] - You are trying to use a connection factory that has been shu

2006-05-22 Thread shileiofchina
when i using JBoss ,i get the fellow error. anonymous wrote : You are trying to use a connection factory that has been shut down: ManagedConnectionFactory is null.; - nested throwable: (javax.resource.ResourceException: You are trying to use a connection factory that has been shut

[JBoss-user] [EJB 3.0] - Re: IllegalStateException in BaseSessionContext.getCallerPri

2006-05-22 Thread asylumx
I'm sorry for not posting this sooner - Here is how I solved this problem without writing my own authentication: First, make sure to set up login-config.xml in jboss-home/server/default/conf. Here is an example | | application-policy name=other | authentication |

[JBoss-user] [JBossWS] - Re: wstools-config.xml

2006-05-22 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBWS-949 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945306#3945306 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945306 --- Using

[JBoss-user] [JBossWS] - Re: jboss.axis.attachments.OctetStream in JBoss 4.0.4GA?

2006-05-22 Thread [EMAIL PROTECTED]
Do you care telling us about it? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945307#3945307 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945307 --- Using Tomcat but

[JBoss-user] [JBossWS] - Re: attributes of type xsd:QName incorrectly serialized

2006-05-22 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBWS-950 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945308#3945308 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945308 --- Using

[JBoss-user] [Security JAAS/JBoss] - Re: help w/ DatabaseServerLoginModule

2006-05-22 Thread j2ee_junkie
William, The way Tomcat's CMA works (with considerations that you are using FormAuthentication)... | 1 un-authenticated user requests a securred resource A | | 2 container caches url A, redirects to login page | | 3 user either authentciates or does not | | 4 if they do not,

[JBoss-user] [JBoss/Spring Integration] - Re: You are trying to use a connection factory that has been

2006-05-22 Thread alesj
This is not 'Spring/Hibernate used in JBossAS' forum. Read what this forum is about: http://java.sys-con.com/read/180386.htm Rgds, Ales View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945311#3945311 Reply to the post :

[JBoss-user] [JBossWS] - Re: wstools not generating Java for enum pattern

2006-05-22 Thread vlewis
Yes. Sorry I wasn't clear enough. I am using jbossws 1.0.0 GA plugged into the JBoss 4.0.4 CR server. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945312#3945312 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945312

[JBoss-user] [JBossWS] - Re: Confused about the new JBossWS, JSR 109 and wstools

2006-05-22 Thread [EMAIL PROTECTED]
Your client should run as an J2EE application-client http://wiki.jboss.org/wiki/Wiki.jsp?page=JBWSFAQClientModel The new stack is XML schema aware, it does not need the propriatary ws4ee-deplyment.xml descriptor any more. View the original post :

[JBoss-user] [JBossWS] - Re: wstools not generating Java for enum pattern

2006-05-22 Thread [EMAIL PROTECTED]
So, is this still an issue with jboss-4.0.4.GA? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945315#3945315 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3945315 ---

[JBoss-user] [JBoss jBPM] - Re: Role of JbpmThreadsServlet CommandExecutorThread

2006-05-22 Thread itsmeprash
Should i modify the JbpmThreadsServlet to pass the JPBMConfiguration from the Spring appContext. Thanks Prashanth View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3945318#3945318 Reply to the post :

[JBoss-user] [Installation, Configuration Deployment] - Error org.omg.CORBA.TRANSIENT

2006-05-22 Thread plusdesign
When I run Jboss after 10s i server.log I see that server stoped and the last two lines are: 2006-05-22 12:37:41,156 DEBUG [org.jboss.system.ServiceController] starting service jboss:service=CorbaTransaction 2006-05-22 12:37:41,156 DEBUG [org.jboss.tm.iiop.CorbaTransactionService] Starting

[JBoss-user] [JBossWS] - Re: wstools-config.xml

2006-05-22 Thread [EMAIL PROTECTED]
cliffb53 wrote : Maybe I'm wrong but from my experiences I reckon that wstools only supports a single webservice per config.xml. | That is correct, this is because the output directory is shared for a single tools run. anonymous wrote : It rewrites the files per iteration (ie. you have two

[JBoss-user] [JBoss jBPM] - Create ProcessDefinition Manually

2006-05-22 Thread itsmeprash
Hi, I would like to create the ProcessDefinition xml file manually through a web interface instead of the graphical editor (as plugin for eclipse) provided by jbpm. Has anybody tried doing this? how did you approached this? Anybody using a different approach other than graphical editor.

[JBoss-user] [JBossWS] - Re: wstools not generating Java for enum pattern

2006-05-22 Thread [EMAIL PROTECTED]
We do not yet have support for enums when using wsdl-java. This is planned for 1.0.2 [url] http://jira.jboss.com/jira/browse/JBWS-940[/url] Also, there is a bug in the 1.0.0 release when dealing with simple types. This has been fixed for the 1.0.1 release. [url]

[JBoss-user] [JBoss jBPM] - Re: jbpm 3.0 on tomcat

2006-05-22 Thread DavidR
I am also trying to get jbpm 3.1 running on tomcat. I have deployed the jbpm war file to my tomcat/webapps directory, and included all the jar files mentioned in the Deployment section of the users guide. I have added the jbpm.cfg.xml and hibernate.cfg.xml to the root of my class path. I keep

[JBoss-user] [JBoss Portal] - Re: JSF RI portlet --Minimize/Maximize?

2006-05-22 Thread herveminko
I am so happy to read that somebody have deployed a JSF RI portlet in JBoss Portal, because i'm trying to do the same, but it doesn't work (i think because of the MyFaces libraries). How did you configure your JSF application (or your portal) ??? I would appreciate any kind of indication.

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Using httpd to serve images

2006-05-22 Thread tekniklas
Hello, I am considering serving images from httpd. I currently have it running with mod_jk and it forwards all requests to jboss. But I've heard different things about whether using httpd for images actually is faster. And if httpd would stop working now I'd still have complete functionality by

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Problem with oracle-ds.xml

2006-05-22 Thread tramkumar
hi, I am planned to use Oracle database with Jboss4.0.4. Where i need to keep oracle-ds.xml? Inside META-INF of bean jar file or In META-INF directory of ear file or any where else Please help me in this issue View the original post :

[JBoss-user] [JBoss Seam] - Re: RequestParameter problem

2006-05-22 Thread mirko27
It gives me trouble every time when i call bean which has requestparameter, but request does not have that parameter. Giving errors and not letting me work normally. There most definitely is something that im designing wrong... View the original post :

[JBoss-user] [JBoss jBPM] - Re: Associate field list in designer?

2006-05-22 Thread kbarfield
Yes, you can define fields in the visual process designer, then have them show up in the sample web UI. Please take a look at this Getting Started Guide link: http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmGettingStarted Thanks, Kevin View the original post :

  1   2   3   >