Retrieve HTTP Protocol version from HttpServletResponse

Hi,
I need to set different headers in my HttpServletResponse using filter. Values of headers depend on version of HTTP - 1.0 or 1.1, thus I need to check the response's protocol version and add different headers to my response.
For now I can see using external tool that each my request is HTTP 1.0 and each response is HTTP 1.1. How can I retrieve protocol version from response in my Filter?
I cannot use protocol version from request, because as I said request and response have different versions of HTTP somehow.
So how can I retrieve protocol version from HttpServletResponse?
Thanks in advance.

You need to read the Sun J2EE tutorial on filters. One of the things you will find is that you can not directl access and change the ServletOutputStream of the response object. You need to write a wrapper around the response object that contains you own output stream. Then you can read the data in this stream, parse it looking for the HTTP protocol version and add your additional headers. You then write the new data to the original ServletOutputStream of the response object which gets sent to the browser.
I beleive there is an example of this in the tutorial. There are also examples available on the web and on this forum.

Similar Messages

  • Cookie version and HTTP Protocol

    What is the significane of version number obtained from javax.servlet.http.Cookie.getVersion().
    Can someone discuss about it?
    Can a Server implementing HTTP 1.0 or HTTP1.1 set cookie with version 0 or 1. How does the protocol version matters for cookie version.
    Also in the HTTP Header, 'connection=keep-alive' does it mean that connection will be http connection will be kept alive forever? When does the connection close? Any useful informationt/links is greatly appreciated.
    Btw, I started reading : http://www.ietf.org/rfc/rfc2109 for cookie/state management. and http://www.faqs.org/rfcs/rfc2068.html for HTTP protocol.
    But in the meantime, enlightened souls...help me understand HTTP protocol and cookie relateion and how thier version and attributes affect a connection.
    Kumar.

    You are right, I don't want read up RFC's unless I get paid for those hours ;).
    I want to know more about HTTP1.1 's header attribute 'Connection'.
    When the value is 'Keep-Alive', I understand that connection is kept open for subsequent requests (this differs from HTTP 1.0 behaviour), but I want to know when it will get closed?
    Another question is in Cookie's getMaxAge it returned -1, i.e persistent I guess it says write to file system. If then, when does it get deleted? How can I get the cookie's expiration time?
    Kumar.

  • Where and how can I know which version of http protocol that flash player used?

    If flash player uses web brower's http protocol?

    Is the EOB a PDF document?
    Firefox updates every 6 weeks and the current version is 31.0. Rolling back almost 6 months is not recommended for security reasons. If that's their best answer, I suggest we either figure out a workaround for getting the document, or you just use a different browser for their site.

  • Retrieve and send data to website using http protocol

    Hi, I wonder if anyone knows how to use java language to retrieve and send data to internet website using the http protocol.

    Take a look at this thread:
    http://forum.java.sun.com/thread.jsp?forum=31&thread=310300

  • 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();

  • Question about ssh login warning: Bad protocol version identification

    I set up ssh on my computer according to Tim Haigh's suggestions given here:
    http://discussions.apple.com/thread.jspa?threadID=1674968&tstart=0
    But when I log in from my iPhone, secure.log shows this:
    sshd[534]: Bad protocol version identification 'GET / HTTP/1.1' from 208.54.83.51
    Although I do log in successfully, how can I resolve this error?

    GET / HTTP/1.1
    Looks more like a Web browser handshake, than ssh.

  • Https protocol issue

    I have been getting the following error while trying to call a web service on the
    server with https protocol from a client class.
    [java] java.io.IOException: unable to find resource:https://localhost:7002/basic_javaclass/LoginUser?WSDL
    [java] at weblogic.webservice.tools.wsdlp.DefinitionFactory.getWsdlURL(
    DefinitionFactory.java:61)
    I could view all the web service methods and links to WSDL and client jar on a
    browser with the url, https://localhost:7002/basic_javaclass/LoginUser. I could
    even open WSDL file and download client jar file from the browser. I tried without
    success with the client jar file that was created using Weblogic ant task and
    then with the one, downloaded from the browser. There were no problems, when I
    used http protocol.
    Thanks in advance,

    I double checked with our operation team.
    It seems that we started having this issue when our clients were updated on java 1.6.31.
    The applet worked correctly before that version.
    So I'm not sure if only build the applet using the new build will solve the problem.
    Do you have any other suggestions?
    Thank you

  • The VM and host networking components failed to negotiate protocol version '5.0'

    I have been searching for a fix for this issue for sometime.
    The VM and host networking components failed to negotiate protocol version '5.0'
    and
    The VM and host networking components failed to negotiate protocol version '4.0'
    this error have been posting on the host server 2008 R2, with a hyper-V running server 2012 R2, which is the eval version vhd from Microsoft.
    I have tried the patch on the server 2008 R2 host and the nic delete and rescan option with varied reboots and such between each step of the process just to try every possible combination.
    The error persists. Are there any other suggested solutions for fixing this problem. Also the drivers have all been updated along with the system firmware.
    thanks,

    The hotfix states Server 2012 in the VM. You stated Server 2012 R2 in the VM.  MSFT is very precise in this language - Server 2012 != Server 2012 R2.
    Two distinctly different releases of Windows Server.
    In this case the N = the running release of Hyper-V.  In this case your Hyper-V Server at release version 2008 R2.
    The +2 = the current version of Windows.  In this case that is 2012 R2.  Two releases ahead of the version of the hypervisor you are running.
    I tossed in the link to Ben Armstrong's blog article as that is the ONLY (and still definitive statement) support statement regarding this configuration.  He posted that article at my request after many folks posting in this forum with strange behavior
    in this configuration.
    "supported" in this context means that if you call CSS, you will be told the following: 'yes, you have errors in the event log.  We will not fix that.  This is an unsupported configuration.  But that does not block the OS in the
    VM running.  If you want the errors to go away, we suggest you upgrade your Hyper-V Server to 2012 R2.  That configuration is supported.'
    That said, it can impact other functionality of the VM that rely on Integration Components in the VM and the Services of the hypervisor.  There is most likely small things that will not work.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • Create HTTP-based HttpBasicAuthentication from Wssp1.2-2007-Https-BasicAuth

    I am developing web service based on Wssp1.2-2007-Https-BasicAuth.xml policy.
    But this policy works under https protocol, I would like to save HttpBasicAuthentication, but work via http.
    Please advice how can I modify its body to create my custom policy.
    <?xml version="1.0"?>
    <wsp:Policy
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200512"
    >
    <sp:TransportBinding>
    <wsp:Policy>
    <sp:TransportToken>
    <wsp:Policy>
    <sp:HttpsToken>
    <wsp:Policy>
    <sp:HttpBasicAuthentication/>
    </wsp:Policy>
    </sp:HttpsToken>
    </wsp:Policy>
    </sp:TransportToken>
    <sp:AlgorithmSuite>
    <wsp:Policy>
    <sp:Basic256/>
    </wsp:Policy>
    </sp:AlgorithmSuite>
    <sp:Layout>
    <wsp:Policy>
    <sp:Lax/>
    </wsp:Policy>
    </sp:Layout>
    <sp:IncludeTimestamp/>
    </wsp:Policy>
    </sp:TransportBinding>
    </wsp:Policy>
    Thanks you!

    Hello,
    I think you have problem because you
    requested a certificate from your
    station.
    Look at this blog posts:
    http://marckean.wordpress.com/2012/07/19/installing-scom-2012-agent-on-a-non-domain-workgroup-windows-server-core-computer-using-the-command-line/
    http://blogs.technet.com/b/operationsmgr/archive/2009/09/10/step-by-step-for-using-certificates-to-communicate-between-agents-and-the-opsmgr-2007-server.aspx
    Regards.
    Ivan

  • Is HLS protocol version 6 is supported in IOS 6.x and IOS 7.x ?

    Is the latest HLS protocol version (version 6) is supported in IOS 6.x and IOS 7.x players ?
    If it is supported can you please provide a sample m3u8 with EXT-X-START tag ?

    I use native player and start play from web page in Safari
    Master playlist
    #EXTM3U
    #EXT-X-MEDIA:TYPE=SUBTITLES,GROUP-ID="WebVTT",NAME="Main",DEFAULT=NO,AUTOSELECT= NO,URI="http://172.18.0.81:8080/mediaserver/download/2/service.523/item.m3u8?playlist=we bvtt"
    #EXT-X-STREAM-INF:BANDWIDTH=16777216,SUBTITLES="WebVTT"
    http://172.18.0.81:8080/mediaserver/download/2/service.523/item.m3u8?playlist=da ta
    segmets playlist
    #EXTM3U
    #EXT-X-VERSION:4
    #EXT-X-TARGETDURATION:1
    #EXT-X-MEDIA-SEQUENCE:2280
    #EXT-X-ALLOW-CACHE:NO
    #EXTINF:1
    http://172.18.0.81:8080/mediaserver/download/2/service.523/item.ts?chunk=1
    #EXTINF:1
    http://172.18.0.81:8080/mediaserver/download/2/service.523/item.ts?chunk=2
    #EXTINF:1
    http://172.18.0.81:8080/mediaserver/download/2/service.523/item.ts?chunk=3

  • AJP vs Http protocol

    Hi
    We have a webservice on a 10.1.3 OAS. The webservice client is a c++ program that opens a socket connection to the OAS and sends a http header and a soap envelope. This works when our oc4j instance uses the http protocol but not the ajp protocol. Does anyone know why? Is there any reason we must use ajp instead of http?
    Thank you
    Navin

    In our case the webservice client is a c++ program that opens a socket connection. It first sends a http post and then pushes a soap envelope. The endpoint changed when I changed the protocol so with AJP it was 7777 and with Http it was 12504. I think in the latter case 12504 will change if we bounce the server or delete and recreate the oc4j instance. Is there a way to
    1) Use the http protocol but ensure that the port will be constant.
    2) Use AJP protocol and be able to access the webservice via telnet (Which is what the c++ program is doing from a conceptual standpoint).
    This is an example of how we telnet to our http webservice
    POST http://RestOfTheUrl HTTP/1.0
    Content-Type: text/xml; charset="UTF-8"
    Host: hostname
    SOAPAction: "http://tempuri.org/action/soapaction"
    Content-Length: 974
    After the header you can paste the soap envelope
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://tempuri.org/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
    <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <ns:sendMessageToOracle>
    </soap:Body>
    </soap:Envelope>

  • Wget with HTTPS protocol

    Hi,
    I am trying to download a file from Oracle site through "wget". I am getting connection time out error. The parameter http_proxy is also set. The file I am trying to download has URL with "https" protocol.
    wget no-check-certificate http-user=<username> http-passwd=<passwd> output-document=<zip file name> "HTTPS URL"
    Please advice. Is the above command correct to download the file through https protocol?
    Thanks

    Please see (Patch download automation for Sun products using wget [ID 1199543.1]) for the correct syntax.
    You may also review these docs/links.
    Using WGET to download My Oracle Support Patches [ID 980924.1]
    Retrieving Oracle patches with wget
    http://only4left.jpiwowar.com/2009/02/retrieving-oracle-patches-with-wget/
    Thanks,
    Hussein

  • Upload Error message: HTTPS protocol is not supported

    Hi,
       Whenever I do a quick par upload i'm getting an 'Operation failed' message to check sap-plugin.log.
       Log says
    Upload Error message: HTTPS protocol is not supported, please ensure this server is not using HTTPS. My webdynpro applications are getting deployed without any issues.
         How to resolve this?
    Thanks
    Sumathi

    Hi Sumathi,
    As there are often problems with the Quick PAR Upload reported, I would suggest to use the "normal" PAR upload from the icon tray (you have to activate the portal icons in the icon tray). That is almost that "quick" (one or two clicks more needed, we don't talk about more than a second) and - it works (it least it should, and at least it works in most cases even if the Quick PAR Upload fails).
    Hope it helps
    Detlev

  • Thanks this was very useful.. I have a brand new iphone 4s unlocked version from singapore and I am having the same problem constant network fluctuations, no service, call failed, invalid sim, sim failure, bars fluctuating from 5 - 3 - 2 - 1, no signal/ba

    I have a brand new iphone 4s unlocked version from singapore and I am experiencing constant network fluctuations on my iphone , no service, call failed, invalid sim, sim failure, bars fluctuating from 5 - 3 - 2 - 1, no signal/bars searching etc... Ifeel miserable after trying out all the options changed multiple sims, tried multiple carriers, restored the phone back and have set-up as new device but the problem does not get solved... its is so frustrating that after investing on a world's most expensive phone you cannot enjoy the calling features which the phone offers which is the main thing you own the phone for.. Rest of the things are working.. The funniest part I am not able to make calls or receive calls but can access the internet..  I have tried every possible thing and really very frustrated with this iphone of mine...I hope the problem gets solved.. would anyone have any solutions to this problem.. Does it mean one should never update software as I hear that after updating to IOS.5.1 the problem has started coming and same has been with there.... Apple says its a hardware failure which is very difficult to digest as sometimes I get 5 bars and able to make and receive calls but 95% of the time I am unable to. If anyone has any solution I will be very happy if he or share can share the same. Many thanks. its so disgusting to experience this on top of this apple does not support global warranty for the phone as you need to go to the country from where you bought the phone for replacement.. Truly sad state of affairs.. very very very dissappointing.

    Have a look at this it might help
    http://support.apple.com/kb/TS4148

  • How to Extract Customized Financial Statement Version from R/3 to BW

    Hi Gurus,
    Could anybody tell me how to Extract Customized Financial Statement Version from R/3 to BW. Also send me docs on FICO and COPA extraction from R/3 to BW.
    Thanks in advance...
    Regards
    Rafi

    Sayed
    Please see this BW Best Practice link
    http://help.sap.com/bp_biv133/
    http://help.sap.com/bp_biv235/BI_EN/html/BW/COPABaselineAnal.htm
    http://help.sap.com/bp_biv235/BI_EN/html/BW/ControllingAnalysis.htm
    COPA Business content
    http://help.sap.com/saphelp_nw04/helpdata/en/28/3dc7393b26da1de10000000a114084/content.htm
    Hope this helps
    Thnaks
    Sat

Maybe you are looking for

  • Is there a way of getting Firefox to automaticly import the Explorer settings upon install?

    Hi! I'm trying to repack Firefox 3.6.3 into a MSI for a deployment install trough-out our organization. Since we're using Explorer as the default browser at the moment our users have all their bookmarks and such stored in Explorer. Now I'm wondering.

  • Pixelated images after burning

    A friend of mine is using iDVD to create a slideshow of some photos. The photos look great, and after burning, when playing on either tv's or even other computers, no matter the screen size, all the images, as well as the text that pops up, is all pi

  • Pavilion dv6 password recovery

    If you do not remember the password to access your computer and you did not make a back up disk or usb what are your options? What can I do to access the computer? Help anybody. This question was solved. View Solution.

  • Problem on DATEDIFF statement

    I'm trying to use a DATEDIFF statement so I only see data from the last 7 days How would I write that if I don't have a time stamp in a table to reference? If I could reference something I know I could do Where DATEDIFF (dd, example.tabletime, getdat

  • Missing /dev/cdrom and /dev/sr0

    "ls -al /dev/sr*" bash: ls -al /dev/sr*: No such file or directory I cant read any CDs and have no idea why.