How to enter Compress PDF file as attachments in ms dynamics crm 2011?
I am working for a client, and the client has a requirement to upload 6MB files in MS Dynamics CRM. Client having .pdf, .csv file to upload in Dynamics CRM. Now if we can compress these files before uploading to Dynamics CRM that will work fine.
I am trying to fix the requirement by using below code.
This is working and compressing file but when we are downloading the attachment at that moment we are able to see the message as pop up
We cannot open this file xxx.pdf file, because we found a problem
with its content.
if (entity.Attributes.Contains("documentbody"))
{
string bytes = entity.Attributes["documentbody"].ToString();
tracingService.Trace("CompressImagePlugin: {0}", "crossed try block first line " + bytes.Length);
byte Uncompressedtext = Convert.FromBase64String(bytes);
if (entity.Attributes.Contains("filename") && entity.Attributes["filename"] != null
&& (entity.Attributes["filename"].ToString()
.Contains(".pdf") || entity.Attributes["filename"].ToString()
.Contains(".docx")))
{
tracingService.Trace(entity.Attributes["filename"].ToString());
byte compress = CompressZip(Uncompressedtext);
string compressedData = Convert.ToBase64String(compress);
entity.Attributes["documentbody"] = compressedData;
}
}
Thanks
c# pdf dynamics-crm-2011
add a comment |
I am working for a client, and the client has a requirement to upload 6MB files in MS Dynamics CRM. Client having .pdf, .csv file to upload in Dynamics CRM. Now if we can compress these files before uploading to Dynamics CRM that will work fine.
I am trying to fix the requirement by using below code.
This is working and compressing file but when we are downloading the attachment at that moment we are able to see the message as pop up
We cannot open this file xxx.pdf file, because we found a problem
with its content.
if (entity.Attributes.Contains("documentbody"))
{
string bytes = entity.Attributes["documentbody"].ToString();
tracingService.Trace("CompressImagePlugin: {0}", "crossed try block first line " + bytes.Length);
byte Uncompressedtext = Convert.FromBase64String(bytes);
if (entity.Attributes.Contains("filename") && entity.Attributes["filename"] != null
&& (entity.Attributes["filename"].ToString()
.Contains(".pdf") || entity.Attributes["filename"].ToString()
.Contains(".docx")))
{
tracingService.Trace(entity.Attributes["filename"].ToString());
byte compress = CompressZip(Uncompressedtext);
string compressedData = Convert.ToBase64String(compress);
entity.Attributes["documentbody"] = compressedData;
}
}
Thanks
c# pdf dynamics-crm-2011
Hi I am using below given code but not getting attachment file in correct format.
– anand prakash shukla
Nov 13 '18 at 4:55
add a comment |
I am working for a client, and the client has a requirement to upload 6MB files in MS Dynamics CRM. Client having .pdf, .csv file to upload in Dynamics CRM. Now if we can compress these files before uploading to Dynamics CRM that will work fine.
I am trying to fix the requirement by using below code.
This is working and compressing file but when we are downloading the attachment at that moment we are able to see the message as pop up
We cannot open this file xxx.pdf file, because we found a problem
with its content.
if (entity.Attributes.Contains("documentbody"))
{
string bytes = entity.Attributes["documentbody"].ToString();
tracingService.Trace("CompressImagePlugin: {0}", "crossed try block first line " + bytes.Length);
byte Uncompressedtext = Convert.FromBase64String(bytes);
if (entity.Attributes.Contains("filename") && entity.Attributes["filename"] != null
&& (entity.Attributes["filename"].ToString()
.Contains(".pdf") || entity.Attributes["filename"].ToString()
.Contains(".docx")))
{
tracingService.Trace(entity.Attributes["filename"].ToString());
byte compress = CompressZip(Uncompressedtext);
string compressedData = Convert.ToBase64String(compress);
entity.Attributes["documentbody"] = compressedData;
}
}
Thanks
c# pdf dynamics-crm-2011
I am working for a client, and the client has a requirement to upload 6MB files in MS Dynamics CRM. Client having .pdf, .csv file to upload in Dynamics CRM. Now if we can compress these files before uploading to Dynamics CRM that will work fine.
I am trying to fix the requirement by using below code.
This is working and compressing file but when we are downloading the attachment at that moment we are able to see the message as pop up
We cannot open this file xxx.pdf file, because we found a problem
with its content.
if (entity.Attributes.Contains("documentbody"))
{
string bytes = entity.Attributes["documentbody"].ToString();
tracingService.Trace("CompressImagePlugin: {0}", "crossed try block first line " + bytes.Length);
byte Uncompressedtext = Convert.FromBase64String(bytes);
if (entity.Attributes.Contains("filename") && entity.Attributes["filename"] != null
&& (entity.Attributes["filename"].ToString()
.Contains(".pdf") || entity.Attributes["filename"].ToString()
.Contains(".docx")))
{
tracingService.Trace(entity.Attributes["filename"].ToString());
byte compress = CompressZip(Uncompressedtext);
string compressedData = Convert.ToBase64String(compress);
entity.Attributes["documentbody"] = compressedData;
}
}
Thanks
if (entity.Attributes.Contains("documentbody"))
{
string bytes = entity.Attributes["documentbody"].ToString();
tracingService.Trace("CompressImagePlugin: {0}", "crossed try block first line " + bytes.Length);
byte Uncompressedtext = Convert.FromBase64String(bytes);
if (entity.Attributes.Contains("filename") && entity.Attributes["filename"] != null
&& (entity.Attributes["filename"].ToString()
.Contains(".pdf") || entity.Attributes["filename"].ToString()
.Contains(".docx")))
{
tracingService.Trace(entity.Attributes["filename"].ToString());
byte compress = CompressZip(Uncompressedtext);
string compressedData = Convert.ToBase64String(compress);
entity.Attributes["documentbody"] = compressedData;
}
}
if (entity.Attributes.Contains("documentbody"))
{
string bytes = entity.Attributes["documentbody"].ToString();
tracingService.Trace("CompressImagePlugin: {0}", "crossed try block first line " + bytes.Length);
byte Uncompressedtext = Convert.FromBase64String(bytes);
if (entity.Attributes.Contains("filename") && entity.Attributes["filename"] != null
&& (entity.Attributes["filename"].ToString()
.Contains(".pdf") || entity.Attributes["filename"].ToString()
.Contains(".docx")))
{
tracingService.Trace(entity.Attributes["filename"].ToString());
byte compress = CompressZip(Uncompressedtext);
string compressedData = Convert.ToBase64String(compress);
entity.Attributes["documentbody"] = compressedData;
}
}
c# pdf dynamics-crm-2011
c# pdf dynamics-crm-2011
edited Nov 13 '18 at 5:30
Gihan Saranga Siriwardhana
606423
606423
asked Nov 13 '18 at 4:54
anand prakash shukla
14
14
Hi I am using below given code but not getting attachment file in correct format.
– anand prakash shukla
Nov 13 '18 at 4:55
add a comment |
Hi I am using below given code but not getting attachment file in correct format.
– anand prakash shukla
Nov 13 '18 at 4:55
Hi I am using below given code but not getting attachment file in correct format.
– anand prakash shukla
Nov 13 '18 at 4:55
Hi I am using below given code but not getting attachment file in correct format.
– anand prakash shukla
Nov 13 '18 at 4:55
add a comment |
1 Answer
1
active
oldest
votes
Since you are changing the file type from a PDF to a ZIP, you'll need to update the filename and the mimetype of the attachment as well. Something like this:
entity.Attributes["filename"] = entity.Attributes["filename"].ToString().Replace(".pdf", ".zip");
entity.Attributes["mimetype"] = "application/zip";
Now when the user clicks the attachment, they should be prompted to download a ZIP file that contains the PDF file.
add a comment |
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%2f53274048%2fhow-to-enter-compress-pdf-file-as-attachments-in-ms-dynamics-crm-2011%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Since you are changing the file type from a PDF to a ZIP, you'll need to update the filename and the mimetype of the attachment as well. Something like this:
entity.Attributes["filename"] = entity.Attributes["filename"].ToString().Replace(".pdf", ".zip");
entity.Attributes["mimetype"] = "application/zip";
Now when the user clicks the attachment, they should be prompted to download a ZIP file that contains the PDF file.
add a comment |
Since you are changing the file type from a PDF to a ZIP, you'll need to update the filename and the mimetype of the attachment as well. Something like this:
entity.Attributes["filename"] = entity.Attributes["filename"].ToString().Replace(".pdf", ".zip");
entity.Attributes["mimetype"] = "application/zip";
Now when the user clicks the attachment, they should be prompted to download a ZIP file that contains the PDF file.
add a comment |
Since you are changing the file type from a PDF to a ZIP, you'll need to update the filename and the mimetype of the attachment as well. Something like this:
entity.Attributes["filename"] = entity.Attributes["filename"].ToString().Replace(".pdf", ".zip");
entity.Attributes["mimetype"] = "application/zip";
Now when the user clicks the attachment, they should be prompted to download a ZIP file that contains the PDF file.
Since you are changing the file type from a PDF to a ZIP, you'll need to update the filename and the mimetype of the attachment as well. Something like this:
entity.Attributes["filename"] = entity.Attributes["filename"].ToString().Replace(".pdf", ".zip");
entity.Attributes["mimetype"] = "application/zip";
Now when the user clicks the attachment, they should be prompted to download a ZIP file that contains the PDF file.
answered Nov 13 '18 at 7:31
Josh Painter
3,7161523
3,7161523
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53274048%2fhow-to-enter-compress-pdf-file-as-attachments-in-ms-dynamics-crm-2011%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
Hi I am using below given code but not getting attachment file in correct format.
– anand prakash shukla
Nov 13 '18 at 4:55