[ http://issues.apache.org/jira/browse/AXIS-2188?page=comments#action_12320532 ]
Javier Kohen commented on AXIS-2188: ------------------------------------ That is the full client code, as far as Axis and web services are concerned. You can wrap it in a main method and it should work. An auction_id (AKA item ID) can be retrieved from every eBay auction by just looking at the top right corner of the item's page (no sense in posting one here because once the auction is closed the ID becomes immediately invalid). Since I opened this report I moved onto using eBay's official web service API, which despite being much more complex, it can be handled pretty well by Axis (although it doesn't use dynamic proxies like the program above). > No Deserializer found to deserialize xsd:string > ----------------------------------------------- > > Key: AXIS-2188 > URL: http://issues.apache.org/jira/browse/AXIS-2188 > Project: Apache Axis > Type: Bug > Components: Serialization/Deserialization, WSDL processing > Versions: 1.2, 1.2.1 > Reporter: Javier Kohen > > Since I updated from Axis 1.1 to 1.2(.1), I cannot access the service at > http://www.xmethods.net/sd/2001/EBayWatcherService.wsdl anymore. The > following explanation is given: > No Deserializer found to deserialize a > 'http://schemas.xmlsoap.org/soap/encoding/:string' using encoding style > 'http://schemas.xmlsoap.org/soap/encoding/'. > My code is: > URL srvUrl = > new > URL("http://www.xmethods.net/sd/2001/EBayWatcherService.wsdl"); > String namespace = > "http://www.xmethods.net/sd/eBayWatcherService.wsdl"; > String opNamespace = "urn:xmethods-EbayWatcher"; > ServiceFactory serviceFactory = ServiceFactory.newInstance(); > Service service > = serviceFactory.createService( > srvUrl, > new QName(namespace, "eBayWatcherService")); > Call call = service.createCall(new QName(namespace, > "eBayWatcherPort")); > call.setOperationName(new QName(opNamespace, > "getCurrentPrice")); > Float price = (Float) call.invoke( > new Object[] { auction_id }); > I found a couple other users reporting the similar problem on the web, but > there aren't more than 5-10 matches on google.com. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira