[JBoss-user] [JBossWS] - Re: Need help debugging web service deployment

2006-04-06 Thread fss
This should work! | ... | JAXBContext jaxbContext =JAXBContext.newInstance(...); | Marshaller m = jaxbContext.createMarshaller(); | m.setProperty(Marshaller.JAXB_ENCODING, UTF-8); | | DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); | Document doc =

[JBoss-user] [Management, JMX/JBoss] - web-console Invocation Statistics

2006-03-24 Thread fss
Hi, with the web-console you can view all Invocation Statistics+Bean Statistics of all deployed ejb's. Is there a way to store this statistics to a log file at servershutdown? thanx florian View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3932409#3932409

[JBoss-user] [JBossWS] - Re: No reference get from JSP client while accessing webserv

2006-03-15 Thread fss
Show your deployed ejb-jar.xml+jboss.xml! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3930299#3930299 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3930299 --- This

[JBoss-user] [JBossWS] - Re: No reference get from JSP client while accessing webserv

2006-03-15 Thread fss
try cntxt = new InitialContext(); | ref= cntxt.lookup(Example); View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3930357#3930357 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3930357

[JBoss-user] [JBossWS] - Re: Problem with wsdl

2006-03-08 Thread fss
Hi Emmanuel, you can control the address location in the file .../deploy/jboss-ws4ee.sar/META-INF/jboss-service.xml - mbean code=org.jboss.webservice.AxisService | name=jboss.ws4ee:service=AxisService ... , Flo View the original post :

[JBoss-user] [JBossWS] - Re: problems generating WebService stuff with wscompile Ant

2006-03-08 Thread fss
Post your build.xml! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3928701#3928701 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3928701 --- This SF.Net email is

[JBoss-user] [JBossWS] - Re: Context-root for EJB service-endpoint

2006-02-27 Thread fss
Hi Kristof, you can set the context-root in the jboss.xml. ?xml version=1.0 encoding=UTF-8? | !DOCTYPE jboss PUBLIC | -//JBoss//DTD JBOSS 4.0//EN | http://www.jboss.org/j2ee/dtd/jboss_4_0.dtd; | | jboss | enterprise-beans | session |

[JBoss-user] [JBossWS] - JAXRPC Handler

2006-01-19 Thread fss
Hi, I have a problem with following jaxrpc-Handler. public class RequestLogHandler extends GenericHandler | { | private static final Logger logger = Logger.getLogger(RequestLogHandler.class); | | private SOAPMessage request; | | public RequestLogHandler() | {

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - CMP - default sysdate

2005-08-16 Thread fss
Hi, i have a cmp entity bean for one simple table tab_test (oracle9i). CREATE TABLE TAB_TEST( | ID NUMBER NULL, | INSERT_DATE DATE DEFAULT sysdate NOT NULL | ); | | ALTER TABLE TAB_TEST ADD ( | PRIMARY KEY (ID)); | The field

[JBoss-user] [JBossWS] - Help: Webservice ejb-endpoint + jaxb

2005-08-03 Thread fss
I created a doc/lit webservice as sessionbean endpoint! I processed following steps: 1. I created the xsd-schema-files for the requests and responses schema: | ... | xs:element name=ReadRS | xs:complexType | xs:choice | xs:sequence |