[JBoss-user] [JBoss.NET] - doc/lit

2005-02-04 Thread olcman
Hi everyBody,

I develop Websevices using JBOSS 3.2.5 with built in AXIS.
My Webservices must be doc/lit. But, when i deploy them, JBOSS / Axis create 
the WSDL as RPC/lit. Where can i change this settings?
I get lot of problems, while using .NET Clients.

Regards

Olcman

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3865220#3865220

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3865220


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag--drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET] - Re: javax.naming.NameNotFoundException

2005-01-06 Thread olcman
Now it works,

i had do delete the flles /all/tmp/  manually.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3860883#3860883

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3860883


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss.NET] - javax.naming.NameNotFoundException

2005-01-05 Thread olcman
Hi,

if i deploy my wsr in my ear and call 
localhost:8080/jboss-net/servlet/AxisServlet

I get the following error: 
Could not find home in JNDI; nested exception is: 
javax.naming.NameNotFoundException: DefecttrackServiceLocal not bound

Here is my web-service.xml

  | ?xml version=1.0 encoding=UTF-8?
  | 
  | !-- --
  | !-- This JBoss.Net Web Service Descriptor has been generated by XDoclet  
--
  | !-- and is brought to you by F. M. Brier, C. G. Jung and J. Essington
--
  | !-- --
  | 
  | deployment
  | name=DefectEJB 
  | xmlns=http://xml.apache.org/axis/wsdd/;
  | targetNamespace=http://net.jboss.org/defectEJB;
  | xmlns:defectEJB=http://net.jboss.org/defectEJB;
  | xmlns:java=http://xml.apache.org/axis/wsdd/providers/java;
  | 
  | !-- The following are declarations of service endpoints targetted to
  |  session beans --
  | 
  |   service name=CfcDefectService provider=Handler
  | parameter name=handlerClass 
value=org.jboss.net.axis.server.EJBProvider/
  | parameter name=beanJndiName value=DefecttrackServiceLocal/
  | parameter name=homeInterfaceName 
value=DefecttrackServiceLocalHome/
  | parameter name=allowedMethods value=getUnitHeaderByKey /
  | requestFlow name=CfcDefectServiceRequest
  | 
  | /requestFlow
  | responseFlow name=CfcDefectServiceResponse
  | 
  | /responseFlow
  | !-- Operation mapping results --
  | 
  | operation name=getUnitHeaderByKey returnQName=getUnitHeader   
  |parameter name=pk/
  | /operation 
  | 
  |   /service
  | 
  | !-- The following are typemappings for entity beans for implementing 
  |  the implicit web-service value-object pattern --
  | 
  | !-- The following are typemappings for bean-type value-objects --
  | 
  | !-- There follow merged custom web service descriptions --
  | 
  | /deployment
  | 

My Application.xml looks like this:

  | application
  | display-nameCFCDefecttrackEAR/display-name
  | descriptionEAR for CFC Defect tracking System/description
  | 
  | module
  | web
  | web-uriDefectadmin.war/web-uri
  | context-root/Defectadmin/context-root
  | DefectEJB.wsr
  | /web
  | /module
  | module
  | ejbDefecttrackMgr.jar/ejb
  | /module
  | module
  | javaDefectEJB.wsr/java
  | /module
  | 
  | /application
  | 

My SessionBean looks like this:

  | 
  | package com.motorola.cfcdefect.ejb.cfcservice;
  | 
  | import javax.ejb.CreateException;
  | import javax.ejb.SessionBean;
  | 
  | import org.apache.log4j.Logger;
  | 
  | import com.motorola.cfcdefect.ejb.category.CategoryUtil;
  | import com.motorola.cfcdefect.ejb.category.WipLocationUtil;
  | import com.motorola.cfcdefect.ejb.manager.DefectAccessBean;
  | import com.motorola.cfcdefect.ejb.measuredfn.MeasureDfnUtil;
  | import com.motorola.cfcdefect.ejb.unit.UnitHeaderLocal;
  | import com.motorola.cfcdefect.ejb.unit.UnitHeaderLocalHome;
  | import com.motorola.cfcdefect.ejb.unit.UnitHeaderUtil;
  | import com.motorola.cfcdefect.ejb.unit.UnitHeaderValue;
  | import com.motorola.cfcdefect.ejb.unit.UnitMeasureDfnUtil;
  | import com.motorola.cfcdefect.ejb.unit.UnitMeasureValue;
  | 
  |  /**
  |  * !-- begin-xdoclet-definition -- 
  |  * @ejb.bean name=DefecttrackService  
  |  *   jndi-name=DefecttrackServiceBean
  |  *   type=Stateless 
  |  *   transaction-type=Container
  |  *   view-type=local 
  |  *
  |  * @ejb.ejb-ref ejb-name=DefecttrackService
  |  *  view-type=local
  |  *  ref-name=ejb/DefecttrackService
  |  *
  |  * @ejb.ejb-ref ejb-name=UnitHeader
  |  *  view-type=local
  |  *  ref-name=ejb/UnitHeaderLocal
  |  *
  |  * @jboss-net.web-service 
  |  *  urn=CfcDefectService
  |  *
  |  * !-- end-xdoclet-definition -- 
  |  * @generated
  |  */
  | public abstract class DefecttrackServiceBean implements 
