bulldog
bulldog
Hi, PicoCache is used for obj-c to xml mapping metadata caching, it's only a simple LRU cache implementation without considering much concurrent performance issue. In your case, as a workaround,...
Hi, Nano is just a light library targeting Android platform, considering the complexity introduced, it only supports a single target namespace. In your case, as workaround, I recommend you to...
Hi, see my comments below: 1. namespace is extracted from object using code like: ``` MappingSchema ms = MappingSchema.fromObject(source); RootElementSchema res = ms.getRootElementSchema(); String namespace = res.getNamespace(); ``` 1. namespace...
Thx for your work and feedback, I plan to integrate the nested namespace logic into the latest source, will let you know when done. -William
Hi, The big queue has only been verified in cross-threads case, but not in cross-proceses case, you may try to flush the big queue from the writer process before reading...
Hi, I have checked that idType and itemId have been generated from wsdl: https://github.com/bulldog2011/PicoAWSECommerceServiceClient/blob/master/Proxy/ItemLookupRequest.h can you double confirm? thx! -William
Hi, Current nano does not support a list of binary data, as a workaround, you may ecode base64binary as string or some kind of wrapper object on service provider side,...
Hi, MWSC/Pico only supports doc/lit style wsdl, rpc style is not supported, you must wrap the response in a complext type element. Thx! -William
in doc/lit style wsdl, you must wrap response in a complext type, something link XXXResponse and it's ok that the wrapper element have only one boolean sub-element. see details here:...
Hi, MWSC is just a light tool targeting mobile platforms, considering the effort and complexity, it is only desiged to support doc/lit style wsdl. You definitely can do some hacking...