[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Software caused connection abort: recv failed

2005-10-28 Thread mcaughey
I have an application running on JBoss 4.0.2 using Hibernate 3.0 and MySQL Connector 3.1.10 all using the 1.5_04 JDK. I'm seeing this on Windows XP with MySQL 4.0.26 and RedHat Linux 7.1 with MySQL 3.23.58. I'm getting the following stack trace: | | java.net.SocketException: Software ca

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-28 Thread wiley173
Howdy , thanks for the reply. After my latest post a lightbulb went off on what I really need to do to get this working , or at least my next learning experience ... Basically it's a really simple content management system where there are /admins and /members based on the "budget" I only

[JBoss-user] [JBossWS] - Using a Web App Session with SOAP requests

2005-10-28 Thread bsheward
Hi, In my application, I want to force the users to login to a web application before they can use the application which communicates via SOAP. I have setup the web app based login, and can see a Subject gets created, but for some reason, when the app which uses SOAP sends its first request, i

[JBoss-user] [Installation, Configuration & Deployment] - Re: CannotConnectException JBoss4.0.3

2005-10-28 Thread martynez
I experiened the same problem. Please upgrade your jboss-remoting.jar on the client side to the server version. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904265#3904265 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[JBoss-user] [Installation, Configuration & Deployment] - Jboss 4.0.2 dies out of the box on CentOS SMP machine

2005-10-28 Thread [EMAIL PROTECTED]
Jboss 4.0.2 runs like a dream right out of the box under my Debian Sarge laptop. On my server, however, it barfs out of the box. System info and stack trace below. Any ideas?? Thanks in advance to all who reply. anonymous wrote : | OS:CentOS release 4.2 (Final) | | uname:Linux 2.6.9-22.

[JBoss-user] [JCA/JBoss] - Re: problem w/ OracleValidConnectionChecker

2005-10-28 Thread mka
Certainly helped me out. You'd think such a simple solution would have been presented much earlier by those in the know. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904257#3904257 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[JBoss-user] [JBossWS] - How to show java.io.File , and hide a int element in WSDL?

2005-10-28 Thread chwang
Hi Folks, I have a DataObject, like this public class DataObject implements java.io.Serializable { pivate Integer commandKey; private File outputFile; public DataObject(){} public void setCommandKey(Integer aKey) { commandKey =

[JBoss-user] [Beginners Corner] - Re: JBossIDE Trail - How do I package and deploy the client

2005-10-28 Thread KidJava
Actually it's running but I get: org.jboss.proxy.ejb.EJBMetaDataImpl (no security manager: RMI class loader disabled ) I tried: if( System.getSecurityManager() == null ) { System.setSecurityManager( new RMISecurityManager() ) } but it's not working. Any suggestions? View the original po

[JBoss-user] [Beginners Corner] - EJB deployment spec violation.

2005-10-28 Thread dejanb
Hi, I'm porting an application from BEA Weblogic to JBoss and I'm not really sure how to interpret the error below: 14:44:44,723 WARN [verifier] EJB spec violation: Bean : GuaranteedEventConsumer Section: 22.2 Warning: The Bean Provider must specify the fully-qualified name of the Java class

[JBoss-user] [Beginners Corner] - Re: what the difference between different jndi names

2005-10-28 Thread boost
Ok, thanks. I'll read through the entire book! It seemed very nice, good explanaitons and easy to understand. I think i know how to solve my problem but i won't be able to test it out until sunday. i'll drop you a note if it works (and a longer one if it doesn't :) ) View the original post : h

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-28 Thread nehring
Just wondering why you have 5 databases with authentication information. Are you suggesting that the client provide the name of the database to authenticate against? or that there is a 6th datastore that selects a database based on login name? It sounds to me like this a security issue that

[JBoss-user] [Security & JAAS/JBoss] - Re: Automatic Login to web app

2005-10-28 Thread [EMAIL PROTECTED]
Yes, this can be done in Javascript; we did it at my former employer. I can't remember the exact details (I'm not an AJAX developer), but I believe our login page had the javascript to get the XMLHttpRequest and post back to security check. If we got a 200 from the server we then did a javascr

