[JBoss-user] [JBossWS] - Exposing SLSB that has both checked and unchecked methods

2005-05-04 Thread Essington
Is it possible to expose a SLSB as a web service that has both checked and unchecked methods? Once I add auth-method to the port-component of a bean, the whole service (all methods) require authentication (http authentication) however if I do not add auth-method none of the methods ask for auth

[JBoss-user] [Installation & Configuration] - Netboot from a server that requires Basic Authentication

2005-04-14 Thread Essington
I Started fooling with netboot on JBoss 4.0.2rc1 last weekend, and found that it didn't want to netboot from a server that required authentication. I fooled around with org.jboss.Main and org.jboss.net.protocol.http.DavURLLister and by adding about 15 lines of code, I managed to get JBoss to ne

[JBoss-user] [JBoss.NET & SOAP] - Re: do I need Axis to start ??

2004-05-10 Thread Essington
Axis is included in the JBoss.Net module, there is no need to download another copy of it. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3834263#3834263 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3834263 -

[JBoss-user] [JBoss.NET & SOAP] - Re: tomcat/axis WS won't deploy

2004-05-06 Thread Essington
There is a little intro to JBoss.Net here: http://www.nsdev.org/jboss/stories/jboss-net.html that may help you out. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3833916#3833916 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=

[JBoss-user] [JBoss.NET & SOAP] - Re: Integrate Axis 1.2 with JBoss !!

2004-04-23 Thread Essington
"kkanagaraj" wrote : Can you please tell me where shall I download JBoss-Head ? | -kkanagaraj you will have to check it out from cvs there is a bit of info available here: http://sourceforge.net/cvs/?group_id=22866 the command to get jboss-head is cvs -q -z3 -d:pserver:[EMAIL PROTECTED]:/cvs

[JBoss-user] [JBoss.NET & SOAP] - Re: Integrate Axis 1.2 with JBoss !!

2004-04-22 Thread Essington
Axis 1.2 is already in JBoss4 (head) as it is required for WSS (wss47j) and Web Service Addressing. It is a simple matter to backport it to JBoss3.2.x however it hasn't been done mostly because there isn't an official release yet. There is some API change in Axis 1.2 that requires some change in

[JBoss-user] [JBoss.NET & SOAP] - Re: Integrate Axis 1.2 with JBoss !!

2004-04-22 Thread Essington
"kkanagaraj" wrote : Hi Jason, | Thanks for your suggestion !. | | 1. Are you sure that Jboss 4 has implemented Axis 1.2, coz axis 1.2 itself in a beta version. Yup, I put it there myself :-) "kkanagaraj" wrote : | 2. I tried installing Axis 1.2 on JBoss 3.2.3: | - In default mode of

[JBoss-user] [Management, JMX/JBoss] - Deploying services from within an .ear file

2004-04-19 Thread Essington
I have an app that deploys a datasource (-ds.xml), a mail service (-service.xml) and a beanshell script(.bsh) from its jboss-app.xml file located in the ears META-INF directory. These services deploy just fine in jboss 3.2.x, however they don't appear to deploy at all (any thing specified in t

[JBoss-user] [JBoss.NET & SOAP] - Re: Authentification with JBoss.NET and DatabaseServerLoginM

