Skip to Content
0
Former Member
Aug 31, 2005 at 01:45 PM

How to HTTP POST data to SAP Business Connector

59 Views

Hello,

I would like to transfer data from a client with HTTP POST to SAP Business Connector. SAP BC acts as server. In SAP BC I created a Java service containing the code:

IDataCursor idatacursor = pipeline.getCursor();

idatacursor.first("node");

Object obj1 = idatacursor.getValue();

System.out.println(obj1.toString()); //for test

But how can I access the data that was sent with HTTP POST in my service?

Thank you

Piotr Dudzik