[JBoss-user] [JBoss Portal] - Re: Where is HelloWorldPortlet?

2005-10-28 Thread anagnost68
Anyone? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904215#3904215 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904215 --- This SF.Net email is sponsored by the

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-28 Thread wiley173
When I use my little security system I connect to the DefaultDS ... then in my login.class I ... | try{ | Class.forName("com.mysql.jdbc.Driver").newInstance(); | con = DriverManager.getConnection( | "jdbc:mysql://localhost/" + dat

[JBoss-user] [JBossCache] - Re: JBoss 4.0.3 message: No transaction manager lookup class

2005-10-28 Thread [EMAIL PROTECTED]
Try: org.jboss.cache.GenericTransactionManagerLookup It can discover a TransactionManager in JNDI bound under the names used by JBoss, Weblogic, JRun, JoOnAS, Resin, Orion, and several versions of Websphere. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=390

[JBoss-user] [JBossCache] - Re: JBoss 4.0.3 message: No transaction manager lookup class

2005-10-28 Thread kbisla
so how do you get hold of a transaction manager out side of jboss. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904210#3904210 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904210

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-28 Thread wiley173
Greetings, That's what I'm using and what I've been working with. I've got my own athentication system but I think the correct way is to use yours but I can't figure out how to dynamically connect to a jndi name based on the login name. I don't want 5 apps running with 5 databases, I'd rather ha

[JBoss-user] [Beginners Corner] - JBossIDE Trail - How do I package and deploy the client

2005-10-28 Thread KidJava
I followed the instruction for the servlet and that worked fine, but there are no examples of how to package / deploy / run the client. I want to now: 1. Package the client 2. Test the client in the IDE while the JBoss server is running The trail has a app client, but the trail does not show wh

[JBoss-user] [JBossWS] - Re: Custom parameter in wsdd

2005-10-28 Thread jimwatkins
Well I expiramented with the servlet tag in the web.xml | PafService | com.palladium.paf.server.PafServiceProvider | 1 | but that did nothing, to your point, it's not a servlet. But as part of the WSDD spec I came across the parameter I thought it might have differ

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - mod_jk with Jboss/Tomcat problem!!!!

2005-10-28 Thread mcevikce
I am trying to front Jboss/Tomcat with Apache HTTPD server. Installed mod_jk 1.2.14 and created the worker.properties. I can see that I have the connection to workers and it does work when I call the http://localhost:/ but if I were to call my servlet or any jsp pages http://localhost:777

[JBoss-user] [Security & JAAS/JBoss] - Re: add roles: not visible to JBOSS

2005-10-28 Thread javatwo
Works great! Thank you very much. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904204#3904204 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904204 --- This SF.Net

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Use the forums not JIRA to ask for help

2005-10-28 Thread [EMAIL PROTECTED]
Read thorughly: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossHelp http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossFAQ When you have established a "bug" then it goes in JIRA. When you have fixed your config/code we don't confuse users with none bugs. Help -> forums View the original post : http:/

[JBoss-user] [Messaging, JMS & JBossMQ] - Use the forums not JIRA to ask for help

2005-10-28 Thread [EMAIL PROTECTED]
anonymous wrote : | Okay, I am really not doing anything special. It is a simple MDB using bean managed transaction management. The MessageDrivenContext and ConnectionFactory are being injected with @Resource annotations. The UserTransaction is obtained from the MessageDrivenContext. The JMS

[JBoss-user] [JBossWS] - Re: ws4ee missing?!

2005-10-28 Thread mugwump
I don't know, and I can't reconstruct it: As there is obviously no easy way to install ws4ee if it is not installed by the installer, I saved all configurations reinstalled jboss. We now have a script that restores our jboss-configuration - the ws4ee that is installed in the all-profile runs f

[JBoss-user] [JBossWS] - Re: Data returned from WS is incorrect type and empty.

2005-10-28 Thread stevehnsn
The solution was to define the type for the DataHandler to be "application/octet-stream". The solution looks like this: | | http://web.imaging/ImagingService"; | xmlns:tns="http://web.imaging/ImagingService"; | xmlns="http://schemas.xmlsoap.org/wsdl/"; | xmlns:ns2="http

[JBoss-user] [Beginners Corner] - Re: IBM Announces Open-Source WebSphere

2005-10-28 Thread [EMAIL PROTECTED]
Nothing changes as its yet another app server somehow based on geronimo. We have our roadmap to execute on to move jboss forward and whether or not websphere (or weblogic) open source components only affects the available sources for implementation. View the original post : http://www.jboss.c

[JBoss-user] [Security & JAAS/JBoss] - Re: Get list of users/roles no matter what JAAS security mod

2005-10-28 Thread cmiles123
Thank you for your replies. You have been most helpful... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904179#3904179 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904179 ---

[JBoss-user] [Security & JAAS/JBoss] - Re: Get list of users/roles no matter what JAAS security mod

2005-10-28 Thread [EMAIL PROTECTED]
Only logged in as there is no way in general to query the security domain state as this is not a feature of JAAS. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904178#3904178 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

[JBoss-user] [EJB/JBoss] - Re: javax.naming.NameNotFoundException: InterfaceStyleLocal

2005-10-28 Thread [EMAIL PROTECTED]
Trailing whitespace in the local-jndi-name will not be preserved. If the code you show is correct you are expecting the whitespace to exist in the bound name. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904171#3904171 Reply to the post : http://www.jboss.

[JBoss-user] [Beginners Corner] - Re: IBM Announces Open-Source WebSphere

2005-10-28 Thread darranl
"test_new_sw" wrote : | Saw this information about IBM releasing an open source Weblogic: | BEA might be abit upset about that! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904166#3904166 Reply to the post : http://www.jboss.com/index.html?module=bb&

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: @OneToMany Problem for the formal release (4.0.3) versio

2005-10-28 Thread [EMAIL PROTECTED]
Use the EJB3 forum. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904164#3904164 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904164 --- This SF.Net email is spon

[JBoss-user] [Beginners Corner] - IBM Announces Open-Source WebSphere

2005-10-28 Thread test_new_sw
Hello All, Saw this information about IBM releasing an open source Weblogic: http://websphere.sys-con.com/read/145755.htm Wanted to see whats the JBoss strategy on this step from IBM? I am big fan of open source and JBoss. Some of the remarkable things about JBoss AS are apart from its open sou

[JBoss-user] [Security & JAAS/JBoss] - Re: Caching of Authenticated data

2005-10-28 Thread [EMAIL PROTECTED]
Chapter 8 of the jbossas docs and http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossSX View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904163#3904163 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904163 -

[JBoss-user] [JCA/JBoss] - Re: mysql-ds.xml in my EJB-JAR

2005-10-28 Thread [EMAIL PROTECTED]
No deployment descriptors except the ejb deployment descriptors can be under the META-INF directory. All others should be outside of META-INF. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904162#3904162 Reply to the post : http://www.jboss.com/index.html?m

[JBoss-user] [J2EE Design Patterns] - design patterns research

2005-10-28 Thread aosman
Hi folks , I am seeking help from people with background in software design like you to fill an online questionaire for a reserach study. The link is at http://www.integrationsolutions.co.uk/Patterns_form.htm (take approx 5 minutes to fill ) Many thanks in advace View the original post : http

[JBoss-user] [Beginners Corner] - Re: JTATransaction question

2005-10-28 Thread [EMAIL PROTECTED]
Try the EJB3 forum. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904160#3904160 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904160 --- This SF.Net email is spon

[JBoss-user] [Installation, Configuration & Deployment] - Re: JSSE Debug Output Missing In 4.0.1 Log

2005-10-28 Thread [EMAIL PROTECTED]
Both the org.apache.tomcat.util.net.jsse and its appender are commented out, so show a log4j.xml that has nothing but useful entries that is not working. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904159#3904159 Reply to the post : http://www.jboss.com/i

[JBoss-user] [JBossWS] - Re: OperationDesc for a method was not synchronized to a met

2005-10-28 Thread tpallavi
Well it seems that jboss 4.0.2 has a bug that does not allow more than one parameter in the bean methods. When I reduced the parameters in the register method to only one, it works just fine. I should have mentioned that I was working on jboss4.0.2. Thanks View the original post : http://www

[JBoss-user] [Security & JAAS/JBoss] - Re: Automatic Login to web app

2005-10-28 Thread [EMAIL PROTECTED]
Form auth cannot be triggered by an arbitrary post. It has to be done in response to the container challenging a request to a secured resource in the context of a newly created session. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904157#3904157 Reply to

[JBoss-user] [JCA/JBoss] - Re: Hypersonic - localDB.properties ?

2005-10-28 Thread [EMAIL PROTECTED]
Its generated by hsqldb if it does not already exist. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904156#3904156 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904156 ---

[JBoss-user] [Beginners Corner] - Re: Help please

2005-10-28 Thread utjazz
Thank you very much for the link and info. Just what i was looking for. Thanks again. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904155#3904155 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904155

[JBoss-user] [JBoss Portal] - Re: Portlet login - no transaction propagation on invalid lo

2005-10-28 Thread [EMAIL PROTECTED]
filter is a web notion interceptor is a jboss portal notion even if those notion are similar. transaction is a portal notion and not a web notion, that's why it has been moved to interceptor to be applied per portal request. View the original post : http://www.jboss.com/index.html?module=bb&op

[JBoss-user] [Installation, Configuration & Deployment] - shutdown.bat throws exception when jboss is ssl

2005-10-28 Thread mdessure
Environment: JBoss 4.0.1SP1 Windows XP/ Linux JDK1.5 I configured JBoss to use my own ssl certificate and JBoss and my application are happy. The problem arises when I execute the shutdown (shutdown.bat or shutdown.sh) script. I get an ssl exception (details of the exception below). The command

[JBoss-user] [Javassist user questions] - Re: Create class from source in memory

2005-10-28 Thread chiba
You cannot make a CtClass from source code of a whole class declaration. However, you can first create an empty CtClass and then append to it a CtMethod created from source code of a method declaration. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904152#39

[JBoss-user] [Javassist user questions] - Re: CtConstructor insertBefore problem

2005-10-28 Thread chiba
Please use insertBeforeBody() in CtConstructor. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904150#3904150 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904150

[JBoss-user] [Security & JAAS/JBoss] - Re: Security error after migrating to 4.0.3

2005-10-28 Thread [EMAIL PROTECTED]
You have to have org.jboss.* classes in your deployment that should not be there for this to show up in the first place. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904149#3904149 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[JBoss-user] [Javassist user questions] - Re: Constructor -> Method

2005-10-28 Thread chiba
I have just implemented a convenient method toMethod() in CtConstructor. It changes a constructor to a method. super() or this() in the body of the original constructor is eliminated. Please download from CVS HEAD. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic

[JBoss-user] [JBossWS] - Re: object inheritance with their schema

2005-10-28 Thread chwang
Thomas, Thank you very much for your reply. My questions are: 1.) I can use wscompile tool to generate the DataObjetc schema in WSDL. but WSDL doesn't show the ReportDataObject and ExportDataObject schema in WSDL. I supposed WSDL should show all of them together automactlly. How can I generate

[JBoss-user] [Security & JAAS/JBoss] - Re: ERROR

2005-10-28 Thread [EMAIL PROTECTED]
The only way I can see this happening is if you have org.jboss.* classes in your app deployment. Remove them. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904146#3904146 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[JBoss-user] [Security & JAAS/JBoss] - Re: quick question on module-options

2005-10-28 Thread [EMAIL PROTECTED]
Look at the org.jboss.security.auth.spi.DatabaseServerLoginModule source for an example. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904145#3904145 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904145 ---

[JBoss-user] [Security & JAAS/JBoss] - Re: Get list of users/roles no matter what JAAS security mod

2005-10-28 Thread cmiles123
Thank you for your reply... Yes, I saw this and the other methods on the SecurityManager. Regarding this method, is this just a list of everyone that happens to have logged in, or does this actually return ALL the users in the Security implementation. So for example, if I'm hooked up to LDAP an

[JBoss-user] [Security & JAAS/JBoss] - Re: Get list of users/roles no matter what JAAS security mod

2005-10-28 Thread [EMAIL PROTECTED]
All that currently exists is the getAuthenticationCachePrincipals op of the "jboss.security:service=JaasSecurityManager" mbean: |/** The the list of active Principls for the given security domain | * @param securityDomain - the security-domain name | * @return List of active us

[JBoss-user] [JBossCache] - Replicated caches with each node having its own store

2005-10-28 Thread gbarna
Hi, can someone provide me a configuration for the in the "JBossCache Reference Manual" mentioned 9.4.4. Replicated caches with each node having its own store i tried to configure the caches and it will be replicated every change between the transient (in-memory) caches but it is not stored to

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: problem with byte data type in jboss 4.0.3+Ingres 3.0.1

2005-10-28 Thread Jonefun
I presume that your field "Password" is more than a single byte but an array of bytes. The mapping in 4.0.3 maps a Byte to a TinyInt and fails to convert your Byte[] into a series of TinyInts. If your password is an encrypted byte array then perhaps you could try mapping byte to a blob field or

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: JBoss 4.0.3 - EJB 3.0 - Exception caused by UNIQUE const

2005-10-28 Thread Jonefun
Firstly a bit of background I have a Person entity that has a email property. The email property is marked as Unique to force an exception if two users attempt to register with the same email address. I have a tiered architecture with my presentation layer running on a web server (Tomcat) and m

[JBoss-user] [JBoss.NET] - Re: org.jboss & org.apache

2005-10-28 Thread [EMAIL PROTECTED]
This is not possible because of the way the SOAP factories work. It will always find one or the other implementation. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904128#3904128 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[JBoss-user] [JBossWS] - Re: OperationDesc for a method was not synchronized to a met

2005-10-28 Thread [EMAIL PROTECTED]
The log should tell you why? Try with the latest, it has better logging in that area cvs co -r Branch_4_0 jboss-4.0.x View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904127#3904127 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[JBoss-user] [JBossWS] - Re: object inheritance with their schema

2005-10-28 Thread [EMAIL PROTECTED]
What is the specific question? Are the Step by Step Tutorials not clear enough? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904126#3904126 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904126 -

[JBoss-user] [JBossWS] - Re: Namespace problem with JBossWS generated SOAP

2005-10-28 Thread [EMAIL PROTECTED]
This should be fixed http://jira.jboss.com/jira/browse/JBWS-430 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904125#3904125 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904125 -

[JBoss-user] [JBossWS] - Re: Securing ServiceEndPoint for Servlet type WS

2005-10-28 Thread [EMAIL PROTECTED]
Sorry about the crutial typo that negated the meaning of what I wanted to say. A java service endpoint deployed as a war is NO different with respect to setting up a security domain as any other webapp. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904124#39

[JBoss-user] [JBossWS] - Re: Sending only part of an object

2005-10-28 Thread [EMAIL PROTECTED]
What is the message on the wire, does it still contain the properties that you removed? If so this is fixed http://jira.jboss.com/jira/browse/JBWS-380 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904123#3904123 Reply to the post : http://www.jboss.com/in

[JBoss-user] [JBossWS] - Re: ws4ee missing?!

2005-10-28 Thread [EMAIL PROTECTED]
what is the diff of a standard server/default/lib and the ejb3-profile one? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904121#3904121 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904121 -

[JBoss-user] [JBossWS] - Re: no attachment with id

2005-10-28 Thread [EMAIL PROTECTED]
This is related to http://jira.jboss.com/jira/browse/JBWS-479 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904119#3904119 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904119 --

[JBoss-user] [JBossWS] - Re: an InstantiationException during invocation on the new 4

2005-10-28 Thread [EMAIL PROTECTED]
Have a look at scoped loader repositories. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904117#3904117 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904117 --- Th

[JBoss-user] [JBossWS] - Re: Problem with AlwaysModifySOAPAddress?

2005-10-28 Thread mwaschkowski
Alright, will do, on Monday, I'll let you know. Thanks very much Thomas. Regards, Mark View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904116#3904116 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904116 --

[JBoss-user] [JBossWS] - Re: simple question about virtual hosts

2005-10-28 Thread [EMAIL PROTECTED]
Try to get a trivial webapp working on that virtual host. Only if that works, we might have a WS related issue. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904115#3904115 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[JBoss-user] [Security & JAAS/JBoss] - Re: Security error after migrating to 4.0.3

2005-10-28 Thread ghan13
Thanks! Works like a charm now. :-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904114#3904114 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904114 --- This SF.N

[JBoss-user] [JBoss Portal] - Re: Portlet login - no transaction propagation on invalid lo

2005-10-28 Thread alesj
Should I remove TransactionFilter and write/add a new global TransactionInterceptor into jboss-container.xml? Or what's the advantage of filter vs. container interceptor? Rgds, Ales View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904113#3904113 Reply to the

[JBoss-user] [JBossWS] - Re: Problem with AlwaysModifySOAPAddress?

2005-10-28 Thread [EMAIL PROTECTED]
Have a look at ant -Dtest=org.jboss.test.webservice.addressrewrite.AddressRewriteTestCase one-test View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904111#3904111 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904111

[JBoss-user] [Beginners Corner] - Re: what the difference between different jndi names

2005-10-28 Thread darranl
Have you read the JNDI sections in Mastering Enterprise Java Beans? What is your client that is doing the lookup? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904109#3904109 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

[JBoss-user] [JBossWS] - Re: Acessing webservice with browser

2005-10-28 Thread [EMAIL PROTECTED]
This is only available with jbossws in jboss-head jboss.ws:service=ServiceEndpointManager operation: processSOAPRequest jbossws-1.0 will however be backported to jboss-4.0.x View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904108#3904108 Reply to the post : h

[JBoss-user] [Security & JAAS/JBoss] - Re: Automatic Login to web app

2005-10-28 Thread cmiles123
Hello, Thanks for your response. You either get a 400 or 404 HTTP error code and as I understand from reading other posts this is because you aren't allowed to access the login page or j_security_check directly. You must access a secured resource and let the normal j2ee mechanics redirect you

[JBoss-user] [Security & JAAS/JBoss] - Re: Security error after migrating to 4.0.3

2005-10-28 Thread niwhsa
Well the default classloader config that comes with jboss has changed since 4.0.2. Go to the deploy/tomcatx.sar/meta-inf folder. open the service.xml and change the UseJBossclassloader to true and also set usejava2classloading to true. Should do the trick View the original post : http://www.jbo

[JBoss-user] [Security & JAAS/JBoss] - Re: Automatic Login to web app

2005-10-28 Thread niwhsa
what is the error you are getting and please post the stack trace View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904102#3904102 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904102 ---

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: createTopic Error!

2005-10-28 Thread neotyk
"lovejesus" wrote : | for example , topic/MyTopic does'nt exist at the deploy time,so i want to create one topic named MyTopic at the run time. | If it doesn't exist at deployment time it is created by JBossAS, not you. "lovejesus" wrote : | but when the Queue/Topic already exists ,creat

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - CMP and Transactions

2005-10-28 Thread dan-b
Hi, I have a question according to transaction management in CMP where I cannot find an answer (maybe because I don't know what I should look for) but maybe you can help me to understand... I have a session bean A with "Requires New". This creates a new database entry for entity bean B that has

[JBoss-user] [JBossWS] - Re: JNDI Lookup returns Reference - causes ClassCastExceptio

2005-10-28 Thread [EMAIL PROTECTED]
I think this is no different to any other serialVersionUID issue. The server that binds the QName into JNDI is using a different version than your client. From the class loaders you can find out from which jar QName is comming from. This is not really web service related. View the original post

[JBoss-user] [JBossWS] - Re: JB4 can not handle SOAP message but JB3 can

2005-10-28 Thread [EMAIL PROTECTED]
rpc/encoded is not allowed with J2EE-1.4 web services View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904089#3904089 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904089 ---

[JBoss-user] [JBossWS] - Re: Data returned from WS is incorrect type and empty.

2005-10-28 Thread [EMAIL PROTECTED]
Have looked at the attachement tests in the testsuite? If you are convinced that you found a bug please create a JIRA issue and attach a sample deployment that allows us to reproduce what you are seeing. Idealy, the sample deployment is a webapp packaged as a war that will show the issue when w

[JBoss-user] [JBossWS] - Re: Problem generating the Java types from WSDL file contain

2005-10-28 Thread [EMAIL PROTECTED]
Did you point wscompile to the original location? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904086#3904086 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904086 ---

[JBoss-user] [JBossWS] - Re: delphi7 can not call jbossws

2005-10-28 Thread [EMAIL PROTECTED]
What is the SOAP message oin the wire? You need to enable debuging for org.jboss.axis to see it in the log. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904084#3904084 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39

[JBoss-user] [JBossWS] - Re: Custom parameter in wsdd

2005-10-28 Thread [EMAIL PROTECTED]
What is the reason for that? AFAIK, the loadOnStartup loads the servlet before the request. Your service endoint impl is no servlet, so this would not have any effect. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904083#3904083 Reply to the post : http://

[JBoss-user] [Installation, Configuration & Deployment] - jboss 4.0.2 under jdk 1.5

2005-10-28 Thread btimur
I try to start jboss 4.0.2 under jdk. 1.5 but i have this error 18:14:06,889 WARN [BasicMBeanRegistry] javax.management.MBeanRegistrationException: preRegister() failed:[ObjectName='JMImplementation:type=MBeanServerDelegate',Class=javax.management.MBeanServerDelegate ([EMAIL PROTECTED])] | F

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

2005-10-28 Thread dougxiao
Thanks darranl! I was having the same problem. I remove the -client.jar file from packing as suggested, and the tutorial runs fine. My configuration is: JBossIDE-1.5M3-Bundle-win32 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904072#3904072 Reply to the po

[JBoss-user] [JBoss Portal] - Re: User portlet

2005-10-28 Thread bsmithjj
did you create logout.jsp in 'jboss-portal.sar\portal-server.war\' directory? If so, your login.jsp can contain code like this for getting the user back into the flow of your portal/web-app: logout.jsp | <% session.invalidate(); |response.sendRedirect("http://myserver.com:8080/login/log

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: createTopic Error!

2005-10-28 Thread hargitt
I implemented the following to be able to create dynamic queues. I am sure it can easily be adapted for a Topic: |/** | * Gets the queue from JNDI. This is synchronized as if the queue does not | * exist, a new queue is created. | * @param iniCtx | * @par

[JBoss-user] [JBoss Portal] - Re: Portlet login - no transaction propagation on invalid lo

2005-10-28 Thread [EMAIL PROTECTED]
it seems to be a tomcat issue. yet you can wrap yourself the db activity with a transaction I think. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904062#3904062 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904062

[JBoss-user] [Installation, Configuration & Deployment] - Re: where do i put my client JSP ?

2005-10-28 Thread Matrix1234
>http://localhost:1099/myApp/samPle.jsp this also does not work... i am getting a javascript prompt " connection refused when attempting to connect localhost" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904061#3904061 Reply to the post : http://www.jboss

[JBoss-user] [Installation, Configuration & Deployment] - Re: where do i put my client JSP ?

2005-10-28 Thread Matrix1234
jaikiran, r u there ? is it my port problem ? it it 1099 ? i dont know...how do i know what is my port ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904060#3904060 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904

[JBoss-user] [Beginners Corner] - Re: what the difference between different jndi names

2005-10-28 Thread boost
I also have a question. I have managed to deploy my project just fine and also look it up. My question is how do i configure jboss so that i can use the local lookup(java:comp/env/ejb/MyBean)? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904059#3904059 Rep

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Stopping / Starting Tomcat web applications

2005-10-28 Thread furbern
Unfortunately twiddle start does not work when using the standard 'all' configuration. The twiddle stop does successfully stop the web application and browser clients are served the '503 Application not available' and the following is logged by our context listener: 2005-10-28 11:43:20,375 INFO

[JBoss-user] [Installation, Configuration & Deployment] - Re: where do i put my client JSP ?

2005-10-28 Thread Matrix1234
>http://localhost:8080/myApp/samPle.jsp i am getting a javascript prompt " connection refused when attempting to connect localhost" View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904057#3904057 Reply to the post : http://www.jboss.com/index.html?module=b

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: problem with cmp byte data type mapping in jboss 4.0.3+I

2005-10-28 Thread grp_eee
We are really in urgent need of help to solve this issue. Any help on this would be greatly appreciated. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904056#3904056 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: createTopic Error!

2005-10-28 Thread lovejesus
anonymous wrote : If you have MDB that listens on Queue/Topic that doesn't exist at deployment time,Queue/Topic is created by JBoss. this is exactly what i want! for example , topic/MyTopic does'nt exist at the deploy time,so i want to create one topic named MyTopic at the run time. but when

[JBoss-user] [Installation, Configuration & Deployment] - Re: where do i put my client JSP ?

2005-10-28 Thread jaikiran
"Matrix1234" wrote : 04:19:32,125 INFO [EARDeployer] Started J2EE application: file:/C:/jboss/server | /default/deploy/myApp.ear | Congrats, your application has been deployed now. You can access your jsp as follows: http://localhost:8080/myApp/samPle.jsp View the original post : ht

[JBoss-user] [EJB/JBoss] - javax.naming.NameNotFoundException: InterfaceStyleLocal not

2005-10-28 Thread aisulisheng
jboss.xml: . . InterfaceStyle InterfaceStyleLocal . . Client: (Context)new InitialContext().lookup("InterfaceStyleLocal "); env:jboss3(4) InterfaceStyle is a entity-bean(BMP) .I have deploy the ejb.jar on the jbo

[JBoss-user] [Installation, Configuration & Deployment] - Re: where do i put my client JSP ?

2005-10-28 Thread Matrix1234
so, it seems it has been uploaded. how do i call my JSP now ? i tried http://localhost/myApp/samPle.jsp ===>does not work . i dont see the port number in the console . whats the port number ? how do i call my JSP ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtop

[JBoss-user] [EJB/JBoss] - Re: javax.naming.NameNotFoundException: InterfaceStyleLocal

2005-10-28 Thread aisulisheng
"aisulisheng" wrote : jboss.xml: | . | . | | InterfaceStyle | InterfaceStyleLocal | | . | . | Client: | (Context)new InitialContext().lookup("InterfaceStyleLocal "); | env:jboss3(4) | Inter

[JBoss-user] [Installation, Configuration & Deployment] - Re: where do i put my client JSP ?

2005-10-28 Thread Matrix1234
here is the mesage now. ... .. 1098, backlog=50, bindAddress=/0.0.0.0, Client SocketFactory=null, Server Socket [EMAIL PROTECTED] 04:19:18,171 INFO [Embedded] Catalina naming disabled 04:19:18,812 INFO [Http11Protocol] Initializin

[JBoss-user] [JNDI/Naming/Network] - Re: InvalidClassException when accesing from external App on

2005-10-28 Thread guix
Funny enough I have even made sure the actual classes are the same files and still get the error. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3904044#3904044 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3904044 --

  1   2   >