Skip to Main Content

Application Development Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How can I use updateDocInfo method using SOAP UI

923890Apr 21 2012 — edited Apr 22 2012
I need to update the metadata. I'm download a file name is CheckIn.wsdl (under menu Administration->Soap Wsdls->Wsdl List). And then I'm add wsdl file to The Soup UI and test UpdateDocInfo operation.

I'm created a Request1

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:chec="http://www.stellent.com/CheckIn/">
<soapenv:Header/>
<soapenv:Body>
<chec:UpdateDocInfo>
<!--Optional:-->
<chec:dID>8386</chec:dID>
<!--Optional:-->
<chec:dRevLabel>1</chec:dRevLabel>
<!--Optional:-->
<chec:dDocName>TEST_BPEL6</chec:dDocName>
<!--Optional:-->
<chec:dDocTitle>TEST_BPEL6</chec:dDocTitle>
<!--Optional:-->
<chec:dDocType>test1</chec:dDocType>
<!--Optional:-->
<chec:dDocAuthor>weblogic</chec:dDocAuthor>
<!--Optional:-->
<chec:dSecurityGroup>Public</chec:dSecurityGroup>
<!--Optional:-->
<chec:dDocAccount></chec:dDocAccount>
<!--Optional:-->
<chec:CustomDocMetaData>
<!--Zero or more repetitions:-->
<chec:property>
<!--Optional:-->
<chec:name>xjobNum</chec:name>
<!--Optional:-->
<chec:value>99</chec:value>
</chec:property>
</chec:CustomDocMetaData>
<chec:extraProps>
<!--Zero or more repetitions:-->
<chec:property>
<!--Optional:-->
<chec:name>?</chec:name>
<!--Optional:-->
<chec:value>?</chec:value>
</chec:property>
</chec:extraProps>
</chec:UpdateDocInfo>
</soapenv:Body>
</soapenv:Envelope>


After that I getting response

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<idc:UpdateDocInfoResponse xmlns:idc="http://www.stellent.com/CheckIn/">
<idc:UpdateDocInfoResult>
<idc:StatusInfo>
<idc:statusCode>-18</idc:statusCode>
<idc:statusMessage>Unable to update the content item information for 'TEST_BPEL6'. User 'weblogic' does not have sufficient privileges.</idc:statusMessage>
</idc:StatusInfo>
</idc:UpdateDocInfoResult>
</idc:UpdateDocInfoResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>


Why I can't update document?
Can anyone help me

Thank you.

sorry if my writing It's not well
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 20 2012
Added on Apr 21 2012
4 comments
448 views