[JBoss-user] JBoss-net xml-schema problem

2003-07-07 Thread Mark.Gargan
Title: Message Hi folks, I've a two classes called ExecutionData and Parameter that are used with various EJBs in my application. In order to move to web services I'm under the impression that I need Axis or jboss-net to be able to be able to decipher them so I put the

RE: [JBoss-user] WSDL Part names within messages.

2003-07-02 Thread Mark.Gargan
Title: Message Hi Dr. Jung, Anytime, delighted I could be of any help.You mentioned the tags for operations. Ye couldn't point me in their general direction could ye? I used the xdoclet-module-jbos-net from an old jboss-head. I tried checking out the new module but I'm rarely able to

RE: [JBoss-user] WSDL Part names within messages.

2003-07-01 Thread Mark.Gargan
Title: Message Hi Dr. Jung, Just a quick heads up on how I got on with the parameter problem. Basically I amended the jboss-net-ejb.xml.xdt xdoclet template to include an extra xdoclet method tag @jboss-net:wsdd-operation. I stuck the following xdoclet code between the tags that

RE: [JBoss-user] WSDL Part names within messages.

2003-06-25 Thread Mark.Gargan
Title: Message Hi Dr. Jung, I was hoping you'd get back to me. Thanks again. I think I'll have a look at the BCEL and XJavadoc option. Thanks very much for your help, Mark. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jung , Dr.

RE: [JBoss-user] WSDL Part names within messages.

2003-06-25 Thread Mark.Gargan
Title: Message Sure thing I'll keep you posted with anything I come up with if I manage to get anything together. Thanks, Mark. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jung , Dr. ChristophSent: 25 June 2003 14:24To: '[EMAIL

[JBoss-user] Setting up the source in Eclipse..

2003-06-25 Thread Mark.Gargan
Title: Message Hi folks, A while back I checked out the head and got it integrated with Eclipse so that I could remotely debug the version of jboss that was built from my checkout. Since then I've decided upon using jboss-3.2.1 with Tomcat-4.1.24. So I downloaded athe binary and also

[JBoss-user] WSDL Part names within messages.

2003-06-24 Thread Mark.Gargan
Title: Message Hi folks, I'm exposing a few session beans as web services. In the generated WSDL the part names are given automatic names i.e. in0,in1 etc. I was wondering if there was anyway to be able to set these to the argument name presented in the session bean? i.e. I have a bean

RE: Re[2]: [JBoss-user] CMP2.0 and inheritance.

2003-06-10 Thread Mark.Gargan
Hey guys, Thanks very much for all the replies. I went ahead and changed the superclasses so that they were abstract with abstract methods for the fields etc and also placed the fields in the ejb description of the subclasses in the descriptor and everything seems to be working fine so

[JBoss-user] CMP and remote interfaces. USing ejbSelects within remote finders.

2003-06-10 Thread Mark.Gargan
Title: Message Hi folks, I've just encountered a small problem concerning the implementation of a method that returns the entity instance with the greatest id. ejbHomeRetrieveByMaxId(). Basically my entity bean only has a remote interface at the minute which is proving to be the

RE: [JBoss-user] CMP and remote interfaces. USing ejbSelects within remote finders.

2003-06-10 Thread Mark.Gargan
Title: Message Hey Dave, That's a great tip Dave about the finder. Where did you come across this? I read the CMP2.0 payed for docs but I didn't spot it. Was it case that you trawled thru code? I'm am using JBossQL with Jboss 3.2.1. Thanks, Mark. -Original Message-From:

RE: [JBoss-user] CMP and remote interfaces. USing ejbSelects within remote finders.

2003-06-10 Thread Mark.Gargan
Hi Jeremy, Thanks for the reply. I was under the impression that the MAX aggregate function wasn't available thru Declared-SQL? Is it the case that any valid SQL statement's valid once you put it in a declared statement? Thanks, Mark. -Original Message- From: [EMAIL PROTECTED]

RE: [JBoss-user] Getting rid of spec violation warning w/ finder w/ no EJB-QL -- not solved

2003-06-10 Thread Mark.Gargan
Title: Message Hey Dave, Could you post the segments of the ejb-jar.xml and the jbosscmp-jdbc.xml files associated with the query? Thanks, Mark. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: 10 June 2003 17:06To:

RE: [JBoss-user] CMP and remote interfaces. USing ejbSelects within remote finders.

2003-06-10 Thread Mark.Gargan
Jeremy, I gave that a bash and it worked a treat. Thanks ever so much Jeremy. Mark. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Boynes Sent: 10 June 2003 16:25 To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] CMP and remote interfaces.