2004-04-08 Thread Essington
"billen" wrote : Are you sure about that? JAAS is Java Authentication and Authorization Service and does not IMHO have anything to do with the datasource file. Bah! I meant "java:jdbc/OpenbroadDS" jdbc not jaas (this alphabet soup of Sun's keeps confusing me) Sorry about that. At any rate th

[JBoss-user] [JBoss.NET & SOAP] - Re: Authentification with JBoss.NET and DatabaseServerLoginM

2004-04-07 Thread Essington
first thing, the dsJndiName doesn't look quite right. it should be java:jaas/something in your case, maybe java:jaas/OpenbroadDS or whatever is in your openbroad-ds.xml file in the tag. you might also check for any other s that have a DatabaseServerLoginModule in them that may be misconf

[JBoss-user] [JBoss.NET & SOAP] - Re: Authentification with JBoss.NET and DatabaseServerLoginM

2004-04-05 Thread Essington
Does the application policy "other" also have a DatabaseServerLoginModule configured to use the defaultDS? It looks like maybe the AxisServlet (jboss-net.war) is trying to authenticate the HTTP request against that. Have you set the security domain for JBoss.Net? It is in the jboss-net.sar/jb

[JBoss-user] [JBoss.NET & SOAP] - Re: Changing targetNamespace in WSDL

2004-02-25 Thread Essington
That stuff is controlled in the jbossnet module of the ejbdoclet (in your build.xml file) So if you have something like: | http://my.url.org/Some/Path"; | prefix="mine" | /> | It should give you | http://xml.apache.org/axis/wsdd/"; | targetN

[JBoss-user] [JBoss.NET & SOAP] - Re: Java Client -> JBoss / AXIS -> Stateful EJB ?

2004-02-25 Thread Essington
If you are using JBoss.Net you can add the scope attribute to the @jboss-net.web-service tag something like | * @jboss-net.web-service | * urn="MyStatefullService" | * scope="Session" | * expose-all="true" | Then you just have to maintain the session cookie that axi

Re: [JBoss-user] jboss.net: How can I modify the service name displayed in WSDL?

2004-01-30 Thread Jason Essington
Yeah, but it's the service name in the generated wsdl that's giving Rob grief. It's probably something burried in axis somewhere. I am not sure off the top of my head where to look for that. -jason On Jan 23, 2004, at 10:51 AM, Marek Lange wrote: Rob Moore wrote: I am using the jboss.net xdoc

Re: [JBoss-user] jboss.net: How can I modify the service name displayed in WSDL?

2004-01-26 Thread Jason Essington
Rob The @jboss-net.web-service tag has a parameter "urn" which can be used to set the service name something like: * @jboss-net.web-service * urn="MySessionService" * expose-all="true" -jason On Jan 23, 2004, at 8:35 AM, Rob Moore wrote: I am using the jboss.net xdoclet task and hav

Re: [JBoss-user] RE: JBoss 3.2.4

2004-01-19 Thread Jason Essington
On Jan 19, 2004, at 9:46 AM, Darren Hartford wrote: Just curious, would the JBoss 3.2.4 include the updated Jboss.NET stack? Specifically, I remember seeing in CVS-HEAD support for the value-object pattern with the @jboss-net.xml-schema tag, would be nice if this was included in 3.2.4 release.

Re: [JBoss-user] REPOST: JBossNet can't work w/ secured EJBs ???

2003-10-31 Thread Jason Essington
Alex, The first thing you will need to do is define the security domain in the jboss-web.xml file (the one in the jboss-net.war) then if you are using xDoclet, you will need to add a tag to your session bean @jboss-net.authentication domain="WhichEverDomainYouHaveDefined" if you are not using

Re: [JBoss-user] new behavior in 3.2.2 - TransactionRolledbackLocalException

2003-10-26 Thread Jason Essington
s to 0 instead of NULL. > > alex > > Jason Essington wrote: > > > > > On Thursday, October 23, 2003, at 05:08 AM, Alexey Loubyansky wrote: > > > >> Are there CMP fields mapped to the foreign key column? If not that is > >> expected behaviour. >

Re: [JBoss-user] 3.2.2 : limit on columns in entity beans

2003-10-24 Thread Jason Essington
constrained by the memory and storage limitations of the environment in which jboss is running (if not as you say, by the database). At any rate I am sure this particular problem is solved. Thank you Alexey Jason Essington wrote: According to the commit notes, Alexey has raised the limit on columns to

Re: [JBoss-user] 3.2.2 : limit on columns in entity beans

2003-10-24 Thread Jason Essington
According to the commit notes, Alexey has raised the limit on columns to infinity in the latest cvs of the 3.2 branch. Although, I doubt that the actual limit is that high 8-), I think it will suffice. -jason On Wednesday, October 22, 2003, at 10:28 AM, Joachim ((PROGS)) wrote: Is this a new

Re: [JBoss-user] new behavior in 3.2.2 - TransactionRolledbackLocalException

2003-10-23 Thread Jason Essington
fields for these columns and then use the CMP field to check for the "inappropriate" values? Jason Essington wrote: I have some tables in a database that are used by some of my CMP/CMR entity beans. The foreign key columns in some of these tables don't have foreign key integrity

[JBoss-user] new behavior in 3.2.2 - TransactionRolledbackLocalException

2003-10-22 Thread Jason Essington
I have some tables in a database that are used by some of my CMP/CMR entity beans. The foreign key columns in some of these tables don't have foreign key integrity checks enforced in the database, and rather than having null in the column when there is no foreign key they contain a 0 (zero). Th

Re: [JBoss-user] 3.2.2 : Null primary key on create

2003-10-22 Thread Jason Essington
On Wednesday, October 22, 2003, at 10:01 AM, Alexey Loubyansky wrote: Hello Jason, I just fixed it. Please, try it in 24 hours. Thanks. yup, that appears to have fixed the column limit problem. thanks. -jason --- This SF.net email is spons

