Right now i am uploading file in public folder..

This is my setting ...

This code is working fine ...

Class ClientDocument < NdsiActiveRecord

  has_attachment :storage => :file_system,
    :max_size => 20.megabytes

  def self.upload_client_document(params)
    client_document = self.create! :uploaded_data =>
params[:Filedata],:client_id => params[:client_id],:document_name =>
self.default_document_name,:document_description =>
self.default_description_name
    self.rename_document_name(params,client_document)
  end

end

class ClientDocumentsController < ApplicationController

def upload_document
    ClientDocument.upload_client_document(params)
end

Now i want to upload my files to specific url like ..

'http://demo.test1.com/v12451/search.aspx?username=test1&password=test2'

how may i do this with attachment_fu ??

And help or idea ??
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to