• Kazi
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 10
    Questions
  • 2
    Replies

Hi all,

 

I have a custom objects named Editfile__c. When I upload a file it store in the notes & attachments section. Now I can upload upto 5MB. How can I upload file more than 5MB size

 

Plz help me........................

  • July 16, 2010
  • Like
  • 0

Hi all,

 

I have a custom objects named Editfile__c. When I upload a file it store in the notes & attachments section. Now I can upload upto 5MB. How can I upload file more than 5MB size

 

Plz help me........................

  • July 16, 2010
  • Like
  • 0

Hi all,

 

I have a custom objects named Editfile__c. When I upload a file it store in the notes & attachments section. Now I can upload upto 5MB. How can I upload file more than 5MB size

 

Plz help me........................

 

  • July 16, 2010
  • Like
  • 0

Hi everyone,

 

I am new to visualforce development environment. I have created a custom object which is use to upload any file. The uploaded  fileis store in "My Personal Documents" folder. Now I want to know :

 

Is there any way to read a .doc/.docx file from "My Personal Documents"  Folder and store the content of that file in a local variable ?.

 

Plz help me.....................

  • June 29, 2010
  • Like
  • 0

Hi everyone,

 

I am new to visualforce development environment. I have created a custom object which is use to upload any file. The uploaded  file is store in "My Personal Documents" folder. Now I want to know :

 

Is there any way to read a .doc/.docx file from "My Personal Documents"  Folder and store the content of that file in a local variable ?.

 

Plz help me.....................

  • June 29, 2010
  • Like
  • 0

Hi all,

 

I am new to visualforce development platfrom.

 

How can I upload a file in a custom defined folder?

 

Plz help me..............

 

 

  • June 22, 2010
  • Like
  • 0

Hi all,

 

I am new to visualforce development platfrom.

 

How can I upload a file in a custom defined folder?

 

Plz help me..............

 

 

  • June 22, 2010
  • Like
  • 0

Hi all,

 

I am new to visualforce development platfrom. I am stuck to doing one of my task. Plz help me

 

  1. How can I show the list of the file one of my custom page
  2. I want to select one file and read the file & hold the body content in a local variable

Plz  anyone help me..............

  • June 22, 2010
  • Like
  • 0

Hi all,

 

I am new to visualforce development platfrom. I am stuck to doing one of my task. Plz help me

 

  1. How can I show the list of the file one of my custom page
  2. I want to select one file and read the file & hold the body content in a local variable

Plz  anyone help me..............

  • June 22, 2010
  • Like
  • 0

 

Hi all,

 

I am new to visualforce development platfrom. I am stuck to doing one of my task. Plz help me

 

  1. How can I show the list of the file one of my custom page
  2. I want to select one file and read the file & hold the body content in a local variable

Plz  anyone help me..............

  • June 22, 2010
  • Like
  • 0

Hi all,

 

I have a custom objects named Editfile__c. When I upload a file it store in the notes & attachments section. Now I can upload upto 5MB. How can I upload file more than 5MB size

 

Plz help me........................

  • July 16, 2010
  • Like
  • 0

Hello All,

 

I need to send an uploaded document to a third party webservice. I can send text files fine. But all other file types are getting corrupted.

I have been struggling for the past 3 weeks with this problem . I ahve tried several variations like Content-Transfer-Encoding : base64 and sending the

EncodingUtil.base64Encode(blob) with no luck. Is there some thing I am missing. I need to be ableto send pdfs, images, doc files.

Please help.

 

Thanks

Gopi

String response; String boundary = 'AaBbCcX30'; String m_URL = 'some url'; String content = 'Content:\r\n--' + boundary + '\r\nContent-Disposition:form-data;name="' + p_fileName + '";filename="'+p_fileName+'"\r\n'; content +='Content-Type:' + p_fileContentType + ',charset=ISO-8859-1,*,utf-8\r\n'; content +='Content-Transfer-Encoding: binary\r\n\r\n'; content += p_fileBlob +'\r\n\r\n'; content += '--'+boundary+'--\r\n'; System.debug(p_fileBlob.size()+'content ' + content); Http m_http = new Http(); HttpRequest req = new HttpRequest(); req.setEndpoint(m_URL); req.setHeader('Content-Type','multipart/form-data;boundary='+boundary); req.setMethod('POST'); req.setBody(content); HttpResponse m_httpResp = null; m_httpResp = m_http.send(req); m_strHttpResp = m_httpResp.getBody();

 

  • March 09, 2009
  • Like
  • 0