Support Forum [ All Topics | New Topic ]

Thread: Rapnet Listing Downloading

Respected sir ,
 
          We have developed software to download rapnet listing, we have used Rapnet06 method to download data and download data using Dataset, we found that your dataset not giving all inventory listed your website. we want to download all data listed from INDIA, your dataset giving
30733 record and when we search from your website that gives 154,764 records.

====================================
below is code to download data...
====================================       
Dim URLAuth As String = "https://technet.rapaport.com/HTTP/Authenticate.aspx"
            Dim webClient As New WebClient()
            Dim formData As New NameValueCollection()
            formData("Username") = RapNetId
            formData("Password") = RapNetPassword
            Dim responseBytes As Byte() = webClient.UploadValues(URLAuth, "POST", formData)
            Dim ResultAuth As String = Encoding.UTF8.GetString(responseBytes)

           Dim objRapTicket As New AuthenticationTicketHeader()
            Dim objRapNetService As New RapNetInventoryLinkSoapClient()
            Dim objRapParam As New RapNetInventoryLinkParameters()
            objRapTicket.Ticket = ResultAuth
            objRapParam = objRapNetService.Init(objRapTicket)
            objRapParam.Location = Locations.India

          objRapNetService.InnerChannel.OperationTimeout = System.TimeSpan.MaxValue
            objRapNetDS = objRapNetService.GetDiamonds(objRapTicket, objRapParam)


========================================

pls help us what is the possible solution to download all inventory listed on your site...


>> add a comment
Mitesh
01/01/2011 03:00


1 Replies:

Hi

That’s because you need permissions from the vendors for downloading their listings, you can see the vendors that allow you under “vendors” in this link http://www.rapnet.com/RapNet/DownloadListings/download.aspx

for adding more vendors to your list you will need to contact them and ask them to allow you download their listings.

 

Regards, ahaliav



>> add a comment
ahaliav
1/2/2011 3:31:00 AM