[JBoss-user] [Installation, Configuration & Deployment] - Re: what's wrong here?

2005-08-31 Thread wuchuanzi
jboss-4.0.3RC2 "wuchuanzi" wrote : DEBUG [org.jboss.ejb.txtimer.DatabasePersistencePolicy] Starting jboss.ejb:service=EJBTimerService,persistencePolicy=database | ERROR [org.jboss.security.auth.spi.UsersRolesLoginModule] Failed to load users/passwords/role files | java.io.IOException: No prop

[JBoss-user] [Installation, Configuration & Deployment] - what's wrong here?

2005-08-31 Thread wuchuanzi
DEBUG [org.jboss.ejb.txtimer.DatabasePersistencePolicy] Starting jboss.ejb:service=EJBTimerService,persistencePolicy=database ERROR [org.jboss.security.auth.spi.UsersRolesLoginModule] Failed to load users/passwords/role files java.io.IOException: No properties file: users.properties or defaults:

[JBoss-user] [Beginners Corner] - Re: HAR Deployer: Why is AUTO_CLOSE_SESSION hard-coded as TR

2005-08-31 Thread nigmann
Sorry, I forgot: I'm using JBoss 4.0.2 and the Hibernate version that is bundled with it, Hibernate 3.0.2, I believe. Bernd. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892528#3892528 Reply to the post : http://locahost:8080/index.html?module=bb&op=posti

[JBoss-user] [Beginners Corner] - HAR Deployer: Why is AUTO_CLOSE_SESSION hard-coded as TRUE ?

2005-08-31 Thread nigmann
I would like to use the following pattern for my web application: (1) A new HTTP request comes in and is intercepted by a ServletFilter that starts a new hibernate session for the current thread (using ThreadLocal). (2) The request gets passed on to Struts and some actions that work with my dat

[JBoss-user] [JBossWS] - standalone ws client

2005-08-31 Thread zozilla
i've wrote a standalone ws client (using jboss 4.0.3rc2 client lib). | List list = new ArrayList(); | HandlerInfo hi = new HandlerInfo(); | hi.setHandlerClass(ClientHandler.class); | list.add(hi); | | service.getHandlerRegistry().setHandlerChain( |new QName(namespaceURI, "WSEEDe

[JBoss-user] [JBossWS] - Re: Looking for example code

2005-08-31 Thread zozilla
acxsjones, i met the same question you've met. in a standalone client, i wrote | String namespaceURI = ".."; | List list = new ArrayList(); | HandlerInfo hi = new HandlerInfo(); | hi.setHandlerClass(MyClientHandler.class); | lis

[JBoss-user] [JBoss Portal] - UTF-8 Support

2005-08-31 Thread danny_hon
I am using JBoss Portal 2.0, and I need to support UTF-8. I can display UTF-8 characters, but I can't make the HTTP POST to work with UTF-8 data. In a normal web application, I can use request.setCharacterEncoding("UTF-8") to set the encoding of the request InputStream. Within a portlet, I got

[JBoss-user] [Clustering/JBoss] - Re: client-side invoker load-balance logic in code?

2005-08-31 Thread anguyen
Can you post your jboss.xml from your ejb jar? View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892522#3892522 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892522 -

[JBoss-user] [Security & JAAS/JBoss] - Re: Hang on secure jrmp lookup

2005-08-31 Thread tlien
I forget the invoker declaration in jboss.xml. Here it is | | | stateless-ssl-invoker | jboss:service=invoker,type=jrmp,socketType=SSL | org.jboss.proxy.ejb.ProxyFactory | | | | org.jboss.proxy.ejb.HomeInterceptor |

[JBoss-user] [Beginners Corner] - Re: EJB deployment problem

2005-08-31 Thread pwallace
Hi, I am am developing and deploying one the same box. thanks for any ideas Paul. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892521#3892521 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892521

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Can't save data in database