Re: [JBoss-user] 3.2.2 : Null primary key on create

2003-10-22 Thread Jason Essington
Tuesday 21 October 2003 14:15, Jason Essington wrote: Hi, Just out of curiosity, how many fields are in your entity bean? 87 Alexey indicated (on October 10) that the CMP engine currently had a limit of 64 columns, but that he was working on a fix. If that has not been fixed, that could be the pr

Re: [JBoss-user] 3.2.2 : Null primary key on create

2003-10-21 Thread Jason Essington
hi Phil Just out of curiosity, how many fields are in your entity bean? I have had the same problem (with the RC versions of 3.2.2) but only with a very large entity (111 persistent fields). The cmp engine also seems to have some trouble generating sql for this entity during removal of these l

Re: [JBoss-user] SQLException from 3.2.2 branch when trying to remove an entity.

2003-10-10 Thread Jason Essington
On Friday, October 10, 2003, at 10:52 AM, Alexey Loubyansky wrote: Jason Essington wrote: On Thursday, October 9, 2003, at 01:03 PM, Alexey Loubyansky wrote: Jason Essington wrote: I don't see anything immediately obvious about what I am doing different here than with my other entities

Re: [JBoss-user] SQLException from 3.2.2 branch when trying to remove an entity.

2003-10-10 Thread Jason Essington
On Thursday, October 9, 2003, at 01:03 PM, Alexey Loubyansky wrote: Jason Essington wrote: I don't see anything immediately obvious about what I am doing different here than with my other entities. All of the others seem happy enough (not pitching exceptions). The only thing I can think

Re: [JBoss-user] SQLException from 3.2.2 branch when trying to remove an entity.

2003-10-09 Thread Jason Essington
ote: Could you, please, provide detailed instructions how to reproduce it? Thanks. alex Jason Essington wrote: Alex That didn't seem to fix it. I don't know if this matters, but I am using the "Instance Per Transaction CMP 2.x EntityBean" container configuration. As a

Re: [JBoss-user] SQLException from 3.2.2 branch when trying to remove an entity.

2003-10-09 Thread Jason Essington
se, check it out in 24h? Thanks much! alex Jason Essington wrote: I am using a build from cvs as of this (10/7) morning. It claims to be RC5 the exact code that fails is record.remove(); from the previous example. From the debug output in the server.log file it appears that the relation

Re: [JBoss-user] OS X panther & JBoss

2003-10-09 Thread Jason Essington
We have been running JBoss on Jaguar (OS X 10.2) with java 1.4.1 and have been happy with it (now that apples jvm supports the java.awt.headless system property). Haven't really run any benchmarks though, as our application doesn't really get a heavy load. We are definitely looking forward to

Re: [JBoss-user] SQLException from 3.2.2 branch when trying to remove an entity.

2003-10-07 Thread Jason Essington
ly in 3.2.1 and the code for them has not changed. -jason On Tuesday, October 7, 2003, at 01:22 PM, Alexey Loubyansky wrote: What JBoss version exactly are you using? 3.2.2RC5? Could you post the exact code that fails? Thanks, alex Jason Essington wrote: I have some code that worked just fi

[JBoss-user] SQLException from 3.2.2 branch when trying to remove an entity.

2003-10-07 Thread Jason Essington
I have some code that worked just fine in 3.2.1 but now it is having trouble in the 3.2.2 branch of JBoss. I am getting an SQLException when I try to remove an entity that has a 1-m cascade delete relationship. The code I am using first gets a collection of entities via a finder then iterat

Re: [JBoss-user] JBoss-Net xdoclet in JBoss-IDE

2003-07-03 Thread Jason Essington
Dustin just drag the jar file for the JBoss-Net stuff into the ECLIPSE_HOME/plugins/org.jboss.ide.eclipse.xdoclet.core_1.x.x/ directory. Then start eclipse and you'll have the tags. (not that the xTags file is completely up to date with the module). -jason On Friday, June 27, 2003, at 11:43 AM,

Re: [JBoss-user] System properties

2003-06-13 Thread Jason Essington
On Friday, June 13, 2003, at 10:54 AM, Sacha Labourey wrote: Yes, look in jboss-3.2\varia\src\etc\sample-service.bsh FAR FU**IN' OUT! I just can't believe it's as easy as throwing a somebshscript-servic.bsh file into your .ear and adding the ... to your jboss-app.xml file. too cool. -jason

Re: [JBoss-user] System properties

