How can i send a big file as pararameter of any method in a Web Service???

Hello,
i have a problem,,,,, i want to send a file of 2mb as parameter of a web service method.
When i send this file as a vector of bytes i have the error out of memory...
If the file is 200kb or smaller works fine....
How can i send a big file as pararameter of any method in a Web Service???
thanks in advance and excuse me for my bad english

you can think about streams.
in our case, what we did is, we will place a file in a common ftp server and return the url to the client.
regards,
mukunt

Similar Messages

  • How can i send a PDF file to my i phone and be able to read it

    How can i send a PDF file to my i phone and be able to read it

    Use the free Adobe Reader for iPhone -> https://itunes.apple.com/us/app/adobe-reader/id469337564?mt=8.
    Clinton

  • How can I send a Numbers file to someone who has excel

    how can I send a Numbers file to someone who has excel

    Save/Export the file as an excel worksheet.

  • How can i send PGP encrypted file from PI to the receiver

    Hi experts,
                        I am unable to send the  PGP encrypted file from PI to the receiver. where the Clients sends the file using PGP encryption,
    But i am trying to send the same with PI. But i am not able to send the same can you please help me out to get the same incorporated using PI 7.1
    and sends to the receiver ( the rceiver would be FTP ).
    Regards,
    Amruth

    hi,
    You can write an adapter module to encypt your payload before sending to Reciever:
    /people/dijesh.tanna/blog/2008/09/15/sap-pi-integrating-macafee-e-business-server-with-sap-pi-70-for-pgp-encryptiondecryption
    http://www.bouncycastle.org/documentation.html
    http://www.cryptix.org/
    http://aedaptive.com/index.php/solutions/pgp-for-sap-netweaver
    http://www.pgpi.org/doc/pgpintro/
    PGP encryption: Do we need to write adapter module?
    If you are getting PGP file from sender and want  to send this file to target without any mapping transformation you can use this blog:
    /people/william.li/blog/2006/09/08/how-to-send-any-data-even-binary-through-xi-without-using-the-integration-repository
    Thanks.

  • How can i send an email file from my ipad to my pc via ubs connection

    also how can i get day/date/ time displayed on my banner line

    The time should already be shown on the status bar, but you can't add the day and/or date to it - if you would like to have them then you coul leave feedback for Apple : http://www.apple.com/feedback/ipad.html
    If you want to copy an attachment from an email then you can't do that directly from the Mail app. If the email is still on your provider's server then you should be able to read the email on your provider's site via a browser on your computer and save it from there directly on your computer. Otherwise you will need to copy the file from the Mail app to another app on your iPad via the 'open in' function. Do you have an app on your iPad that supports the type of file that you want to copy ? How you then copy the file to your computer will depend upon what the app that you copy it to supports - different apps have different ways of copying their content to/from a computer e.g. via the file sharing section at the bottom of the device's apps tab when connected to iTunes, via your wifi network, dropbox etc

  • How can I send a PDF file via my yahoo or google email programs?

    I just downloaded some photos from a friend's camera, & I want to send copies via email. I created a PDF file, but can't figure out how to email the file out (it only offers to send via Windows Mail-which I don't have). Do I need to create a different kind of file for the pix, or do I just need to send one at a time?
    == This happened ==
    Not sure how often
    == I tried to attach the PDF file to an email to send via yahoo

    Use the free Adobe Reader for iPhone -> https://itunes.apple.com/us/app/adobe-reader/id469337564?mt=8.
    Clinton

  • How can I send an audio file via mms that isn't a MEMO?

    Can someone please help? Am i missing something here? i have an Iphone 4 and I cannot find how to do this....
    Any help greatly appreciated, thanks.

    The only audio files that can be sent by MMS using an iPhone are those created by the voice memo app, unless there is an app in the app store that provides this functionality.

  • How can I send a PDF file to my iBooks?

    I want to send or copy a PDF file from my acrobat.com cloud to my iBooks account so I can view it from my iPad.
    Thanks for anyone's help!

    Thank you, Michael:
    I followed your directions, but after I got the email with the link, I cannot find an option to open it in iBooks. Can you please be more specific on the steps or where I find that option?
    Elliot
    [email protected]

  • How can you get a big File to 100MB??

    Is it possible to get a FCP film that is about 11Gb to 100mb?? and keep it
    in 640 by 480.
    I tried the quicktime conversion but it brought it to only 150 something one
    more try made it less but can't get it under 100mb.
    I tried Imovie and it got much smaller and then sent to back to Fcp and converted again but file didnt go under that mark again.
    I have to stay within 640 by 480, is making
    it even smaller the ONLY way to get it 100mb??
    If am missing a trick or something or a BETTER SIZE to make
    it 100mb or less, let me know please.
    Thanks.
    Message was edited by: trihp
    Message was edited by: trihp

    So you need a format such as MPEG4.
    Use one of the presets in Compressor for this as Shane suggests.
    Look in the Inspector. There is a row of 6 buttons. The first one shows a summary of the current settings, including the estimated size of the resulting file.
    Next one across has the bit rate controls. raising or lowering the bit rate will affect the size of the end product -click back to the first button to see the MB value has changed.
    Further along, you will find other controls to set pixel dimensions and other cool stuff.

  • How can I send a zip file from ipad to laptop via bluetooth

    My laptop wont connect to the internet so, i want to send it files via bluetooth from my ipad. The files are zip files

    This is not possible with the bluetooth that iPad has.

  • How can I access the Server file system without using any signed applet?

    Is it possible for me to run an applet on the client machine such that the client can view my server file system and perform uploading and downloading of files through the applet without signing the applet?

    Add the following in your java.policy file, your plug in accesses.
    grant {
    permission java.permission.AllPermission;

  • How can i send xml file with a http servlet request

    Hi
    Please tell me how can I send a xml file into http servlet request.
    I have a servlet(action) java file.From this servlet I have generate a xml file. Now I need to send that xml file to another servlet with http servlet request object.
    Dave.

    When you say you have generated an XML file what do you mean?
    Is it a file stored on disk? Then pass the file path as a string to the servlet.
    Is it stored in memory as an object? The pass a reference to the object to the servlet.
    Or are you asking how to communicate between servlets?
    Look in the JavaDocs for the RequestDispatcher class. You can use this class to forward the request to another servlet. Data can be passes using the RequestDispatcher by storing it as attributes using the request getAttribute and setAttribute methods. Also described in the JavaDOcs.
    http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/RequestDispatcher.html

  • How can I transfer a big .pdf file e.g. 9 MB from my Macintosh Performa 5200 and its OS 8.1 to an USB-flash drive?

    How can I transfer a big .pdf file e.g. 9 MB from my Macintosh Performa 5200 and its OS 8.1 to an USB flash drive? E.g. is there any adapter available in order to connect the SCSI with USB? Or is it better to use a compression software and transfer it to 10 3,5" floppy discs?
    Thank you
    Emanuel

    Hello Emanuel,
    The Performa 5200CD did not have built-in Ethernet as standard, so unless an Ethernet card (or an external SCSI or LocalTalk-to-Ethernet adapter) has been added, that method would not be available in this case.
    Your suggestion involving compression software (such as an appropriate version of StuffIt) with segmenting capabilities could of course be one alternative.
    If you have an internal or external modem for the Performa, another way could be to use the telephone lines for transfers. A communications program would have to be used on both sides (for example, ZTerm or the communications section of ClarisWorks on the Performa).
    It is even possible to connect two serial modems directly. A simple line simulator (in principle, a 9 V battery in series with a 680 ohm resistor in one of the leads in an RJ-11 to RJ-11 cable), which can be built in a couple of minutes, is sometimes needed. Do NOT use a line simulator for units connected to the public telephone network.
    Yet another solution could be a null-modem transfer to a PC with a (DB-9M) serial port. This would require a null-modem cable (can be designed by combining a Macintosh modem cable (MiniDIN-8M to DB-25M) with a normal PC-style (DB-25F to DB-9F) null-modem cable . HyperTerminal or another communications program can be used on the PC.
    What do you have to work with (other computers/models/platforms)? Is this a one-time transfer, or do you plan to send additional files later? Is the intention to continue to use the Performa 5200?
    Jan

  • How can I send a jpg picture file to someone so that they can download it and use it?  I can send a picture in an Email, but they can't open it

    How can I send a jpg of a photograph to someone so that they can download the file and use it to put into an article?  I can send it in an Email, but there doesn't seem to be a way for the recipient to extract the jpg from the Email

    If the person is using a pc, make sure the picture has the suffix .jpg 
    Example:  your picture.jpg

  • How can I send multiple pictures to the Kodak link (under file & then order prints)? if the photos are not sequential can it be done?

    how can I send multiple pictures to the Kodak link (under file & then order prints)?  if the photos are not sequential can it be done?

    Does the order matter here?Because the photos will be sent for printing. If there is any other reason, can you please cite example.

Maybe you are looking for

  • Sort order a mess

    Sort order in my iTunes library is a mess and it doesn't seem possible to change that. At least not in an obvious manner. I took care to number the names of the songs within an album: 01 first song, 02 second song, etc. Expecting that they will be so

  • Can anyone identify screen problem that freezes (pic)

    Can anyone identify my screen problem that freezes? Alternately I get this image all over screen (see pic) or just a few horizontal dotted lines. I have to force reboot. Any thoughts appreciated. iMac27, 3.5Ghz i7, 32 Gb ram, 3T drive. Mavericks 10.9

  • Help required in picking for OBD

    Hello Experts, In Outbound Delivery,  Overall WM Status is shown as "No WM Transfer Order required" in the "Picking"  Tab. Hence I am not allowed to create TO for this Outbound delivery Can somebody breifly explain me the settings required in my case

  • 4.4Kitkat Wishlist for new update

    I think some of Z1 users experience 4.4 and i would like to ask them to put your wishes for a better change for the next update. I now sony is listening to there consumers. I would like to see more settings to change like for messaging, screen bright

  • How to activate and register inspite message saying not connected to internet.

    Please help. Is anyone available?