soap - Getting the next hundred records from getAddressBook(JDE BSSV) -
i making request /addressbookmanager?wsdl
invoking getaddressbook
, getting first hundred records , question if there's way next hundred next hundred(pagination)?
i've been looking possible solutions sending parameters/arguments method when invoking want know if possible @ all.
i don't have access jde , given wsdl, , having hard time guessing possible or not.
any appreciated.
thank you!
the code(node.js):
client.addressbookmanagerservice.addressbookmanagerport.getaddressbook({args inserted here passed}, function(err,response){ ... });
you should able see schema if inside wsdl file under types tag under schemalocation
:
<types> <xsd:schema> <xsd:import namespace="http://oracle.e1.bssv.jp550101/" schemalocation="https://blahblah/addressbookmanager?xsd=1" /> </xsd:schema> </types>
inspecting file, should see xml elements - check see if there elements define page number, records per page, sort index etc.
<xs:complextype name="f0101get"> <xs:complexcontent> <xs:extension base="tns:valueobject"> <xs:sequence> <xs:element name="pagenumber" type="xs:int" /> <xs:element name="recordnumberperpage" type="xs:int" /> <xs:element name="sortindex" type="xs:int" /> </xs:sequence> </xs:extension> </xs:complexcontent> </xs:complextype>
if exist, setting values in request should give functionality need.
Comments
Post a Comment