2003-06-13 Thread Jason Essington
Stark Chief Technology Officer JBoss Group, LLC - Original Message - From: "Jason Essington" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 12, 2003 9:49 AM Subject: [JBoss-user] System properties Is there a way to set System pr

[JBoss-user] System properties

2003-06-12 Thread Jason Essington
Is there a way to set System properties from an ejb's deployment descriptor? currently I am using a static block in one of my beans to set the properties that one of the libraries I am using expects, but this seems a little bit hackish, I would prefer to set them in the application.xml, jboss-

Re: [JBoss-user] @jboss-net:xml-schema

2003-06-11 Thread Jason Essington
This looks like a problem with your client. Does your request (you might have to use tcpmon, or wade through your server log to see the xml of the request) have an xml element that has xmlns:tns1="" in it somewhere? -jason On Tuesday, June 10, 2003, at 12:47 PM, Felipe Oliveira wrote: Firs

Re: [JBoss-user] @jboss-net:xml-schema

2003-06-09 Thread Jason Essington
On Monday, June 9, 2003, at 01:00 PM, Felipe Oliveira wrote: hi i am using xdoclet to generate my entity and session beans but i also want it to generate my webservices. i have the part where it generates the web-service.xml defining my services and mapping them to the correct jndi entries of my

Re: [JBoss-user] finders, postgresql and jboss3.2.0RC1

2003-01-16 Thread Jason Essington
BAH! suppose it's best to have a primary key of some sort to keep the bean from getting all angry and confused -jason On Thursday, January 16, 2003, at 05:55 PM, Jason Essington wrote: I have a session bean that has finders defined by xDoclet tags like so: * @ejb.finder * sign

[JBoss-user] finders, postgresql and jboss3.2.0RC1

2003-01-16 Thread Jason Essington
I have a session bean that has finders defined by xDoclet tags like so: * @ejb.finder * signature="java.util.Collection findAll()" * mapping="Local" * intf="LocalHome" * query="SELECT OBJECT(o) FROM ReportWV o" * * @ejb.finder * signature="java.util.Collection findByClien

Re: [JBoss-user] MacOSX in production

2002-12-13 Thread Jason Essington
On Thursday, December 12, 2002, at 06:48 PM, Matthew Van Horn wrote: On Friday, December 13, 2002, at 04:15 AM, Jason Essington wrote: We are currently using an Xserve (MacOS X Server) running JBoss and PostgreSQL with no issues what so ever. I have even managed to create the SystemStarter

Re: [JBoss-user] MacOSX in production

2002-12-12 Thread Jason Essington
On Thursday, December 12, 2002, at 09:52 AM, Frank Morton wrote: Any currently using (or contemplating) using MacOSX running JBoss in production. Would like to hear experience or opinions about doing so. We are currently using an Xserve (MacOS X Server) running JBoss and PostgreSQL with no i

[JBoss-user] Re: Ordered Collection from a CMR?

2002-12-11 Thread Jason Essington
On Wednesday, December 11, 2002, at 05:49 PM, Jason Essington wrote: Does JBoss have a way to order the Collection (or Set) returned by a Container Managed Relationship? Is there a way I can specify a JBossQL order by for the get...() method in my cmr? If not, how do I go about creating

[JBoss-user] Ordered Collection from a CMR?

2002-12-11 Thread Jason Essington
Does JBoss have a way to order the Collection (or Set) returned by a Container Managed Relationship? Is there a way I can specify a JBossQL order by for the get...() method in my cmr? If not, how do I go about creating the finder to get the required beans since there are no getX/setX methods f

Re: [JBoss-user] Eclipse project file for 3.2

2002-12-04 Thread Jason Essington
hey Kevin have you taken a look at: http://www.jboss.org/developers/guides/eclipse-howto/index.jsp -jason On Wednesday, December 4, 2002, at 04:35 PM, Kevin O'Neill wrote: Hey, I was wondering if anyone had an eclipse project file for 3.2 that they might like to share :). -k. --

Re: [JBoss-user] how to produce pdf files like jboss getting started guide?

2002-11-20 Thread Jason Essington
they use ms word On Wednesday, November 20, 2002, at 05:26 PM, linuxman wrote: I's sorry out of the topic, but anyone would like to tell me how to produce perfect pdf files like jboss getting started guide book? Thanks in advance! linuxman --

Re: [JBoss-user] New 3.2.0 beta soon?

2002-11-12 Thread Jason Essington
Keiko Dr Jung integrated axis v1.0 into head last weekend, but I believe he is away for the next few weeks. from his previous post: Anyway, the final release of Axis now being landed, I now plan to start a consolidation phase for jboss.net when I come back until the end of the year focussing on

