[JBoss-user] [JBossWS] - wscomple features in wstools?

2006-06-24 Thread kvbisme
Is there a way to perform the functionallity of the "searchschema" feature in wscompile with wstools? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953220#3953220 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953220

[JBoss-user] [JBossWS] - Re: can anyone help me?

2006-06-14 Thread kvbisme
For ws4ee this may work, but we are using the 4.0.4-GA release and it does not deploy the ws4ee stack, and because of a problem with it I can not use it anyway. That being said can anyone point me to a good example or description on how to use the JbossWS in 4.0.4-GA from within an EJB3 Sessi

[JBoss-user] [JBossWS] - ws4ee objects serialized out of order

2006-04-28 Thread kvbisme
So I was putting together a demonstration on using the xsd:extension element in a WSDL, using JBoss 4.0.3SP1 which uses the ws4ee webservices. I created the WSDL which accepted an array of base objects as input. My service took these and using Log4J displayed the classes to demonstrate that yo

[JBoss-user] [Clustering/JBoss] - Getting the WSDL to point back to the load-balancer

2006-04-18 Thread kvbisme
So we have several application servers sitting behind a couple of Apache servers to load-balance the HTTP requests. Now add the web services to the mix. When someone wants to build a client using our WSDL ? well that?s my issue. Since the endpoint URL is set to the machine it is deployed on ?

[JBoss-user] [EJB 3.0] - Re: Classcast Exception $Proxy thing

2006-04-17 Thread kvbisme
I can post the major parts .. The Interface: | package com.ist.beans.interfaces.local; | | import java.io.Serializable; | import javax.ejb.Local; | | | @Local | public interface Notification { | ... | public Object getNotification(String topic, String user, int timeOu

[JBoss-user] [EJB 3.0] - Re: Classcast Exception $Proxy thing

2006-04-17 Thread kvbisme
Sorry I ended up submitting a tad early ... Anyway my intefaces shows up as an interface for the proxy object ... and I still get the class cast exception. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937699#3937699 Reply to the post : http://www.jboss.

[JBoss-user] [EJB 3.0] - Re: Classcast Exception $Proxy thing

2006-04-17 Thread kvbisme
I am having the same problem ... what really is confusing me is I went and added the collowing code to where I perform the lookup: InitialContext context = new InitialContext(); Object objRef = context.lookup("ejb/notification"); Class c = objRef.getClass(); Class[] interfaces = c.getInterfaces()