download file from FileNet IDM using IDM objects
i have code to download file from FileNet IDM server. using IDM docid but i want to pass property field and download it. what idmobjects should i use it.?
please help on this. am new to IDM.
fnObjectType = IDMObjects.idmObjectType.idmObjTypeDocument;
int pagec = 0;
try
{
fnGenericObj = fnLibrary.GetObject(fnObjectType, argDocid,
objMissing, objMissing, objMissing);
fnDoc = (IDMObjects.Document)fnGenericObj;
pagec = fnDoc.PageCount;
}
c#-4.0 filenet-panagon filenet-idm
add a comment |
i have code to download file from FileNet IDM server. using IDM docid but i want to pass property field and download it. what idmobjects should i use it.?
please help on this. am new to IDM.
fnObjectType = IDMObjects.idmObjectType.idmObjTypeDocument;
int pagec = 0;
try
{
fnGenericObj = fnLibrary.GetObject(fnObjectType, argDocid,
objMissing, objMissing, objMissing);
fnDoc = (IDMObjects.Document)fnGenericObj;
pagec = fnDoc.PageCount;
}
c#-4.0 filenet-panagon filenet-idm
A FileNet "document" has "content" (for example, a TIFF image stored in a library) and "properties" (for example, "name" or "claim #"). You can retrieve a document using docId. You can also "search" for documents matching some property. Once you have a docId, you can download the content. Q: What exactly do you want to do?
– paulsm4
Oct 29 '18 at 3:49
Thanks for the comment, i want to find docid from property search.
– soundar
Oct 29 '18 at 8:16
dont have IDM documentation. if there please share link. thanks for the help.
– soundar
Oct 29 '18 at 8:23
It sounds like you need to write a "search" query. You can find the IDM documentation and sample code here: www-01.ibm.com/support/docview.wss?uid=swg27009996. Note that the documentation and examples pretty much assume VB6. You can certainly use C#, but you'll need to translate.
– paulsm4
Oct 29 '18 at 8:25
Thank you so much. i will look into the documentation.
– soundar
Oct 29 '18 at 8:35
add a comment |
i have code to download file from FileNet IDM server. using IDM docid but i want to pass property field and download it. what idmobjects should i use it.?
please help on this. am new to IDM.
fnObjectType = IDMObjects.idmObjectType.idmObjTypeDocument;
int pagec = 0;
try
{
fnGenericObj = fnLibrary.GetObject(fnObjectType, argDocid,
objMissing, objMissing, objMissing);
fnDoc = (IDMObjects.Document)fnGenericObj;
pagec = fnDoc.PageCount;
}
c#-4.0 filenet-panagon filenet-idm
i have code to download file from FileNet IDM server. using IDM docid but i want to pass property field and download it. what idmobjects should i use it.?
please help on this. am new to IDM.
fnObjectType = IDMObjects.idmObjectType.idmObjTypeDocument;
int pagec = 0;
try
{
fnGenericObj = fnLibrary.GetObject(fnObjectType, argDocid,
objMissing, objMissing, objMissing);
fnDoc = (IDMObjects.Document)fnGenericObj;
pagec = fnDoc.PageCount;
}
c#-4.0 filenet-panagon filenet-idm
c#-4.0 filenet-panagon filenet-idm
edited Nov 23 '18 at 6:50
͏͏͏
3,76752852
3,76752852
asked Oct 25 '18 at 11:24
soundarsoundar
32
32
A FileNet "document" has "content" (for example, a TIFF image stored in a library) and "properties" (for example, "name" or "claim #"). You can retrieve a document using docId. You can also "search" for documents matching some property. Once you have a docId, you can download the content. Q: What exactly do you want to do?
– paulsm4
Oct 29 '18 at 3:49
Thanks for the comment, i want to find docid from property search.
– soundar
Oct 29 '18 at 8:16
dont have IDM documentation. if there please share link. thanks for the help.
– soundar
Oct 29 '18 at 8:23
It sounds like you need to write a "search" query. You can find the IDM documentation and sample code here: www-01.ibm.com/support/docview.wss?uid=swg27009996. Note that the documentation and examples pretty much assume VB6. You can certainly use C#, but you'll need to translate.
– paulsm4
Oct 29 '18 at 8:25
Thank you so much. i will look into the documentation.
– soundar
Oct 29 '18 at 8:35
add a comment |
A FileNet "document" has "content" (for example, a TIFF image stored in a library) and "properties" (for example, "name" or "claim #"). You can retrieve a document using docId. You can also "search" for documents matching some property. Once you have a docId, you can download the content. Q: What exactly do you want to do?
– paulsm4
Oct 29 '18 at 3:49
Thanks for the comment, i want to find docid from property search.
– soundar
Oct 29 '18 at 8:16
dont have IDM documentation. if there please share link. thanks for the help.
– soundar
Oct 29 '18 at 8:23
It sounds like you need to write a "search" query. You can find the IDM documentation and sample code here: www-01.ibm.com/support/docview.wss?uid=swg27009996. Note that the documentation and examples pretty much assume VB6. You can certainly use C#, but you'll need to translate.
– paulsm4
Oct 29 '18 at 8:25
Thank you so much. i will look into the documentation.
– soundar
Oct 29 '18 at 8:35
A FileNet "document" has "content" (for example, a TIFF image stored in a library) and "properties" (for example, "name" or "claim #"). You can retrieve a document using docId. You can also "search" for documents matching some property. Once you have a docId, you can download the content. Q: What exactly do you want to do?
– paulsm4
Oct 29 '18 at 3:49
A FileNet "document" has "content" (for example, a TIFF image stored in a library) and "properties" (for example, "name" or "claim #"). You can retrieve a document using docId. You can also "search" for documents matching some property. Once you have a docId, you can download the content. Q: What exactly do you want to do?
– paulsm4
Oct 29 '18 at 3:49
Thanks for the comment, i want to find docid from property search.
– soundar
Oct 29 '18 at 8:16
Thanks for the comment, i want to find docid from property search.
– soundar
Oct 29 '18 at 8:16
dont have IDM documentation. if there please share link. thanks for the help.
– soundar
Oct 29 '18 at 8:23
dont have IDM documentation. if there please share link. thanks for the help.
– soundar
Oct 29 '18 at 8:23
It sounds like you need to write a "search" query. You can find the IDM documentation and sample code here: www-01.ibm.com/support/docview.wss?uid=swg27009996. Note that the documentation and examples pretty much assume VB6. You can certainly use C#, but you'll need to translate.
– paulsm4
Oct 29 '18 at 8:25
It sounds like you need to write a "search" query. You can find the IDM documentation and sample code here: www-01.ibm.com/support/docview.wss?uid=swg27009996. Note that the documentation and examples pretty much assume VB6. You can certainly use C#, but you'll need to translate.
– paulsm4
Oct 29 '18 at 8:25
Thank you so much. i will look into the documentation.
– soundar
Oct 29 '18 at 8:35
Thank you so much. i will look into the documentation.
– soundar
Oct 29 '18 at 8:35
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52988144%2fdownload-file-from-filenet-idm-using-idm-objects%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f52988144%2fdownload-file-from-filenet-idm-using-idm-objects%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
A FileNet "document" has "content" (for example, a TIFF image stored in a library) and "properties" (for example, "name" or "claim #"). You can retrieve a document using docId. You can also "search" for documents matching some property. Once you have a docId, you can download the content. Q: What exactly do you want to do?
– paulsm4
Oct 29 '18 at 3:49
Thanks for the comment, i want to find docid from property search.
– soundar
Oct 29 '18 at 8:16
dont have IDM documentation. if there please share link. thanks for the help.
– soundar
Oct 29 '18 at 8:23
It sounds like you need to write a "search" query. You can find the IDM documentation and sample code here: www-01.ibm.com/support/docview.wss?uid=swg27009996. Note that the documentation and examples pretty much assume VB6. You can certainly use C#, but you'll need to translate.
– paulsm4
Oct 29 '18 at 8:25
Thank you so much. i will look into the documentation.
– soundar
Oct 29 '18 at 8:35