Jabber file transfert from lan trouble

Hi,
My mac is on a lan, I can receive incoming jabber file transferts but cannot send files.
this is the xml query sent by ichat :
<iq from='[email protected]/mac' to='[email protected]/gajim' type='set' id='iChat_78811B90'>
<query xmlns='http://jabber.org/protocol/bytestreams' sid='sid_8F5B6449'>
<streamhost jid='[email protected]/mac' host='192.168.0.1' port='57637'/>
</query>
</iq>
As you can see ichat send the lan IP, not the public IP.
Also, the jabber server user (ejabberd 2.0.3) provide a file transfert proxy, but ichat seems to ignore it.
Is there a way to use file tranferts proxies for outgoing jabber file transferts in ichat ?
thx

I would ask here
http://www.ejabberd.im/
11:34 PM Thursday; April 2, 2009

Similar Messages

  • How can I read text files from LAN if I only know the hostname?

    I'm new in Java Developing, and dont know the written classes yet. I need help, how to do the following steps?
    <p>1. How can I read text files from LAN if I only know the hostname, or IP address?
    <p>2. How to read lines from text files without read all lines from the beginning of file, just seek to a position.
    (ex. how can I read the 120th line?)
    <p>Please help!
    <p>sorry for the bad english

    I'm new in Java Developing, and dont know the written classes yet. I need help, how to do the following steps?
    1. How can I read text files from LAN if I only know the hostname, or IP address?You need to know the URL of the file. You need to know the hostname, port, protocl and relative path.
    The hostname is server, not file.
    2. How to read lines from text files without read all lines from the beginning of file, just seek to a position.Use the seek() to get to a random byte.
    (ex. how can I read the 120th line?)The only way to find the 120th line is to read the first 120 lines. You can use other file formats to find the 120th line without reading the whole file but to need to be able to detremine where the 120th line is

  • Photoshop CS5 - win 7 - 8.1 64 bit - Lag to open files from lan

    Hello,
    we have got a problem with photoshop. If we open a file from lan, photoshop wait some seconds before open it, even with very little pics. It has a lag of some seconds before start to open it. With local files is the same.
    If I erase the recent files list and then I try to open a local file, it opens immediately. If I open a lan file and then I open a local file, the problem returns.
    It looks like a recent file list problem. I tried to set it to 0 but nothing changes, because it save the recent list anyway but simply it doesn't show it.
    I tried to disable the suitcase extensis plug-in (the only plug-in we have added), I tried to disable kaspersky antivirus, but nothing.
    We have this problem with all 3 workstations, 2 with win 7 64bit and one with win 8.1 64 bit. With the older station the lag is bigger (5-10 seconds for every image). With the newest station 1 sec.
    Is there any solution?
    Is there anything to do for stop the recent file list to work?
    Thanks a lot
    Nicola

    Are they on the same router are there different OS,  adapter speeds file system involved.  On my home network where my windows machine are connected to the same router with 1GHz ethernet a 20MB CR2 file takes only a second or two open in ACR.

  • How to download a file version from office 365 using csom

    I need to download an older file version from office 365 and get the data into a byte array. I have no trouble downloading the latest version with File.OpenBinaryStream() and I have no trouble loading the previous file versions with File.Versions. But now
    I need to actually download an older version of the file and it seems the only way is to use File.OpenBinaryDirect. So I am creating a client context using my oAuth access token and providing the correct path, but I am getting a (401) Unauthorized
    error. Looking with Fiddler I can see that the call to OpenBinaryDirect is somehow trying to post to my file URL and the server is responding with 401.
    context = TokenHelper.GetClientContextWithAccessToken(SPHostUrl, AccessToken);
    FileInformation info = File.OpenBinaryDirect(context, "/" + _fileVersion.Url);  //throws 401
    //leading slash required otherwise ArgumentOutOfRangeException
    I have to be able to access the older file versions with my c# code -- I don't have a viable app without that ability -- any help urgently needed and greatly appreciated!

    Thank you SO much (Can't wait for the next release)!
    For anyone else who lands here, here's the code I ended up using:
    // VersionAccessUser and VersionAccessPassword are stored in web.config
    // web.Url is loaded via the clientContext
    // myVersion is the FileVersion I got from the file's Versions.GetById() method
    // probably a lot of ways to get hostUrl, it just needs to be https://yourdomain.sharepoint.com/
    // - I'm running my app from a subweb
    // I had trouble following the links to get the full MsOnlineClaimsHelper code
    // (the one on msdn.com was missing RequestBodyWriter, WSTrustFeb2005ContractClient,
    // and IWSTrustFeb2005Contract
    // so I've included the code I used here.
    string myVersionFullUrl = string.Format("{0}/{1}", web.Url, myVersion.Url);
    string userName = WebConfigurationManager.AppSettings.Get("VersionAccessUser");
    string strPassword = WebConfigurationManager.AppSettings.Get("VersionAccessPassword");
    string hostUrl = Regex.Replace(web.Url, "([^/]+//[^/]+/).*", "$1");
    MsOnlineClaimsHelper claimsHelper = new MsOnlineClaimsHelper(hostUrl, userName, strPassword);
    var client = new WebClient();
    client.Headers["Accept"] = "/";
    client.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    client.Headers.Add(HttpRequestHeader.Cookie, claimsHelper.CookieContainer.GetCookieHeader(new Uri(hostUrl)));
    var document = client.DownloadString(myVersionFullUrl);
    // These classes are needed to download old versions of files (see: http://social.msdn.microsoft.com/Forums/en-US/7746d857-d351-49cc-b2f0-496663239e02/how-to-download-a-file-version-from-office-365-using-csom?forum=sharepointdevelopment)
    // I cobbled this file from http://social.technet.microsoft.com/Forums/msonline/en-US/4e304493-7ddd-4721-8f46-cb7875078f8b/problem-logging-in-to-office-365-sharepoint-online-from-webole-hosted-in-the-cloud?forum=onlineservicessharepoint
    // and http://fredericloud.com/2011/01/11/connecting-to-sharepoint-with-claims-authentication/
    using Microsoft.IdentityModel.Protocols.WSTrust;
    using Microsoft.SharePoint.Client;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Net;
    using System.Net.Security;
    using System.ServiceModel;
    using System.ServiceModel.Channels;
    using System.Text;
    using System.Web;
    using System.Xml;
    using System.Xml.Linq;
    namespace DPSiDoxAppWeb.Helpers
    /// <summary>
    /// Create a new contract to use for issue claims for the SharePoint requests
    /// </summary>
    [ServiceContract]
    public interface IWSTrustFeb2005Contract
    [OperationContract(ProtectionLevel = ProtectionLevel.EncryptAndSign,
    Action = "http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue",
    ReplyAction = "http://schemas.xmlsoap.org/ws/2005/02/trust/RSTR/Issue",
    AsyncPattern = true)]
    IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state);
    Message EndIssue(IAsyncResult asyncResult);
    /// <summary>
    /// Implement the client contract for the new type
    /// </summary>
    public class WSTrustFeb2005ContractClient : ClientBase<IWSTrustFeb2005Contract>, IWSTrustFeb2005Contract
    public WSTrustFeb2005ContractClient(Binding binding, EndpointAddress remoteAddress)
    : base(binding, remoteAddress)
    public IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state)
    return Channel.BeginIssue(request, callback, state);
    public Message EndIssue(IAsyncResult asyncResult)
    return Channel.EndIssue(asyncResult);
    /// <summary>
    /// Create a class that will serialize the token into the request
    /// </summary>
    class RequestBodyWriter : BodyWriter
    readonly WSTrustRequestSerializer _serializer;
    readonly RequestSecurityToken _rst;
    /// <summary>
    /// Constructs the Body Writer.
    /// </summary>
    /// <param name="serializer">Serializer to use for serializing the rst.</param>
    /// <param name="rst">The RequestSecurityToken object to be serialized to the outgoing Message.</param>
    public RequestBodyWriter(WSTrustRequestSerializer serializer, RequestSecurityToken rst)
    : base(false)
    if (serializer == null)
    throw new ArgumentNullException("serializer");
    _serializer = serializer;
    _rst = rst;
    /// <summary>
    /// Override of the base class method. Serializes the rst to the outgoing stream.
    /// </summary>
    /// <param name="writer">Writer to which the rst should be written.</param>
    protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
    _serializer.WriteXml(_rst, writer, new WSTrustSerializationContext());
    public class MsOnlineClaimsHelper
    #region Properties
    readonly string _username;
    readonly string _password;
    readonly bool _useRtfa;
    readonly Uri _host;
    CookieContainer _cachedCookieContainer = null;
    DateTime _expires = DateTime.MinValue;
    #endregion
    #region Constructors
    public MsOnlineClaimsHelper(string host, string username, string password)
    : this(new Uri(host), username, password)
    public MsOnlineClaimsHelper(Uri host, string username, string password)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = true;
    public MsOnlineClaimsHelper(Uri host, string username, string password, bool useRtfa)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = useRtfa;
    #endregion
    #region Constants
    public const string office365STS = "https://login.microsoftonline.com/extSTS.srf";
    public const string office365Login = "https://login.microsoftonline.com/login.srf";
    public const string office365Metadata = "https://nexus.microsoftonline-p.com/federationmetadata/2007-06/federationmetadata.xml";
    public const string wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
    public const string wsu = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
    private const string userAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)";
    #endregion
    class MsoCookies
    public string FedAuth { get; set; }
    public string rtFa { get; set; }
    public DateTime Expires { get; set; }
    public Uri Host { get; set; }
    // Method used to add cookies to CSOM
    public void clientContext_ExecutingWebRequest(object sender, WebRequestEventArgs e)
    e.WebRequestExecutor.WebRequest.CookieContainer = getCookieContainer();
    //e.WebRequestExecutor.WebRequest.UserAgent = userAgent;
    // Creates or loads cached cookie container
    CookieContainer getCookieContainer()
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    // Get the SAML tokens from SPO STS (via MSO STS) using fed auth passive approach
    MsoCookies cookies = getSamlToken();
    if (cookies != null && !string.IsNullOrEmpty(cookies.FedAuth))
    // Create cookie collection with the SAML token
    _expires = cookies.Expires;
    CookieContainer cc = new CookieContainer();
    // Set the FedAuth cookie
    Cookie samlAuth = new Cookie("FedAuth", cookies.FedAuth)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(samlAuth);
    if (_useRtfa)
    // Set the rtFA (sign-out) cookie, added march 2011
    Cookie rtFa = new Cookie("rtFA", cookies.rtFa)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(rtFa);
    _cachedCookieContainer = cc;
    return cc;
    return null;
    return _cachedCookieContainer;
    public CookieContainer CookieContainer
    get
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    return getCookieContainer();
    return _cachedCookieContainer;
    private MsoCookies getSamlToken()
    MsoCookies ret = new MsoCookies();
    try
    var sharepointSite = new
    Wctx = office365Login,
    Wreply = _host.GetLeftPart(UriPartial.Authority) + "/_forms/default.aspx?wa=wsignin1.0"
    //get token from STS
    string stsResponse = getResponse(office365STS, sharepointSite.Wreply);
    // parse the token response
    XDocument doc = XDocument.Parse(stsResponse);
    // get the security token
    var crypt = from result in doc.Descendants()
    where result.Name == XName.Get("BinarySecurityToken", wsse)
    select result;
    // get the token expiration
    var expires = from result in doc.Descendants()
    where result.Name == XName.Get("Expires", wsu)
    select result;
    ret.Expires = Convert.ToDateTime(expires.First().Value);
    HttpWebRequest request = createRequest(sharepointSite.Wreply);
    byte[] data = Encoding.UTF8.GetBytes(crypt.FirstOrDefault().Value);
    using (Stream stream = request.GetRequestStream())
    stream.Write(data, 0, data.Length);
    stream.Close();
    using (HttpWebResponse webResponse = request.GetResponse() as HttpWebResponse)
    // Handle redirect, added may 2011 for P-subscriptions
    if (webResponse.StatusCode == HttpStatusCode.MovedPermanently)
    HttpWebRequest request2 = createRequest(webResponse.Headers["Location"]);
    using (Stream stream2 = request2.GetRequestStream())
    stream2.Write(data, 0, data.Length);
    stream2.Close();
    using (HttpWebResponse webResponse2 = request2.GetResponse() as HttpWebResponse)
    ret.FedAuth = webResponse2.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse2.Cookies["rtFa"].Value;
    ret.Host = request2.RequestUri;
    else
    ret.FedAuth = webResponse.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse.Cookies["rtFa"].Value;
    ret.Host = request.RequestUri;
    catch (Exception ex)
    return null;
    return ret;
    static HttpWebRequest createRequest(string url)
    HttpWebRequest request = HttpWebRequest.Create(url) as HttpWebRequest;
    request.Method = "POST";
    request.ContentType = "application/x-www-form-urlencoded";
    request.CookieContainer = new CookieContainer();
    request.AllowAutoRedirect = false; // Do NOT automatically redirect
    request.UserAgent = userAgent;
    return request;
    private string getResponse(string stsUrl, string realm)
    RequestSecurityToken rst = new RequestSecurityToken
    RequestType = WSTrustFeb2005Constants.RequestTypes.Issue,
    AppliesTo = new EndpointAddress(realm),
    KeyType = WSTrustFeb2005Constants.KeyTypes.Bearer,
    TokenType = Microsoft.IdentityModel.Tokens.SecurityTokenTypes.Saml11TokenProfile11
    WSTrustFeb2005RequestSerializer trustSerializer = new WSTrustFeb2005RequestSerializer();
    WSHttpBinding binding = new WSHttpBinding();
    binding.Security.Mode = SecurityMode.TransportWithMessageCredential;
    binding.Security.Message.ClientCredentialType = MessageCredentialType.UserName;
    binding.Security.Message.EstablishSecurityContext = false;
    binding.Security.Message.NegotiateServiceCredential = false;
    binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
    EndpointAddress address = new EndpointAddress(stsUrl);
    using (WSTrustFeb2005ContractClient trustClient = new WSTrustFeb2005ContractClient(binding, address))
    trustClient.ClientCredentials.UserName.UserName = _username;
    trustClient.ClientCredentials.UserName.Password = _password;
    Message response = trustClient.EndIssue(
    trustClient.BeginIssue(
    Message.CreateMessage(
    MessageVersion.Default,
    WSTrustFeb2005Constants.Actions.Issue,
    new RequestBodyWriter(trustSerializer, rst)
    null,
    null));
    trustClient.Close();
    using (XmlDictionaryReader reader = response.GetReaderAtBodyContents())
    return reader.ReadOuterXml();

  • How do I move a file directly from the desktop to a folder in OX 10?

    I am new to Mac and the Mountain Lion software.  Having worked exclusively with PC operating systems, I am familiar with how to work with files in Windows, but am having trouble doing similar actions in OX 10.  How do I move a file directly from the desktop to a folder in OX?  Although this answer is likely in a video tutorioal (somewhere), I do not have the time to sit an arbitrarily watch generic OS videos that give a broad brush overview, without answering specific queries.  Any help out there?

    You might fun http://www.apple.com/support/macbasics/ to be of help to get used to doing things the Mac way.
    Allan

  • HOW-TO Distinguish between file exported from Datapump and normal export

    How to distinguish between the dmp file export from the data pump utility and the export utility in Oracle 10g and 11g .
    Thanks,
    SS

    Like Werner suggested, it's never hurt to try anyway.
    use imp with SHOW=Y, if it works then Original otherwise Data pump.
    Once you determined one file, there's good chance that the rest are same. I don't think previous DBA will go through the trouble by mixing data pump and traditional exp/imp.

  • Airdrop: Messages "The Apple ID Certificate of the McBook is not valid. File transfert canceled."

    Airdrop:
    As I trued to transfert a file from my Imac to my McBook Pro both on Mavericks latest version I got the following message on the Imac : "The Apple ID Certificate of the McBook is not valid. File transfert canceled."
    How do I get around this? 
    Thank you for your help
    Kind regards,

    i had airdrop issues...
    when sending to another machine from my own, the other machine instantly denied the request
    when the other machine tried sending to me, it failed with a warning "apple id certificate is invalid"
    after calling apple:
    go to the apple>preferences>iCloud
    log out
    log in
    do this on BOTH machines
    fixed

  • Time Machine fails to backup files migrated from Windows

    Hi there - I have a really annoying issue whereby I have a machine with a TC on the LAN which fails to backup.
    The scenario is thus - Mac Snow Leopard server which has files migrated from an old Windows server to one specific disk. This is where all the data resides so this is the only volume I actually really need to back up.
    However I keep getting the message that Time machine could not write to the device after a certain period of time with the classically unhelpful:-
    Console log mumbles on about what I suspect is the path/length of path or filenames which I understand. Question is - how do I get round this? There are thousands of files in here so I cannot ask the users to go around renaming the files and shortening the folder names (to be honest it doesnt seem that they are too long to me in any case).
    The files are shared using both AFP and SMB as a standard Sharepoint and the users on both Mac and PC have no problems at all accessing them, hence my confusion as to why TM has a problem with the file/folder names.
    Chocolate biscuit (or equivalent for those on detox) for anyone who can throw me a bone here.
    Cheers and thanks in advance,
    Si

    Not really sure if this is what you mean about Outlook database, but the correct answer may be in this thread's last post:
    https://discussions.apple.com/thread/3356959?start=0&tstart=0
    Basically the same information you can find here:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macoutlook/help-my-ma in-identity-hosed-restore-from-time/a9992719-3ae0-479d-bf0a-7c8279653ffa
    "The first time that you open Outlook after restoring a Time Machine backup, Outlook rebuilds its database to accommodate the restored items. If you have a very large database, rebuilding the database might take a long time."
    Hope this helps.

  • Skyp file transfer on LAN slow for windows and Mac...

    Hi,
    We are extensively use skype and since we upgrade skype to 6.18 and above ... file transfer on LAN is super slow... to transfer file 200MB it took over 15 minutes but when i'm skype 6.16 it took about 45 seconds... can anyone lemme know to fix it or tweak it on both Mac and windows so i can speed up file transfer on LAN....

    I've been experiencing the same issue. I keep having to downgrade to 6.16 and cancel automatic updates for this same reason. It's really frustrating as my work involves sendig and receiving files via Skype. Versions 6.18 and up not only are too slow (a large file, for example, that would normally take 18 hours or less to transfer takes 1 week! on 6.18 and higher) but also slow down my whole connection while surfing. 6.16 allows me to transfer at a fast speed and I can watch videos and have a 256k livestream radio going, be on a skype call and still have enough speed to download from the Internet without slowing anything down. This is completely unacceptable. I see that no one has replied to this and nothing has been done to fix this issue. I wonder if Skype even browses through these. 

  • I'd like Time Machine to backup my personal account's files separately from my guest account's files. Both have big files.  What's the best way to do this?  Should I connect 2 external HD to my new iMac, one for each account?

    I'd like Time Machine to backup my personal account's files separately from my guest account's files. Both have big files.  What's the best way to do this?  Should I connect 2 external HD to my new iMac, one for each account?

    NeuroBrain wrote:
    Since my new external hard drive is have a lot of space, I'm thinking of splitting it for Time Machine and external storage.
    This is a common mistake and I highly advise against it.
    1: TimeMachine saves states of changes and thus requires more room on the TM drive than the boot drive it's backing up.
    2: Something happens to the TM drive, loss, theft, dropped, power surge, etc., you lose both backups.
    3: The storage drive might become a portable need, with it being on the TM drive, now your increasing the risk to the TM backup that something could happen to it along with the storage drive, due to increased movement.
    Seriously, have a read,
    Most commonly used backup methods
    it's ASC User Tip that saves us regulars all the trouble of having to repeat ourselves over and over again in the posts, because we tend to forget things too, or not here sometimes etc.
    "Plan for the worst and the good will take care of itself" - Donald Trump

  • Windows startup problem while connected from LAN.

    Hi,
    Every time I start laptop which is connected from LAN, it stuck on Applying computer settings... screen. Then i have to disconnect laptop from LAN and restart it, after that it starts OK.
    Regards
    arun av

    Hi arun av,
    Have you checked Bulent's sugegstion? Are you using local user profile or roaming user file? When you disconnect LAN, do you have a WLAN avaliable at that time? Try reinstall the driver for youe LAN network adapter
    Or maybe related to this policy, when there's something wrong with the LAN, you're stuck on the startup process.
    Computer Configuration\Administrative Templates\System\Logon\  Always wait for the network at computer startup and logon
    Regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Cannot open MS Office files directly from network

    Hi all,
    I'm having trouble opening Microsoft Office files off of a network drive. 
    When opened, the application jumps straight into the template page (attached screenshot).
    I can copy files onto my local machine and open them no problem, however if I have an existing file open (from the local machine) and subsequently try to open a network file, the local file is closed and the template page replaces it. 
    The same symptoms occur when attempting a "Save As" to the network.
    This topic first appeared in the Spiceworks Community

    I've tried replacing the office plugin file NPOFF12.DLL from a working system to the bad system, and it didnt help. I got that by doing typing about:plugins in the address bar. This person can open PDF documents, it's just Office files that dont open. I get no prompt to do anything. I have seen threads about headers on the webpages, but I'm not sure if its applicable. I tried from OWA and it does the same thing; nothing.

  • Issues modifying files brought from FAT32 & NTFS drives.

    I recently moved from PC, I had an external HD that was formated into NTFS.  In order to get my data moved around I've taken alot of files off the NTFS drive onto my Vista PC, then reformated that drive as FAT32, back onto the drive, then from the FAT32 drive to my Mac.  Now if I try to rename the folders, or the contents of those folders, I get the dreaded "BLOOP".  If I try to move them, they insist on copying rather than cutting. 
    I've checked the permissions on the folders & files; I have read & write access.
    I am in an admin user. 
    I've run repair disk permissions & repair disk just for good measure. 
    I really think its got to have something to do with them coming from the NTFS and/or FAT32 drives.  Only files coming from those drives seem to be effected.   Anyone got any ideas?

    No trouble in those files or in deleting them.
    Watch out for file names. Things that are valid for HFS+ are not on NTFS, and caused mayham to Vista.
    What I did was just search for and delete all those files you are asking about, and more, like any of the .DS also.
    The files are created to store folder and file information.
    What would be better would be to use a program when copying, to skip copying hidden and invisible files. And putting "." in front of a file just makes it hidden in OS X.
    You can just search and delete. I had to delete tens of thousands. And I now keep all my files on NTFS that I can. I also bought NTFS driver a year ago, having tried MacFUSE also, Paragon-Software cost $29 at the time and performed better. Haven't tried the new MacFUSE 2.x that just came out.

  • APEX 4.0: error while opening a XLS file downloaded from interactive report

    Hi,
    I'm getting below error while opening a XLS file downloaded from an interactive report (APEX 4.0).
    "The file you trying to open, 'customer_2.xls', is in a different format than specified by the file extension.
    Verify that the is not corrupted and is from a trusted source before opening file. Do you want to open file."
    Yes No Help
    May be this one Apex 4.0 issue.
    please help me.
    Thanks
    Mukesh

    Hi,
    is the next part of the code correct.
    What i mean is packing of the attachment, finding out the size of pdf file and doc type as PDF.
    You can also try below link..
    Link: [http://wiki.sdn.sap.com/wiki/display/Snippets/SENDALVGRIDASPDFATTACHMENTTOSAPINBOXUSINGCLASSES]
    Hope this helps.
    Regards,
    -Sandeep

  • Unable to see the logical path and file created in FILE tcode from AL11 and unable to upload the file to this path from front end

    Hi Experts,
    I have created the logical path and filename in FILE tcode.I am trying to upload the pdf file to application server by using this path.But
    I am getting message like "Unable to open the file".Even I cannot find the this path in AL11 tcode.Kindly anyone advise how to upload pdf file using
    custom path and file created from FILE tcode.
    Thanks & Regards,
    Anusha.

    Hi Anusha,
    Please give as below.
    I forget to say you cannot open the PDF in AL11 and for that you need some configuration, i think it can be done using content server,not sure completely please wait for some more suggestions.
    Regards,
    Pavan

Maybe you are looking for

  • Just created a video -  But can't see it - Tracks appear unchecked !

    Help please ! Just put a few .mov files together in Quick Time Pro Version 7 downloaded a couple of days ago. (Save as one file not saved to collect from separate files). Looked good. Saved it. Then went to view again. Opened file - just get a strip

  • How to install sqlserver iso image file

    how to install iso file ?

  • IBot Chaining in OBIEE 10g Delivers

    Hello Experts, I'm trying to utilize Delivers/iBot Scheduler to create the following scenario: I have 5 iBots and I want to create an 'iBot Chain' that starts another iBot once the original iBot has finished e.g. 1) iBot 1 starts at 10:00AM, finishes

  • Is there an online Java language reference?

    Hi, Im looking for a reference that gives textual descriptions of the Java language. The only ones Ive found only have the syntax of the statements/classes with return values and arguments, not a description of what the class/method/variables ACTUALL

  • Help with some simple coding

    Hello I am very new to Java and am currently studying a course in the language. I am working through a tutorial at the moment and a question has been asked and I am struggling a bit I have been given the code to a program that creates a window with a