javax.ejb.SessionBean 
  | {
  | private UnitHeaderLocalHome uhLocalHome;
  | private static Logger log = 
Logger.getLogger(DefecttrackServiceBean.class);
  | 
  | /**
  |  * @ejb.create-method
  |  * @throws CreateException
  |  */
  | public void ejbCreate()throws CreateException
  | {
  | try
  | {
  | uhLocalHome = UnitHeaderUtil.getLocalHome();
  | }
  | catch(Exception e)
  | {
  | log.error(ejbCreate :+e);
  | }
  | }
  | 
  | /**
  |  * @ejb.interface-method view-type=local
  |  * @jboss-net.web-method returnQName=getUnitHeader
  |  * @param pk
  |  * @return
  |  */
  | public UnitHeaderValue getUnitHeaderByKey(String pk)
  | {
  | log.debug(Entering DefecttrackServiceBean.getUnitHeaderByKey);
  | 

[JBoss-user] [EJB/JBoss] - Deployment Error with Primary Key Class

2004-12-10 Thread olcman
  |  persistence-typeBean/persistence-type
  |  
prim-key-classcom.motorola.cfcdefect.ejb.unit.UnitMeasurePK/prim-key-class
  |  reentrantFalse/reentrant
  | 
  |  resource-ref 
  | res-ref-namejdbc/OraPicassoDS/res-ref-name
  | res-typejavax.sql.Datasource/res-type
  | res-authContainer/res-auth
  |  /resource-ref
  | 
  |   /entity
  | 

Can somebody help me please? Its urgent

olcman

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3858220#3858220

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3858220


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Deployment Error with Primary Key Class

2004-12-10 Thread olcman
Hi,

thanks for answering.

The return type is the primary key class UnitMeasureDfnBMP.

But something is very strange. I get those error when i try to deploy my bean 
with eclipse. But when i test it with my client, it works?
I don't get any errors.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3858227#3858227

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3858227


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Stupid question

2004-11-21 Thread olcman
Is here anyone who has implemented a finder Method called findall wich returns 
a Collection of Object with BMP?
Can somebody give me an example?
I am going to be confuse. 
I am working with eclipse + lomboz + jboss.

Thx 

olcman




View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3855835#3855835

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3855835


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Return Collection of Objects BMP

2004-11-19 Thread olcman
Hi,

i am very new to J2EE. I got a problem with returning a Collection of objects.

I've read the following topic: 
http://www.jboss.org/index.html?module=bbop=viewtopict=38353

My problem is the same, but i have no Idea, how i solve this issue.

Can somebody give me a code sample?

Thx

Olcman

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3855765#3855765

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3855765


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Doesn't run on Linux

2004-10-05 Thread olcman
)
  | at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
  | java:185)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy5.deploy(Unknown Source)
  | at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:407)
  | at org.jboss.system.server.ServerImpl.start(ServerImpl.java:311)
  | at org.jboss.Main.boot(Main.java:145)
  | at org.jboss.Main$1.run(Main.java:399)
  | at java.lang.Thread.run(Thread.java:484)
  |  + nested throwable: javax.xml.parsers.FactoryConfigurationError: Provider org.a
  | pache.xerces.jaxp.DocumentBuilderFactoryImpl not found
  | at javax.xml.parsers.DocumentBuilderFactory.newInstance(Unknown Source)
  | at org.jboss.deployment.SARDeployer.parseDocument(SARDeployer.java:514)
  | at org.jboss.deployment.SARDeployer.init(SARDeployer.java:137)
  | at org.jboss.deployment.MainDeployer.init(MainDeployer.java:700)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:635)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:608)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:592)
  | at java.lang.reflect.Method.invoke(Native Method)
  | at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.
  | java:60)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
  | java:185)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy5.deploy(Unknown Source)
  | at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:407)
  | at org.jboss.system.server.ServerImpl.start(ServerImpl.java:311)
  | at org.jboss.Main.boot(Main.java:145)
  | at org.jboss.Main$1.run(Main.java:399)
  | at java.lang.Thread.run(Thread.java:484)
  | 13:28:35,875 INFO  [Server] JBoss SHUTDOWN: Undeploying all packages
  | Shutting down
  | Shutdown complete
  | Halting VM
  | 
Can somebody tell me what i am making wrong?

Thx
olcman

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3850371#3850371

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3850371


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Doesn't run on Linux

2004-10-05 Thread olcman
Hi,

