[JBoss-user] [JBossWS] - Re: Standalone client for JBoss hosted Web Service [using JB

2006-05-25 Thread Sonal Raj
Hey...Don't know what is the" fFeatures " field, This link gives very simple example on DII client. http://wiki.jboss.org/wiki/Wiki.jsp?page=WS4EEClientDII Hope this will help you! -- Sonal. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3946451#3946451 Repl

[JBoss-user] [JBossWS] - Re: webservice

2006-05-25 Thread Sonal Raj
Think you are trying to write the webservice client . You can find steps regarding this on : http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossWS4EE -- Sonal View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3946446#3946446 Reply to the post : http://www.jboss.com/

[JBoss-user] [JBossWS] - Re: Standalone client for JBoss hosted Web Service [using JB

2006-05-25 Thread Sonal Raj
Can you paste your client code ? And i think by initializing the root logger the log4j warning will be resolved. -- Sonal. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3946440#3946440 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[JBoss-user] [JBossWS] - Re: webservice

2006-05-25 Thread Sonal Raj
Can you paste your configuration file config.xml ? -- Sonal. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3946437#3946437 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3946437 ---

[JBoss-user] [JBossWS] - Re: Complex types mapping

2006-05-24 Thread Sonal Raj
Chander, I'm using jboss-4.0.3SP1. Following link explains such type of example, http://wiki.jboss.org/wiki/Wiki.jsp?page=WS4EEClientDII -- Sonal View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3946055#3946055 Reply to the post : http://www.jboss.com/index.h

[JBoss-user] [JBossWS] - Re: Complex types mapping

2006-05-23 Thread Sonal Raj
In case of the DII(Dynamic Invocation Client) there is no need of any serializer,Usually the mapping.xml location is given.Here is how the service is created, ServiceFactoryImpl serviceFactory = (ServiceFactoryImpl) ServiceFactory.newInstance(); Service service = service

[JBoss-user] [JBossWS] - Re: Complex types mapping

2006-05-23 Thread Sonal Raj
I just give the mapping file(mapping.xml) for the complex types and it works fine for me. -- Sonal. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3945631#3945631 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3945631

[JBoss-user] [JBossWS] - Re: Standalone client for JBoss hosted Web Service [using JB

2006-05-23 Thread Sonal Raj
Yes, You can have a DII (Dynamic Invocation Interface) client or Static stub generated client . 'Jboss Getting started' is a good documentation for this, http://docs.jboss.org/jbossas/getting_started/v4/html/ws.html#d0e1467 -- Sonal View the original post : http://www.jboss.com/index.html?mod

[JBoss-user] [JBossWS] - Re: ClassCastException: org.jboss.axis.Message

2006-05-21 Thread Sonal Raj
Hi All, The stubs are generated using wscompile tool. Sun StubBase class is casting the response message to com.sun.xml.messaging.saaj.soap.MessageImpl and Since JBoss uses an axis message factory for the response message.so there is the "Class Cast Exception". But still not able to find the sol

[JBoss-user] [JBossWS] - ClassCastException: org.jboss.axis.Message

2006-05-21 Thread Sonal Raj
Hi All, I've written two clients (DII and static stub client) for my webservice.The DII client works fine but not able to write the static stub client.Here is the my static stub client code : Stub stub = (Stub) (new CommerceItemService_Impl().getProductCollectionServicePort()); stub._setProper

[JBoss-user] [JBossWS] - DII client

2006-03-06 Thread Sonal Raj
Hi All, The return parameter of my web service is of complex type. I'm getting following error on accessing it in DII client : faultString: Deserializing parameter 'result': could not find deserializer for type {http://com.myproject.commerceitems/services/types}Phone Does any one has the