RE: [JBoss-user] MAX function in jboss-ql

2003-06-10 Thread Mark.Gargan
Hi Pedro, Take a look at Jeremy's answer to my problem.. Ta, Mark. /// I'd suggest a slightly different approach. You say your ejbSelect returns all instances, and then you are extracting the first one returned. However, the container still needs to read the entire

[JBoss-user] Classloaders and the jboss-app.xml

2003-06-09 Thread Mark.Gargan
Title: Message Hi everyone, I've just encountered the dreaded ClassCastException error that's thrown due to the fact that the type of the java class is now a function of the class loader as well as the name. I read the Classloader excerpt from the 3.x documentation thatJonathan

RE: [JBoss-user] DefaultJMSProvider not bound

2003-06-07 Thread Mark.Gargan
Title: Message Fantastic Sebastien, Thanks a million. Mark. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Astie, SebastienSent: 06 June 2003 22:25To: [EMAIL PROTECTED]Subject: RE: [JBoss-user] DefaultJMSProvider not bound

[JBoss-user] Quick Explanation.

2003-06-06 Thread Mark.Gargan
Title: Message Hi folks, This snippet is taken from the JBOSSCMP docs. I can't understand how it returns the remote entities.It is a BMP custom finder. public abstract class GangsterBean implements EntityBean { public Collection ejbFindByPrimaryKeys(Collection keys) { return keys; } }

RE: [JBoss-user] CMR+EJBQL finder generates invalid SQL

2003-06-05 Thread Mark.Gargan
Hi Martin, Just coincidentally I'm looking at the CMP section of the getting started documentation. In the underworld example of the Gangsters and organisation they perform a similar one to many relationship. On comparison I think I noted that your relationships may be the wrong way

[JBoss-user] home.create() doesn't return remote object.

2003-06-05 Thread Mark.Gargan
Title: Message Hi folks, I've an entity bean deployed in jboss 3.2.1. Whilst testing the code I have a line that creates an instance of the entity bean as such ProcessDefinition remote = home.create("testGuideline"); When this code executes the instance is created in the database as

[JBoss-user] Crime Portal example not deploying in 3.2.1

2003-06-04 Thread Mark.Gargan
Title: Message Hi Folks, I purchased the CMP2.0 documentation there recently. I'm in the process of attempting to look at it. Unfortunately it seems to have been written for jboss3.0 and not 3.2.1 which I'm using. I get the following verifier error which isn't fatal in jboss3.0 but is

RE: [JBoss-user] Create method executed succesfully but I can't see any record on the database

2003-06-04 Thread Mark.Gargan
Hi Marco, I've a similar problem myself when deploying old versions of entity beans (jboss2.4.1) in jboss 3.2.1. How are you viewing the sql? Do you have some sort of Hypersonic userinterface? Thanks, masrk. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

RE: [JBoss-user] Registering Webservices.

2003-03-27 Thread Mark.Gargan
Title: Nachricht Cheers Christoph, Grand job. Ive decided to try and use the juddi package in a separate Tomcat distro in preparation for when its activated in jboss. I built it from the source off sourceforge and placed  the war in the webapps directory of my separate Tomcat

RE: *****SPAM***** AW: [JBoss-user] Registering Webservices.

2003-03-27 Thread Mark.Gargan
No bother Christoph. Thanks for the pointer to the list site. Mark. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jung , Dr. Christoph Sent: 27 March 2003 14:59 To: '[EMAIL PROTECTED]' Subject: *SPAM* AW: [JBoss-user] Registering Webservices.