i have forgotten something. Before Jboss start, i get the following Message:

  | ulimit: bad non-numeric arg `file'
  | run.sh: Could not set maximum file descriptor limit: file size (blocks)
  | limited
  | open files   1024
  | 

I have tried the jdk1.4 on Windows an it works. On the Linux Machine I have only the 
1.3. Because the precondition is, to run Jboss on jdk1.3

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3850376#3850376

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3850376


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Doesn't run on Linux

2004-10-05 Thread olcman
I have tried to run Jboss-3.2.5 on jdk 1.4.0 an get the following message

  | ulimit: bad non-numeric arg `file'
  | run.sh: Could not set maximum file descriptor limit: file size (blocks)   un
  | limited
  | open files   1024
  | =
  | 
  |   JBoss Bootstrap Environment
  | 
  |   JBOSS_HOME: /home/picadm/jboss-3.2.5
  | 
  |   JAVA: /home/kaithom/java/j2se/bin/java
  | 
  |   JAVA_OPTS: -server -Dprogram.name=run.sh
  | 
  |   CLASSPATH: /home/picadm/jboss-3.2.5/bin/run.jar:/home/kaithom/java/j2se/lib/to
  | ols.jar
  | 
  | =
  | 
  | 14:19:37,672 INFO  [Server] Starting JBoss (MX MicroKernel)...
  | 14:19:37,694 INFO  [Server] Release ID: JBoss [WonderLand] 3.2.5 (build: CVSTag=
  | JBoss_3_2_5 date=200406251954)
  | 14:19:37,698 INFO  [Server] Home Dir: /home/picadm/jboss-3.2.5
  | 14:19:37,700 INFO  [Server] Home URL: file:/home/picadm/jboss-3.2.5/
  | 14:19:37,702 INFO  [Server] Library URL: file:/home/picadm/jboss-3.2.5/lib/
  | 14:19:37,711 INFO  [Server] Patch URL: null
  | 14:19:37,713 INFO  [Server] Server Name: default
  | 14:19:37,714 INFO  [Server] Server Home Dir: /home/picadm/jboss-3.2.5/server/def
  | ault
  | 14:19:37,717 INFO  [Server] Server Home URL: file:/home/picadm/jboss-3.2.5/serve
  | r/default/
  | 14:19:37,719 INFO  [Server] Server Data Dir: /home/picadm/jboss-3.2.5/server/def
  | ault/data
  | 14:19:37,720 INFO  [Server] Server Temp Dir: /home/picadm/jboss-3.2.5/server/def
  | ault/tmp
  | 14:19:37,722 INFO  [Server] Server Config URL: file:/home/picadm/jboss-3.2.5/ser
  | ver/default/conf/
  | 14:19:37,725 INFO  [Server] Server Library URL: file:/home/picadm/jboss-3.2.5/se
  | rver/default/lib/
  | 14:19:37,727 INFO  [Server] Root Deployment Filename: jboss-service.xml
  | 14:19:37,758 INFO  [Server] Starting General Purpose Architecture (GPA)...
  | 14:19:42,548 INFO  [ServerInfo] Java version: 1.4.0,Sun Microsystems Inc.
  | 14:19:42,550 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.4.0-b92,Su
  | n Microsystems Inc.
  | 14:19:42,551 INFO  [ServerInfo] OS-System: Linux 2.2.14-5.0,i386
  | 14:19:47,095 INFO  [Server] Core system initialized
  | 14:20:10,095 WARN  [NestedThrowable] Duplicate throwable nesting of same base ty
  | pe: class org.jboss.deployment.DeploymentException is assignable from: class org
  | .jboss.deployment.DeploymentException
  | 14:20:10,096 ERROR [MainDeployer] could not create deployment: file:/home/picadm
  | /jboss-3.2.5/server/default/conf/jboss-service.xml
  | org.jboss.deployment.DeploymentException: create operation failed for package fi
  | le:/home/picadm/jboss-3.2.5/server/default/conf/jboss-service.xml; - nested thro
  | wable: (org.jboss.deployment.DeploymentException: Error parsing the XML file, fr
  | om XMLMetaData: ; - nested throwable: (org.jboss.mx.util.JBossNotCompliantMBeanE
  | xception: Error parsing the XML file, from XMLMetaData: ))
  | at org.jboss.deployment.SARDeployer.create(SARDeployer.java:227)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:790)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:644)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:608)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:592)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
  | java:39)
  | at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
  | sorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.
  | java:60)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
  | java:185)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
  | at $Proxy5.deploy(Unknown Source)
  | at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:407)
  | at org.jboss.system.server.ServerImpl.start(ServerImpl.java:311)
  | at org.jboss.Main.boot(Main.java:145)
  | at org.jboss.Main$1.run(Main.java:399)
  | at java.lang.Thread.run(Thread.java:536)
  | Caused by: org.jboss.deployment.DeploymentException: Error parsing the XML file,
  |  from XMLMetaData: ; - nested throwable: (org.jboss.mx.util.JBossNotCompliantMBe
  | anException: Error parsing the XML file, from XMLMetaData: )
  | at 

[JBoss-user] [Installation Configuration] - Re: Doesn't run on Linux

2004-10-05 Thread olcman
Thanks for reply.

I never changed the run.sh. So i don't understand how the warning comes. However! The 
main problem is still available. I can not run Jboss.
I will try to compile it.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3850397#3850397

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3850397


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Doesn't run on Linux

2004-10-05 Thread olcman
Compile fails. But i tried to run jboss on windows with the jdk1.3.1_10 and works 
fine. It might be a problem on the Linux machine.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3850482#3850482

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3850482


---
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user