Re: AW: AW: [JBoss-user] jboss.net changes and xdoclet

2002-09-25 Thread Jason Essington
Disclaimer: I have been going about this mostly by trial and error, and without a full understanding of how everything works, so there is a good chance that what I have done is not completely correct. I would like to hear what others with more knowledge than myself have to say about these chan

Re: AW: [JBoss-user] jboss.net changes and xdoclet

2002-09-25 Thread Jason Essington
David Ward wrote: > Have you shared this with the xdoclet guys? The xdoclet-user list has > had quite a few messages (don't remember if you were in on them) about > wanting to support this is the upcoming xdoclet 1.2. > > David > > -- > > Jason Essington wrote: &

Re: AW: [JBoss-user] jboss.net changes and xdoclet

2002-09-25 Thread Jason Essington
stuck with what I was first able to get working. Also I haven't added any of the tag changes to the xml documentation (mostly because I am not sure I understand how that works, and haven't taken the time to figure it out yet) Jason Essington Green River Computing Services 307-367-2276

Re: AW: AW: [JBoss-user] jboss.net and persistence

2002-09-25 Thread Jason Essington
The xDoclet template could do that to set the scope to Session (for a stateful session bean), however if there was some call to use the bean with an application it wouldn't work. My solution was to modify the template to accept a scope attribute to the @jboss-net.web-service tag: @jboss-ne

[JBoss-user] jboss.net changes and xdoclet

2002-09-24 Thread Jason Essington
I have hacked the jboss.net module (supplied in the cvs version of jboss) to work with the latest version of xdoclet. It has been working fine, but since the recent changes to jboss.net I am getting this warning upon deployment: 13:28:31,238 WARN [AxisService] Web Service Deployment org.j

Re: AW: [JBoss-user] jboss.net and persistence

2002-09-24 Thread Jason Essington
On Wednesday, September 18, 2002, at 12:47 AM, Jung , Dr. Christoph wrote: > Jason, > > Statefulness and web services are somewhat conflicting concepts. yes, I am using it sparingly. For the most part I am accessing stateless session beans, but there are a few instances where I need to acce

Re: [JBoss-user] CVS Tag for 3.2beta

2002-09-20 Thread Jason Essington
You could go to browse the sourceforge cvs repository at http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/ and once you click on a folder (module) the bottom of the resulting page has a select box that lists all the available tags. -jason On Friday, September 20, 2002, at 02:38 PM, Dee Bl

[JBoss-user] jboss.net and persistence

2002-09-17 Thread Jason Essington
I am curious how jboss.net handles persistence say in the case of a stateful session bean that is being exposed as a service? -jason --- This SF.NET email is sponsored by: AMD - Your access to the experts on Hammer Technology! Open Source &

Re: [JBoss-user] remote deploy

2002-09-11 Thread Jason Essington
How about a soap attachment sent via smtp? -jason On Wednesday, September 11, 2002, at 11:31 AM, Emerson Cargnin - SICREDI Serviços wrote: > is there a way to deploy an ear file remotely, without using ftp, > maybe using jmx or ant task ??? -

Re: [JBoss-user] Two simple JAAS questions.

2002-09-07 Thread Jason Essington
Why not just have the teachers be assigned both a teacher and a student role? That way they will have access to everyting you have already permitted to student, and any new items only allowed for the teacher role. [EMAIL PROTECTED] wrote: >hello all: >After reading JAAS chapter of QuickSta

Re: [JBoss-user] cmp/cmr entity beans throw an exception upon deployment

2002-09-06 Thread Jason Essington
n I did a clean > build > (of jboss). I still don't know what caused it. > > david jencks > > On 2002.09.06 15:24:50 -0400 Jason Essington wrote: >> Hi there >> >> I have been trying to muddle through this for a few days, and h

[JBoss-user] cmp/cmr entity beans throw an exception upon deployment

2002-09-06 Thread Jason Essington
Hi there I have been trying to muddle through this for a few days, and haven't been able to figure out my problem. I have created several cmp entity beans that have container managed relationships, but when I deploy them jboss pitches the followin fit: 12:51:52,559 WARN [ServiceController]

[JBoss-user] ejb-ql chokes on my entity bean

2002-08-30 Thread Jason Essington
hi there I ran into something strange today. I am developing some cmp entity beans, and one of them I have named "ReportWhereValue" , and it has a finder with an xdoclet tag that looks like this: * @ejb.finder * signature="java.util.Collection findAll()" * result-type-mapping