[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2008-01-18 Thread pipo323400
Hi, I have been working several days with this issue. At last this problem is caused in the Client application. In my case a web app. It was not able to recognize the type that the server was returning (ArrayList in this case). Another important thing, correct me if I am wrong, is that Web Ser

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2007-11-21 Thread paoletto
"[EMAIL PROTECTED]" wrote : Your DII client does not have a jaxrpc-mapping.xml. You can use | | | | ServiceFactoryImpl.createService(wsdlURL, serviceName, mappingURL) | | | how is this approach changed now? View the original post : http://www.jboss.com/index.html?module=bb&op

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2007-06-19 Thread poyge394
|URL wsdlLocation = new URL("http://example.org/my.wsdl";); |QName serviceName = new QName("http://example.org/sample";, "MyService"); |Service service = Service.create(wsdlLocation, serviceName); | Service.create does not exists. View the original post : http://www.jboss.

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2007-04-20 Thread [EMAIL PROTECTED]
Try jaxws http://jbws.dyndns.org/mediawiki/index.php/JAX-WS_User_Guide#Web_Service_Clients View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039388#4039388 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039388 __

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2007-04-20 Thread sandello
What I should do to connect some public webservice in the Internet (like http://www.webservicex.net/WCF/ServiceDetails.aspx?SID=48)? I create small client method: | @Test | public void weather() { | QName serviceQName = new QName("http://www.webserviceX.NET";, "GlobalWeather"); |

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2006-10-26 Thread [EMAIL PROTECTED]
JSR-181 by itself is server side only. When you develop a client to talk to a JSR-181 endpoint, you have to consume the wsdl using a tool (wstools), and generate a mapping file. You also can not reuse any of the annotated interfaces because the client and server are fundamentally disconnected, t

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2006-10-17 Thread MmarcoM
Hello all, did anyone find a *definitive* solution to this problem? my webservice has this signagure Agency[] testAgencies(Agency[] in) and even though i can successfully deplloy my WS, when i generate client classes i am receiving this exception | creating service | Exception in thre

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2006-09-22 Thread huayseonglee
Hi Guys, I am not sure you guys already found any solution to this problem yet. I was having the same problem while using DII to access the WS. I have tried the jaxrpc-mapping.xml file that generated by the wstools, this goes thru the "createService" function call but having problem again while

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2006-09-21 Thread huayseonglee
Once I replace the jboss-jaxrpc.jar with the following jars from apache, it works fine. ant.jar ant-axis.jar common-discovery.jar common-discovery-0.2.jar look for the jboss-jaxrps.jar at the {JBOSS_HOME}/client and {JBOSS_HOME}/server/lib. Back it up and replace it with the Jars above. Re-de

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2006-09-18 Thread tim.cockle
I am having the same problem with J2EE 1.4 It works fine for primative types but nothing else. Also if I try document/literal I get the same thing. [java] org.jboss.ws.WSException: Cannot obtain java type mapping for: {www.aware-services.co.uk/ws/hello/types}sayHello my wsdl: ?

[jboss-user] [JBossWS] - Re: Cannot obtain java type mapping for: {http://org.mazurek

2006-07-26 Thread nax32
i still have an error: "Cannot obtain java type mapping for..." i don't know how to specify where my jaxrpc-mapping is. i know that is in the EB3 file in the folder: META-INF. how can I solve this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3960889#396088