Hi
How can I get rpc method when executing iapi command:
getcontent,c,080003f28a55f487,richtext
next,c,q1
get,c,q1,_content_buffer
Not sure what you are asking. API is low level call. You can try enable tracing, but I'm not sure what you are trying to do.
I need call this:
coll = dmAPIGet("getcontent," session "," doc_id")
while (dmAPIExec("next," session"," coll))
{msg = dmAPIGet("get," session "," coll ",_content_buffer")
print msg
}
dmAPIExec ("close," session)
In java code. I will try enable dfc trace. Thank.
Download the DFC javadocs. Every API should have comparable DFC method.
If you are looking for the DFC equivalent, try IDfSysObject getContent() and getContentEx() or getCollectionForContent() and getCollectionForContentEx() (latter should be preferred for large content).