hishambon 0 Newbie Poster

Hi,
right now i develop a web page using asp.net. in this page i need to send a message to plugin to generate the xml message and receive back the message i had send to plugin in XML format.
there is no problem for me to send the message to the plugin to generate the xml message. When i re-check teh log, i see there is the the message in XML format that i want.
the problem is when i need to receive back the xml string from the plugin
below is the sample of my koding:

If objSoc.LastError = asERR_WSASUCCESS Then


objSoc.Sleep(1000)

sHantar = "message:request|message.type:" + stype + "|message.token:" + stoken + "|message.orderno:" + sktrgplgn + "" + ssiribyr + "|message.ordercount:" + sordcount + "|message.txntime:" + dDate.ToString("yyyymmddHHMMss") + "|message.serialno:" + ssirifpx + "|message.currency:" + stranscur + "|message.amount:" + stransamt + "|charge.type:" + schrgtype + "|seller.orderno:" + sktrgplgn + "" + ssiribyr + "|seller.id:" + sslid + "|seller.bank:" + sslbank + ""
objSoc.SendString(sHantar, True)

WaitForData(objSoc)

objSoc.ReceiveString(sTerima, True)

objSoc.Disconnect()

Label1.Text = sTerima
End If

Can anybody plzzzzzzzzzz, help me

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.