Hi ,
I have created in PB 11 a web service which contains a simple method.
It takes as an argument a string and with that string which is
formatted as an XML I am creating a datastore. The datastore has
already the dataobject assigned etc. etc...
The xml I am passing is the following
<?xml version='1.0' encoding='UTF-8' ?> <root> <Row Recordid='1'>
<CompanyID>DemoDash</CompanyID> <Vessel>Demo Opt</Vessel> <Port>New
York</Port> <ETA_Date>5/15/2008</ETA_Date> <ETA_Time>1000</ETA_Time>
<ETD_Date>5/17/2008</ETD_Date> <HSFO_Qty>500</HSFO_Qty> <LSFO_Qty>0</
LSFO_Qty> <MDO_Qty>0</MDO_Qty> <MGO_Qty>55</MGO_Qty> <IterationID>117</
IterationID> <UserName>Test User</UserName> <Notes>This is Test for
Integration. New York - IFO 380 cst - 500 mt</Notes> </Row> </root>
In PB code I am having a simple line of code
lds_datastore.ImportString(XML! , <the xml string>)
The strange thing is that for the localhost it is working very well
but when I am uploading to the server which it is supposed to be I'm
getting all the time "No rows or startrow value supplied is greater
than the number of rows in the string"
Why it is working for localhost and it is not working for my
webserver. The webservice is correct. I can call other
methods ,retrieve data etc.
Any ideas ?
I thought that perhaps I'm missing some dlls from the GAC. But I have
deployed everything. The webservice is running. For the localhost and
my local machine I have PB 11 installed. Also I have installed VS
2005. I haven't installed PB and VS studio .NET for the webserver.
Should I need to check if 'm missing any dlls from the webserver ???
Thank you