RE: [JBoss-user] CVS Modules

2003-03-26 Thread Mark.Gargan
Title: Nachricht Great stuff. Ill whip that down as soon as poss. Should be something like.. cvs checkout contrib/jboss.net or cvs checkout d jboss.net I was going to substitute the module of jboss.net Id checkout before when checking out the whole Head for the new one and

RE: [JBoss-user] Registering Webservices.

2003-03-26 Thread Mark.Gargan
Title: Nachricht Well I tell ye what, Ive just really begun using webservices however Ive been using Jboss for a little under a year now but if ye think theres anything I can help with say the word Maybe putting together small idiotproof howTo guides for getting stuff working as I go

RE: [JBoss-user] Webservice call

2003-03-25 Thread Mark.Gargan
Title: Nachricht Ill just have to get used to trusting the generation tools. Thanks again Christoph. Mark. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jung , Dr. Christoph Sent: 25 March 2003 08:14 To: '[EMAIL PROTECTED]' Subject: AW:

[JBoss-user] Registering Webservices.

2003-03-25 Thread Mark.Gargan
Hi there Christoph, Is there an implementation of a JAXR registry currently available in jboss.net? If not could you suggest one thats popular to use to with publishing Jboss services? Thanks, Mark.

RE: [JBoss-user] Registering Webservices.