2005-08-31 Thread khoff999
Here's a little more I found out: During a save Hibernate is executing a method in class AbstractSaveEventListener that is testing whether a variable useIdentityColumn is true or false. It's false in mine (I don't know why, I do have an indentity column defined). It looks to me

[JBoss-user] [Clustering/JBoss] - client-side invoker load-balance logic in code?

2005-08-31 Thread [EMAIL PROTECTED]
I am trying to track down why my client will not load-balance between clustered servers. I have debugged all the way through to JMRPInvoker_Stub Unicast.invoke() and cannot see any load-balancig logic. Can someone point me to the exact class and lines of code that should be executed when load

[JBoss-user] [Security & JAAS/JBoss] - Hang on secure jrmp lookup

2005-08-31 Thread tlien
My problem is that a lookup on a session bean hangs after I change it to use the jrmp over SSL. I am using jboss-3.2.3. Here are the configs I added. If I take out the invoker-bindings in the jboss.xml to use the default jrmp it works again. Any help is appreciated. | | Cl

[JBoss-user] [Clustering/JBoss] - Re: client-side invoker load-balance logic in code?

2005-08-31 Thread [EMAIL PROTECTED]
Hmmm... org.jboss.invocation.jrmp.server.JRMPInvokerHA ?? Too bad I don't see this in my debugger. I guess that might be why it is not loadbalancing properly. I've defined my SLSB as "Clustered Stateless SessionBean" from standardjboss.xml. I figured that would through the JRMPInvokerHA into

[JBoss-user] [JBossWS] - jboss-client.xml

2005-08-31 Thread hsutarwala
In the WSDOCStepByStepClient an artifact with name jboss-client.xml is created. Where does this file end up? application-client.xml and jaxrpc-mapping-client.xml are created too, where do these end up? View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892507#389

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Avoinding message re-delivery

2005-08-31 Thread subvert
I'm a little confused by your request. Are you asking how to limit the number of retries? If so, set the RedeliveryLimit attribute for your Queue's MBean. The message will proceed to the DLQ after the RedeliveryLimit is met. View the original post : http://locahost:8080/index.html?module=bb&o

[JBoss-user] [Installation, Configuration & Deployment] - Can I create new server instance outside the JBOSS_HOME/serv

2005-08-31 Thread mcevikce
I like to run an instance of my server on a different location then where Jboss is istalled. Is that possible? For example: jboss is installed usr/apps/JBOSS_HOME/ and default server is in /servers/default I want to create a new instance of server /usr/setup/m

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Using ${...} in web.xml

2005-08-31 Thread anguyen
I have a need to support variables in web.xml whose values can be provided by system properties. I can do this for virtually all other JBoss config files, like jboss-web.xml, jboss-service.xml, etc... Does anyone know if there's an easy way to get this kind of variable support to work in web.x

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Re-sending messages from the DLQ

2005-08-31 Thread subvert
So, one solution is to replace the queue's DLQ with a custom MDB and resend the Message to the original queue. I really don't like the idea of getting caught in an endless loop sucking up bandwidth and other resources. I guess I will have to create a DLQ MDB which persists the messages to a di

[JBoss-user] [Clustering/JBoss] - Re: JMS failover

2005-08-31 Thread [EMAIL PROTECTED]
destinations are on a single, MasterNode. When that fails, the HASingleton service redeploys them on another node View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892500#3892500 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=rep

[JBoss-user] [Installation, Configuration & Deployment] - Re: How can I configure my custom service to start after eve

2005-08-31 Thread darranl
Create a folder called deploy.last in the existing deploy folder and place your sar in that folder, the .last folder should be left until everything else has been deployed. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892511#3892511 Reply to the post : ht

[JBoss-user] [Clustering/JBoss] - Re: Clustered servers on same machine not load-balancing

2005-08-31 Thread [EMAIL PROTECTED]
Here is my jndi.properties on the client-side. Should auto-discover the servers... Am I missing something in these settings? java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces jnp.discoveryGroup=230.0.0.4 jnp.disc

[JBoss-user] [Installation, Configuration & Deployment] - How can I configure my custom service to start after everyth

2005-08-31 Thread iagrest
How can I configure my custom service to start after everything in deploy directory is deployed? Thank you so much View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892498#3892498 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=re

[JBoss-user] [Clustering/JBoss] - Re: Clustered servers on same machine not load-balancing

2005-08-31 Thread anguyen
It looks like you're using the non-clustered naming context to lookup your EJB. Try this: | ... | Properties props = new Properties(); | props.setProperty(javax.naming.Context.PROVIDER_URL, "jnp://localhost:1100"); | InitialContext ic = new InitialContext(props); | ... | View the

[JBoss-user] [JBossWS] - Re: JAXRPC Client Throwing [ERROR,PortProxy] Port error

2005-08-31 Thread blue_cuijian
Which jboss version are you using? looke like its loading the org.apache package instead of org.jboss. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892496#3892496 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892496

[JBoss-user] [Messaging, JMS & JBossMQ] - Avoinding message re-delivery

2005-08-31 Thread optimusprime
Hello there! I have a process that uses Messaging with queues. When somethings goes wrong (An unchecked exception, I'm dealing with the checked) let's say nullpointer, the message is re-sent "n" times. Since my process is very time/process consuming. How do I avoid this? The more strange it seem

[JBoss-user] [Clustering/JBoss] - Clustered servers on same machine not load-balancing

2005-08-31 Thread [EMAIL PROTECTED]
In several places on the Forum and Wiki (ex: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=52323) I see that I can run a cluster on the same machine (same NIC too). I've set it up using the binding service and it works great UNTIL testing load-balancing of requests across a clustered

[JBoss-user] [JBossWS] - Re: SimpleDeserializer Exception

2005-08-31 Thread blue_cuijian
The type is actually a complex type, which is different frim "Simple", I suggest using the sun jwsdp package to auto-generate descriptors XMLs rather than manully. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892497#3892497 Reply to the post : http://loca

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Can't save data in database

2005-08-31 Thread khoff999
I've been having the same problem for 2 weeks. Its so bad that my management told me to stop using Hibernate, but I keep playing with it hoping I can figure it out. The problem has to be something stupid, but its equally as stupid that you can execute session.save() and not get an exceptio

[JBoss-user] [JCA/JBoss] - Re: Broken pipe - connection reset

2005-08-31 Thread andrew123
Thanks Hari, no, the database is all right and ready to accept new connections. The network is not a factor as well. Any other ideas? Thanks, Andrew View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892481#3892481 Reply to the post : http://locahost:8080/inde

[JBoss-user] [Beginners Corner] - Re: Resolving external dtd's behind firewall- web service de

2005-08-31 Thread pgrebby
Top banana, will try that tomorrow, thanks ! View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892484#3892484 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892484 ---

[JBoss-user] [JBossWS] - Cannot load wsdl file 'USE_JBOSS_CLIENT_XML_OVERRIDE'

2005-08-31 Thread hsutarwala
javax.naming.NamingException: Cannot load wsdl file 'USE_JBOSS_CLIENT_XML_OVERRIDE' from: file:/C:/java/jboss/jboss-4.0.3RC2/server/default/tmp/deploy/tmp18989webservices-calculatetax-1.0.jar at org.jboss.webservice.client.ServiceObjectFactory.getObjectInstance(ServiceObjectFactory.java:

[JBoss-user] [Beginners Corner] - Re: EJB deployment problem

2005-08-31 Thread john19990330
probably u are using external libraries which is not compatible on the platform u r deploying your ejb jar, try to compile everything from target machine and see if everything is fine. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892480#3892480 Reply to th

[JBoss-user] [Installation, Configuration & Deployment] - Running JBoss on dynamic IP address?

2005-08-31 Thread jkytang
Hi I'm new to Jboss I would like to configure JBoss 4.0.2 on Redhat linux 9. And I need to call remote EJBs from another PC across the internet. It works fine when I modify /etc/hosts so that my hostname can be resolved to a valid IP address. i.e. anonymous wrote : 127.0.0.1

[JBoss-user] [JBossWS] - TypeMapping problem with Java 1.4.2

2005-08-31 Thread boehme
Hi We observed a very different behaviour in resolving type mapping for QName under JBoss 4.0.2(default config) with Java 1.5 and 1.4. Under 1.5 it is working fine with 1.4 JBoss/Axis say no typemapping registered for javax.xml.namespaces.QName. We use a war file. Here the WSDL | ?xml vers

[JBoss-user] [JNDI/Naming/Network] - Re: Co-located HA JNDI and EJB Clients

2005-08-31 Thread ibruell
i have a similar scenario like skand and i hope that there would be a solution without hardcoding port 1100 for accessing the HAJNDI. I need a solution to send events to both nodes transparantly. The application should be installable on a one node environment and in a clustered environment. Vi

[JBoss-user] [JBoss Portal] - Re: Wrong ear deployment/undeployment

2005-08-31 Thread szimano
1.0alpha - but it is before i made it ear so has no problems at all. Tomek View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892474#3892474 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892474 -

[JBoss-user] [JBoss Portal] - Re: Wrong ear deployment/undeployment

2005-08-31 Thread [EMAIL PROTECTED]
What version is JBoss Wiki running in labs? View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892469#3892469 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892469 --- S

[JBoss-user] [Security & JAAS/JBoss] - Re: jboss authentication service

2005-08-31 Thread evrim
let me propose my classpath solution. I've seen that ProxyLoginModule loads the module parameter class to use login module, this is not what i want. What about extending proxyLoginModule to JNDILoginModule? Which means i'll lookup login module from jndi and use it. By this way, i don't need to

[JBoss-user] [Security & JAAS/JBoss] - Re: jboss authentication service

2005-08-31 Thread evrim
ok, let me phrase my solution. i'll try to cascase login modules. First, i'll flag jboss login modules as requisite afterwards add new custom login module (flagged as optional) so that i can record "user logged in" via slsb in the other security domain as you've said. This is good for me so t

[JBoss-user] [JBoss Portal] - Re: Reasons for using portlets - newbie

2005-08-31 Thread [EMAIL PROTECTED]
Portals are content aggregators, using portlets to display the information from different information systems. So you can conceivably have a portal with sforce.com portlets that use SOAP to communicate, and then have the AlfrescoCMS Portlet using an API to communicate with some backend CMS on a

[JBoss-user] [Installation, Configuration & Deployment] - Re: Block Directory Listings

2005-08-31 Thread jcash
Thanks, that works fine. I also managed to get it to work by moving the complete servlet and servlet-mappings sections to the web.xml within my deployed WAR file. This allowed me to have different list directory settings on a per deployed application basis. It is also possible to copy the secti

[JBoss-user] [Installation, Configuration & Deployment] - Hot Deployment in production Environment?

2005-08-31 Thread umeshs79
Hi, Is anyone using Hot deployment in production environment? Is it reliable to use in production environment? I am planning to use it. But I seen on some sites/forum that it is not so robust, so not recommented for production envrionment.. Please let me know if anyone using hot deployment in

[JBoss-user] [EJB/JBoss] - Use Bean-Managed Transaction in 2 Session BEans

2005-08-31 Thread coolhour
Hi! I'm using JBoss 3.2.x Here is what I'd like to do: 1. Start a bean-managed transaction within a stateless session bean (S1) 2. do a lookup to a second stateless session bean (S2) 3. do something within S2 (no own transaction is inititated, I want to use the on of S1) 4. Commit the transacti

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Connection handle is not currently associated with a Managed

2005-08-31 Thread riankruger
Hi I am getting the following error erratically (stack trace at bottom of message). All our database access is being done using the HibernateTemplate (load, save, update) methods and the HibernateCallback api, we never ?open? or ?close? hibernate sessions ourselves. We are using spring v1.1, hi

[JBoss-user] [JBoss Portal] - Reasons for using portlets - newbie

2005-08-31 Thread damon311
All, I understand that portlets are used primarily for content aggregation, but companies such as salesforce.com, netsuite.con and alfresco.org aren't aggregators and appear to be developed on some type of portal infrastructure. These applications provide portlets that, most likely, share a com

[JBoss-user] [EJB/JBoss] - Re: EJBQL

2005-08-31 Thread jactor
I just upgraded to the 4.0.3RC2 release and the problem disappeared No more headaches :) View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892458#3892458 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892458 --

[JBoss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - Re: ex04_2 deployment problem

2005-08-31 Thread songjinlong72
thanks!thank a lot! View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892457#3892457 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892457 --- SF.Net email is Sponsored

[JBoss-user] [JBossWS] - Re: could not find deserializer for type

2005-08-31 Thread siddhik1982
I've added the follwing ws4ee-deployment.xml it's working. And I'm able to send WebServiceDO object to the client but member variable values are going as nill string. Pls tell me what might be the problem here. ws4ee-deployment.xml | | | | | View the original post : http://lo

[JBoss-user] [JBoss Portal] - Wrong ear deployment/undeployment

2005-08-31 Thread szimano
Hi, I have a problem writing JBoss Wiki, using Portal 2.0 and EJB3 RC1 for couple days and i can't jump it :/ Here is the deal. JBoss Wiki now is a single ear file containing EJB3 service file (wiki.ejb3) for make WikiEngine (class for accesing pages etc.) available for all backends, wiki-comm

[JBoss-user] [Installation, Configuration & Deployment] - Re: Block Directory Listings

2005-08-31 Thread anguyen
I haven't tried this, but it looks it should work. To change this setting for all webapps deployed in JBoss, change deploy/jbossweb-tomcat55.sar/conf/web.xml: from | | default | org.apache.catalina.servlets.DefaultServlet | | debug | 0 |

[JBoss-user] [Clustering/JBoss] - Not pulling altered deployments on 4.0.3RC2

2005-08-31 Thread kkoster
I have just moved from 4.0.3RC1 to 4.0.3RC2. When starting up a second server in a cluster with farming enabled, the new server is not pulling down changed deployments from the farm. I have to delete the deployments from the farm directory before starting the second server to get updated deploym

[JBoss-user] [Installation, Configuration & Deployment] - Re: 4.0.3RC2 deployment priorities? EJB JAR before HAR?

2005-08-31 Thread benoitx
Here is the long stacktrace so one can see that it tries to deploy a JAR (via SARDeployer??? I do not have a SAR file, simple a JAR and HAR), it fails to do so and THEN it deploys the HAR sucessfully. Any idea? Thanks | 14:22:02,997 INFO [testQueue][main] Bound to JNDI name: queue/testQueu

[JBoss-user] [JBossWS] - JAXRPC Client Throwing [ERROR,PortProxy] Port error

2005-08-31 Thread manishvyas
Web Service is deployed properly in Jboss and URL http://localhost:80/hello-servlet/Hello?wsdl displaying XML file content When I am runing example client through ant it is working fine. But not working from command promt as below c:\java -classpath . org.jboss.chap12.client.HelloCli

[JBoss-user] [JNDI/Naming/Network] - Re: ports in JBoss

2005-08-31 Thread sachinvshah
Have you solved this problem. Can you post your solutions please Sachin View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892437#3892437 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892437 ---

[JBoss-user] [Installation, Configuration & Deployment] - 4.0.3RC2 changed the deployment priorities? EJB JAR before H

2005-08-31 Thread benoitx
Hi Since upgrading to 4.0.3RC2 this morning it seems that JBoss tries to deploy the JARs BEFORE the Hibernate HARs. This is causing some startup issue in my application as the EJB relies on some classes in the HAR. I believe that a similar problem existed pre 3.2.6 but was fixed... Anyone exp

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - No ManagedConnections available

2005-08-31 Thread kvikram
Hi All, We are running a application which uses JDO in the database layer. Below is our configuration. JBoss 3.2.3 Database: Oracle 9.* Very often we run into the below problem | No ManagedConnections available within configured blocking timeout ( 6 [ms] ) | We analysed and fo

[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss4.0.3RC2 fails to start

2005-08-31 Thread benoitx
I think it is the same problem that I faced today... I am not sure what it is... but if you compare the server/default/uil2-service.xml between RC1 and RC2 a few lines have been ADDED to that file: | | | QueueConnectionFactory | ConnectionFactory | java:/JmsX

[JBoss-user] [JNDI/Naming/Network] - CommunicationException during lookup

2005-08-31 Thread kkoster
I moved from 4.0.3RC1 to 4.0.3RC2 and am suddenly getting JNDI lookup problems (stack trace to follow). I have tried both single and HA versions of JNDI and have the same results. A little background: I have a factory class that caches naming contexts. In this case a single naming context is

[JBoss-user] [JBossWS] - JAX-RPC Mapping DD, what metadata is used by JBoss?

2005-08-31 Thread Ilchen
In using the WS subsystem of JBoss, I observed that it ignores a fair amount of metadata supplied in a JAX-RPC Mapping DD. In particular I observed the following: 1. java-xml-type-mapping. Jboss ignores the xml-element-name element on the assumption that its value is the same as that of java-

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Can't save data in database

2005-08-31 Thread mkundu
Hi, I am developing an application in jboss integreting hibernate.I am saving database through hibernate.It's not giving any error or exception. But,transaction is not commiting. Code of Bean class is like that SimpleDateFormat formatter = new SimpleDateFormat(

[JBoss-user] [Beginners Corner] - Re: Resolving external dtd's behind firewall- web service de

2005-08-31 Thread Lviz
hi again, me again. found something,... worth a try | basic authentication - direct and via proxy | | The HTTP client invoker also has support for BASIC authentication for both proxied and non-proxied invocations. For proxied invocations, the following properties need to be set: |

[JBoss-user] [JNDI/Naming/Network] - Re: ConcurrentModificationException in org.jboss.ha.jndi.Det

2005-08-31 Thread kkoster
Apparently this is not fixed. I have moved to 4.0.3RC2 and am still getting the following stack trace when a moderate number of clients (~60) attempt to access a common set of services. 07:56:13,812 WARN [RunnableTaskWrapper] Unhandled throwable for runnable: org.j [EMAIL PROTECTED] java.util.

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0.1RC1 released

2005-08-31 Thread bdaw
sorry about your loss... Portal forums are not very stable product yet and we are working hard to change it. Port from nukes is still not finished and there were some important (and critical) updates since 2.0 http://jboss.org/index.html?module=bb&op=viewtopic&t=67674 The one wich caused sche

[JBoss-user] [JBossCache] - Re: Problems with eviction

2005-08-31 Thread antonkommar
Would be the TreeCache#public DataNode peek(Fqn fqn) more appropriate in such a case? However, this method is not public in JBCache 1.2.3. Are there any other ways to solve the problem? Thanks, Anton View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892415#38

[JBoss-user] [Installation, Configuration & Deployment] - Re: JNDI Datasource points to MySQL database

2005-08-31 Thread jcash
Create a file called timesheet-ds.xml in your deploy directory with the following contents (changing server, username , password and testsqlsettings where relivent). | | | Timesheet | jdbc:mysql://server:3306/jbossdb | com.mysql.jdbc.Driver | username | pas

[JBoss-user] [JBoss Getting Started Documentation] - Re: Problem running Web Service Client

2005-08-31 Thread manishvyas
Hi All, I am also getting same error. could you send me suggestion. Manish View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892413#3892413 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892413 ---

[JBoss-user] [JBoss Portal] - Adding portlet mode including a new icon

2005-08-31 Thread mvoOpenText
Hello My Portal extends the supported modes by a new mode CONFIG. This mode is shown as a normal link. The question is, what do i have to do, to replace the text link with an icon of my own? anonymous wrote : | | LivelinkPortal | | VIEW | EDIT |

[JBoss-user] [JBossCache] - Re: Problems with eviction

2005-08-31 Thread Skipy
BTW, I try to use TreeCache.removeAllLocks(Fqn). It works as expected. Call does through interceptors, thus, read lock can't be acquired on the node by Fqn specified. This method can't help in write lock release. Regards, Eugene aka Skipy View the original post : http://locahost:8080/index.htm

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0.1RC1 released

2005-08-31 Thread joyjava
"joyjava" wrote : Thanks to julien and others, you are great! Look forward to 2.2 View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892410#3892410 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892410 ---

[JBoss-user] [JBossCache] - Re: Problems with eviction

2005-08-31 Thread Skipy
But after this fail the following error apper on 10.0.20.91: | 2005-08-31 13:28:31,292 tcpConnection-6802-7 ERROR [.jboss.cache.lock.IdentityLock] (t:22896576 u:2642 s:subscriber b:jbroke | r) read lock for /subscriber/user/2642 could not be acquired by <10.0.20.91:34864>:60 after 15000 ms

[JBoss-user] [JBossCache] - Re: Problems with eviction

2005-08-31 Thread Skipy
I've found place in logs where fail occures: I'm writing value under node /subscriber/user/2642, then trying to commit: | 2005-08-31 13:25:22,892 tcpConnection-6802-11 DEBUG [rrent.locks.dist.AbstractDLock] (t:3624064 u:2642 s:subscriber b:jbroke | r) Writing value for FQN=/subscriber/user

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0.1RC1 released

2005-08-31 Thread joyjava
"joyjava" wrote : "joyjava" wrote : i am copy portal-forums.ear 2.0.1RC1 to replace 2.0 all, it's OK. | Oh, my God, my forums data is gone! I give up, and rollback all to 2.0 View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892403#3892403 Reply to the post :

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0.1RC1 released

2005-08-31 Thread joyjava
"joyjava" wrote : i am copy portal-forums.ear 2.0.1RC1 to replace 2.0 all, it's OK. Oh, my God, my forums data is gone! View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892401#3892401 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mod

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0.1RC1 released

2005-08-31 Thread joyjava
i am copy portal-forums.ear 2.0.1RC1 to replace 2.0 all, it's OK. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892400#3892400 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892400 ---

[JBoss-user] [JBossCache] - Re: Problems with eviction

2005-08-31 Thread Skipy
Bela, thank you for answer! It seem to me, that there could be at least two sources of such problems. 1. JVM crashes within the replication stage. We kill it under high load (a lot of replications), but sometimes we should do this 5-7 times to have such effect. This is right what JBCache-10 you

[JBoss-user] [Installation, Configuration & Deployment] - JNDI Datasource points to MySQL database

2005-08-31 Thread mdeyab
Hi all, I am new to JBoss. I want to create new JNDI DataSource called: "java:/Timesheet" to point to a mysql databsase. How could I do that ? I was lost in the Documentation and need someones help. yours, Mohamed Fathy Abd El Aziz View the original post : http://locahost:8080/index.html?modu

[JBoss-user] [Security & JAAS/JBoss] - "Single SignOn" from WebStart application to WebApp

2005-08-31 Thread AndersEngstrom
Hi. We're having an interesting problem: We have an application with a primary client that is a Java WebStart application. The JWS client uses business logic published by SLSB's in a JBoss 4.0.2 server. The JWS client uses JAAS (ClientLoginModule) to authenticate itself with the EJB-tier. A

[JBoss-user] [Beginners Corner] - How to add JNDI name to point to mysql database

2005-08-31 Thread mdeyab
Hi all, I want to create new JNDI DataSource called: "java:/Timesheet" to point to a mysql databsase. How could I do that ? I was lost in the Documentation and need someones help. yours, Mohamed Fathy Abd El Aziz View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic

[JBoss-user] [Installation, Configuration & Deployment] - Block Directory Listings

2005-08-31 Thread jcash
How do you stop directory listings in JBoss? When the http requests maps to a physical directory location within a deployed war file, the contents of that directory are listed in the response. How can this default behavior be stopped, so that a 'resource not found' or other similar exception is

[JBoss-user] [Advanced Documentation] - Re: Blocking Directory Listing

2005-08-31 Thread jcash
Apologies, I have posted this in the wrong forum, I have reposted in 'Installation, Configuration & Deployment'. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892393#3892393 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0.1RC1 released

2005-08-31 Thread joyjava
How to upgrade from 2.0? View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892394#3892394 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892394 --- SF.Net email is Spon

[JBoss-user] [Advanced Documentation] - Blocking Directory Listing

2005-08-31 Thread jcash
How do you stop directory listings in JBoss? When the http requests maps to a physical directory location within a deployed war file, the contents of that directory are listed in the response. How can this default behavior be stopped, so that a 'resource not found' or other similar exception is

[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0.1RC1 released

2005-08-31 Thread joyjava
Thanks to julien and others, you are great! View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892390#3892390 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892390 --- S

[JBoss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - Re: ex04_2 deployment problem

2005-08-31 Thread darranl
JBoss does suppot both of the JDK versions, the problem is only if you compile your component using a later JDK version to the version JBoss is using. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892389#3892389 Reply to the post : http://locahost:8080/inde

[JBoss-user] [Beginners Corner] - Re: How to log to the Console?

2005-08-31 Thread darranl
Using log4j if you log your messages as info they should be displayed on the console, alternatively log as debug and they should be captured in the existing log file {jboss.home}/server/default/log/server.log. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=389

[JBoss-user] [Beginners Corner] - Re: Woodenhead about Connection Strings

2005-08-31 Thread darranl
Post the actual error you are getting, never try to describe an error just cut and paste it as readers are more likely to understand the actual error. Also it is probably the first error that contains the most useful information, the message at the end is a summary of the failures. View the ori

[JBoss-user] [Installation, Configuration & Deployment] - JBoss4.0.3RC2 fails to start

2005-08-31 Thread hurzeler
Hello there, I just installed Jboss4.0.3RC2 on WinXP SP2 Java 1.5.0_04-b05 using the nifty new installer. I installed JBoss on c:\Jboss4.0.3RC2. However runing it I get the exception below. Can anyone suggest how I troubleshoot this. I have turned off firewalls and switched off processes. I u

[JBoss-user] [Installation, Configuration & Deployment] - How do you turn off web services ? (start up probs)

2005-08-31 Thread pgrebby
I'm trying to deploy an app that happens to have some web services defined in it. Essentially this is a proof of concept deployment of a Websphere app into Jboss and I'm actually not bothered about running any of the web services. The app will not deploy due to problems encountered with the web

[JBoss-user] [Security & JAAS/JBoss] - Re: SSL + RMI Deplyment Error

2005-08-31 Thread tdursun
You have to add a JRMPInvoker and a JAASSEcurityDomain entry into jboss-services.xml file. Done this? View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892378#3892378 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892378

[JBoss-user] [Security & JAAS/JBoss] - Re: SSL client authenitcation

2005-08-31 Thread tdursun
The URL does not include anything for client authentication in EJB access View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892376#3892376 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892376 --

[JBoss-user] [Security & JAAS/JBoss] - Re: ejb-ssl with client authentication ?

2005-08-31 Thread tdursun
Please notify me in case of a solution View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892372#3892372 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892372 --- SF.Net

[JBoss-user] [Security & JAAS/JBoss] - Re: ejb-ssl with client authentication ?

2005-08-31 Thread tdursun
I need the solution of this problem. As far as I figured out from my JBoss debugs, JBoss does not say anything to JSSE to force client authentication. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892371#3892371 Reply to the post : http://locahost:8080/ind

[JBoss-user] [Security & JAAS/JBoss] - Re: Switching keystores

2005-08-31 Thread tdursun
You have to import the public certificate of UDDI Server into JBoss's trust store. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892370#3892370 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892370 -

[JBoss-user] [Security & JAAS/JBoss] - Re: SSL Secret?

2005-08-31 Thread tdursun
Which keystore did you give to JBoss ? View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892369#3892369 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892369 --- SF.Net

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - @ManyToMany mapping of an interface...

2005-08-31 Thread JeffreyDissmann
HeHo, ist it possible to map some thing like this: My Entities: Interface human; @Entity class man implements human; @Entity class woman implements human; class city{ @ManyToMany public List citizen; } TATA: org.hibernate.MappingException: Association references unmapped class: hum

[JBoss-user] [Security & JAAS/JBoss] - Re: stunnel or SSL

2005-08-31 Thread tdursun
We have prefered using SSL support of JBoss instead of using an SSL proxy like STunnel. You can easily turn on the JSSE support in JBoss both for Bean Access and for JMS access. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892367#3892367 Reply to the po

[JBoss-user] [JBossCache] - Re: Problems with eviction

2005-08-31 Thread [EMAIL PROTECTED]
It would be good if you could describe the exact scenario that leads to those locks remaining held after the end of a TX. There is a JIRA issue for this (http://jira.jboss.com/jira/browse/JBCACHE-10), but I haven't yet gotten to it, because this use case is very rare. It only happens when the co

[JBoss-user] [Security & JAAS/JBoss] - Re: Certificate Chain

2005-08-31 Thread tdursun
Are you sure that yout key repository contain a certificate chain? May be your certificate a self-signed certificate. View the original post : http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892365#3892365 Reply to the post : http://locahost:8080/index.html?module=bb&op=posting&mode=

[JBoss-user] [Security & JAAS/JBoss] - Is there a way to list currently logged-in users from an App

2005-08-31 Thread BI-Chris
Is there an easy way to get a list of all Users currently using an Application? The Application consists of several EJBs which are used from an Client-Application - no web-Interface. It is using it's own security domain. I was wondering if there is no way to get such a list from the web-console

  1   2   >