2003-03-25 Thread Mark.Gargan
Title: Nachricht With services deployed in the Jboss is there any other further registration process required once the webservices have been deployed in the engine? Is there any documentation available on this section yet? Thanks, Mark. -Original Message- From: [EMAIL

[JBoss-user] CVS Modules

2003-03-25 Thread Mark.Gargan
Hi folks, Im attempting to pull down the source jboss-head thru cvs. Ive been successful a few times but more often than not it fails half way thru. At the end of the day checking out the head takes about 20 mins. Is there a way of just checking out modules at a time? For instance just

RE: [JBoss-user] getClass().getClassLoader().getResourceAsStream() not working in web-app

2003-03-24 Thread Mark.Gargan
Hi Herve, I'd to do something like this using Jboss 2.4.1. It's quite strange that there isn't someway of referencing the extra file in the manifest file but there ye go. As with your problem I was initially trying to encapsulate everything in a jar file. I think if you find that you

RE: [JBoss-user] Webservice call

2003-03-24 Thread Mark.Gargan
Title: Nachricht Hi Christoph, I created a Service object using the endpoint and then from that generated the call object. Like so: - String endpoint =http://localhost:8080/jboss-net/services/Diagnosis;     Service service = new Service();     Call call

RE: [JBoss-user] AxisServlet acting strangely.

2003-03-24 Thread Mark.Gargan
Thanks Christoph. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jung , Dr. Christoph Sent: 24 March 2003 07:52 To: '[EMAIL PROTECTED]' Subject: AW: [JBoss-user] AxisServlet acting strangely. I´ll have a look. CGJ -Ursprüngliche Nachricht-

RE: [JBoss-user] Webservice call

2003-03-24 Thread Mark.Gargan
Title: Nachricht Thats fantastic Christoph,     How come I couldnt find it in any of the APIs? Has it always been included in AXIS or is it a recent addition to the api? Mark. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [JBoss-user] Webservice call

2003-03-24 Thread Mark.Gargan
Title: Nachricht I shoulda thought of that. ; ( Havent used that WSDL2Java tool yet. Im always a bit weary of source generation tools. Do you find it includes any redundant data? Mark. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

[JBoss-user] Webservice call

2003-03-21 Thread Mark.Gargan
HI folks, My client throws the following error, Testing Diagnosis service... 0 [main] ERROR client.Call - No returnType was specified to the Call object! You must call setReturnType() if you have called addParameter(). Call made to Diagnosis service DiagnosisClient error:

RE: [JBoss-user] AxisServlet acting strangely.

2003-03-20 Thread Mark.Gargan
Hi David, Yeah I was using 1.0 there for a while and was on a hiding to nothing. I'm currently using 1_1RC1 but if I've any problems I'll upgrade. Cheers for the response. Thanks, Mark. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Wade

RE: [JBoss-user] AxisServlet acting strangely.

2003-03-20 Thread Mark.Gargan
Hi Dave, I'm actually still getting this error and it seems that the only way to get rid of it is to request each services wsdl individually. I went to the apache site to download RC3 but couldn't find it. I could only see RC2. Are you building it from CVS or something? Thanks, Mark.

[JBoss-user] Trying to build latest CVS version

2003-03-19 Thread Mark.Gargan
HI Everyone, Im trying to build from source a build of jboss-all I downloaded today yet I keep getting this error saying that it couldnt create the task or type of task: jmxdoclet. I understand that jboss uses its own version of ant to build the server and Ive built a nightly snap

RE: [JBoss-user] Trying to build latest CVS version

2003-03-19 Thread Mark.Gargan
Hi Ricardo, Turns out my connection from a previous checkout was still open. Once I'd rebooted the connection was cleared. How come there's such a delay in sending mails to the jboss-uses list and them actually appearing on the list? Thanks again, Mark. -Original Message-

[JBoss-user] AxisServlet acting strangely

2003-03-19 Thread Mark.Gargan
Hi folks, I deploy a HelloWorld webservice within jboss indirectly by inserting my wsr file containing my web-service.xml file into an ear application and deploying the application. Then when I go to check the webservices I have deployed at

Re: [JBoss-user] AxisServlet acting strangely.

2003-03-19 Thread Mark.Gargan
Hi again, Looks like I was just being a bit impatient. If I give it a few seconds to allow it to catch up then everything works like a dream. Sorry for the false alarm. Christoph, specifying * as the allowedmethods works perfectly as well. Great stuff. Thanks, Mark.

[JBoss-user] Lost the HTMLAdaptor

2003-03-18 Thread Mark.Gargan
Hi folks, The other day I attempted to deploy a webservice into a Jboss4.0 alpha build I created from a nightly snapshot. Anyway it all went horribly wrong and now anytime I boot up the server, the jmx-console module cant deploy as it says that It cant find the

[JBoss-user] (no subject)

2003-03-18 Thread Mark.Gargan
Hi folks, Could anyone tell me where I could find the org.jboss.jbossweb class? I cant seem to locate it yet it comes up in the server.log file. Thanks, Mark.

RE: [JBoss-user] Lost the HTMLAdaptor [Found]

2003-03-18 Thread Mark.Gargan
Well folks, Im stumped. I found the problem. Turns out that I was looking in an old version of the jboss-head build I had on my machine (I know, I asked for it) I was looking in the wrong versions deployment directory so when the stack track churned out that it couldnt find the

[JBoss-user] Administration and Development

2003-03-18 Thread Mark.Gargan
Hello all, Im currently reading the yellow Jboss Administration and Development guide for JBOSS 2.4.x as Im really interested to see if I can learn the innards and it makes me nervous that I dont understand most of the huge output that churns out when jboss boots up. I was actually

RE: [JBoss-user] Remote Beans as Web Services

2003-03-17 Thread Mark.Gargan
Title: Nachricht Hi Christoph,    I actually built jboss from a nightly snapshot I downloaded off the site. Originally I was using 3.2 though. The problem I think actually occurs when the java provider is trying to generate the wsdl. However Im not 100% clear on the use of

[JBoss-user] (no subject)

2003-03-17 Thread Mark.Gargan
Hi folks, The jboss Im using I built from a nightly snapshot. Windows XP with JDK1.4.1 The server started up fine. I attempted to deploy a web service and it didnt seem to deploy. When I shutdown the server and then booted it back up I got a number of exceptions that all came from the

[JBoss-user] RE:

2003-03-17 Thread Mark.Gargan
HI guys, Ive located the servlet file in the web-inf/classes folder of the exploded jmx-console.war folder in the deploy directory. Could it be that when shutting down the server using crtl+c I somehow tampered with the listener that handles deployments? Mark. -Original

[JBoss-user] Proper way to shutdown

2003-03-17 Thread Mark.Gargan
HI folks, Up until now Ive been shutting down jboss using crtl+c but then in the output as the server starts up it has 19:57:57,009 INFO [STDOUT] Use SHUTDOWN to close normally. Use [Ctrl]+[C] to abort abruptly Have I been shutting it down incorrectly or harmfully? Whats the

RE: [JBoss-user] Remote Beans as Web Services

2003-03-14 Thread Mark.Gargan
Title: Nachricht Christoph, Kevin,       Id a look at the EJBProvider code myself and the strange thing was that the line pointed to in the stack trace where the NullPointerException occurred was blank? I figured it maybe somehow it was the superclass method i.e.

RE: [JBoss-user] Remote Beans as Web Services

2003-03-14 Thread Mark.Gargan
I'm not sure which version of Axis I'm using to be honest as it came installed as part of the embedded Catalina I downloaded. Is there any way of telling from the axis.jar which version I'm using? What attibutes does the 1.0 source not set? Mark. -Original Message- From: [EMAIL

RE: [JBoss-user] Remote Beans as Web Services

2003-03-14 Thread Mark.Gargan
Title: Nachricht Gents,    Lads by the grace of God my remote bean has begun to work. I scraped what I was doing and retrieved a nightly build from the Jboss website. Then I simply deployed it and tested the service call and then the remote client call thru the jndi retrieving

RE: [JBoss-user] Remote Beans as Web Services

2003-03-14 Thread Mark.Gargan
Title: Nachricht Christoph,   I finally managed to get a nightly build from the website. (Not too used to the open source idea yet) and anyways I built that and my bean seemed to deploy grand. I could also make remote client calls thru the jndi and test them as exposed

RE: [JBoss-user] run.bat vs. build run-jboss

2003-03-14 Thread Mark.Gargan
Hi Nathan, I think the answer may be at the bottom of this page unless of course you're looking for a more indepth explanation in which case I'm afraid I really can't help. http://www.jboss.org/developers/guides/quickstart.jsp Mark. -Original Message- From: [EMAIL PROTECTED]

[JBoss-user] Remote Beans as Web Services

2003-03-13 Thread Mark.Gargan
Hi Folks, This is a question regarding jboss.net, axis and exposing a remote bean as a service. I have a local bean exposed without much hassle (basically cos I got it from a tutorial. Thanks Bruce.) Its just I cant seem to get it to expose a remote bean as a service. The beans

RE: [JBoss-user] Remote Beans as Web Services

2003-03-13 Thread Mark.Gargan
Title: Nachricht Sorry the stack trace looks like this. Im not sure if the * is the problem as the tutorial works for a local version of the bean i.e. localhome and localInterface. I just made the bean remote. 16:04:32,481 ERROR [Engine] StandardWrapperValve[JBossAxisServlet]:

RE: [JBoss-user] Remote Beans as Web Services

2003-03-13 Thread Mark.Gargan
I got the service description from a tutorial and it didn't specify any stop classes? Here's the web-service.xml I used. ?xml version=1.0 encoding=UTF-8? deployment xmlns=http://xml.apache.org/axis/wsdd/; targetNamespace=http://net.jboss.org/hello;

RE: [JBoss-user] Remote Beans as Web Services

2003-03-13 Thread Mark.Gargan
Title: Nachricht Hi Christophe,   I deploy it within a wsr file thats located within an ear file. When this is deployed in the engine it seems to deploy fine, however if I attempt to look at the services through http://localhost:8080/jboss-net/services  I get the previous

Re: [JBoss-user] Remote Beans as Web Services

2003-03-13 Thread Mark.Gargan
Title: Nachricht Hi Christophe, I deploy it within a wsr file thats located within an ear file. When this is deployed in the engine it seems to deploy fine, however if I attempt to look at the services through http://localhost:8080/jboss-net/services I get the previous exception..