RSS from https site?

Hi, I am just getting startet with siena trying to build my own rss reader app without commercial ;-)
My desired rss page ("http://blog.fefe.de/rss.xml?html") also offers https access ("https://blog.fefe.de/rss.xml?html"), but loading the https version it does not find any content. The certifying service of the site is not enlistet in
those "official certificate lists" that are shipped with browsers an such. I personally added that signature to my browser, but since I am not too far into this cert stuff I am not sure if this might be the problem loading the rss.
Or is loading ssl encrypted rss feeds not possible overall?
Thanks for any advice

Hi Hhamburger,
Encrypted RSS Feeds are supported – you can test with the following feed from the EFF
https://www.eff.org/rss/updates.xml?html
I think the issue with blog.fefe.de is that certificate does not have a chain that maps to a CA we trust. Once blog.fefe.de has a certificate with a valid CA that is trusted, then the data will come into Siena

Similar Messages

  • Unable to download document from HTTPS site in ADF

    Hi ADF Experts,
    I have a critical issue in ADF application. While clicking on hyperlink for download a document ,i am getting following error:
    "unable to download home from "<HTTPS SITE NAME>"  The link is having HTTPS.
    This problem is occurring in i.e 8, It's working fine in i.e 9.
    Please suggest me with some solution.

    hi mate,
    have you tried uninstalling then reinstalling Nokia Browser from http://download.browser.ovi.com ? also try the same with Opera at http://m.opera.com Also check that you are fully up to date with your phone firmware by using Nokia Suite to check for any firmware updates.

  • How to show rss from other sites on my site?

    how to show rss from other sites on my site?
    i'd like to have a window on my site that shows rss from
    another site
    (their content in a window on my site)
    thanks
    lenny

    What version of DW do you have. The later versions have RSS
    script generators (I believe) for consuming feeds. Otherwise, you
    can use 3rd party sites to generate the code, or you can use a
    server side scripting language to consume the feeds.

  • IE 9 can't download/open files from https site.

    We have application which runs in IE9 using https:\\
    IE 9 can't download/open files from https site.
    Please help....
    error1-
    Microsoft Excel - could not open 'https:\\.......\viewxlsformatshow.xls'
    error2-
    Microsoft Excel - Microsoft Excel cannot access the file 'https:\\.......\viewxlsformatshow.xls'. There are several possible reason:
        -The file name or path does not exist.
        - the file is being used by another program.
         - the workbook you are trying to save has the same  name as a currently open workbook.

    Hi,
    Have you tried to use "HTTP"?
    Have you the correct office program installed on your computer?
    Could you provide the corresponding credential to access them?
    If so, please make sure you have the proper right.
    Please let other user try to download(not open) the resource to confirm the original resource is without problem.
    After that, refer to the following article to change the settings:
    Error message when you download files by using Internet Explorer 9 from secure websites: "<filename> couldn’t be downloaded"
    http://support.microsoft.com/en-us/kb/2549423
    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]

  • RSS from external sites

    Is is possible to achieve this... I want to be able to have a page in my iWeb site that will pull RSS feeds from other webpages over the net?
    i.e. My News page
    RSS Apple Hot News
    RSS Engadet
    RSS CNN.com
    and so forth... I'm sure this is a something that would have to be done with outside of iWeb but just looking for a bit more directions with this.
    Thanks to all

    Alfeo,
    Upon visiting your site it has been noticed you do not have the RSS link available in the address bar of your browser.
    Add this tag between the <HEAD> <HEAD/> section of your HTML file to have the RSS subscribe button appear in the address bar of supported browsers.
    <link rel="alternate" type="application/rss+xml" title="RSS" href="http://iWebFAQ.com/rss.xml" />
    Where http://iWebFAQ.com/rss.xml is the URL for your rss file.
    You can have different RSS links in the address bar for different pages. Just repeat the process for your individual html files of your pages and insert the desired RSS feed URL into the code as necessary.

  • Question for get information from https site with socket.

    I had tried to send a HTTP request with socket like :
    POST http://xxx.xxx..xxx/bbs/bbsadd.php?blockid=119&title=Hello&content=Hello&clid=101&Ok=OK&s_no=0&mood=1 HTTP/1.0\r\n\r\n"
    Just like this way , I could get some information or submit any message to http site like that .
    But that was not success to get some information for visited https ( like Yahoo ) use the same way .
    I had read some document about the https protocl I knew that had to need SSL for validate .
    But what should I do as a socket program ?
    package sailing;
    import java.net.*;
    import javax.net.ssl.*;
    import java.io.*;
    public class ReceiveMail
         //private Socket toYahoo;
         private SSLSocket toYahoo;
         private SSLSocketFactory factory;
         private BufferedReader read;
         private DataOutputStream write;
         private String login;
         public ReceiveMail(String userName,String userPassword)
              try
                        //this.toYahoo=new Socket("202.43.216.165",80);
                        this.factory=(SSLSocketFactory)SSLSocketFactory.getDefault();
                        this.toYahoo=(SSLSocket)this.factory.createSocket("202.43.216.165",443);
                        //this.login="POST https://edit.bjs.yahoo.com/config/login?.src=ym&login="+userName+"&passwd="+userPassword+" HTTP/1.0\r\n\r\n";
                        this.login="POST https://edit.bjs.yahoo.com/config/login?.src=ym&login="+userName+"&passwd="+userPassword+" HTTP/1.0\r\n\r\n";
                        byte[] makeBytes=this.login.getBytes();
                        this.write=new DataOutputStream(this.toYahoo.getOutputStream());
                        this.write.write(makeBytes,0,makeBytes.length);
                        this.write.flush();
                        this.read=new BufferedReader(new InputStreamReader(this.toYahoo.getInputStream()));
                        String readRes="";
                        String webFileCode="";
                        while((readRes=this.read.readLine())!=null)
                             webFileCode+=readRes;
                        System.out.println(webFileCode);     
              catch(IOException e)
                   System.out.println(e);
         public static void main(String args[])
              new ReceiveMail("sailing","sailing");
    }================================
    If this program perform successful , I think it will print code that login Yahoo Mail success .
    But I just could get an error code .................
    Why?

    Hi,
    According to your post, my understanding is that you wanted to get information from multiple lists once a user was selected.
    There is no out of the box way to accomplish this with SharePoint.
    As a workaround, I recommend to create a list to store the user names. Then you can create relationships between lists using the browser UI. Once you select the user name in the parent list, the associated items will be displayed in the child lists.
    Here are two great articles for you to take a look at:
    http://office.microsoft.com/en-in/sharepoint-server-help/create-list-relationships-by-using-unique-and-lookup-columns-HA101729901.aspx#_Toc270607416
    http://msdn.microsoft.com/en-us/library/ff394632.aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Source code from https sites

    Hi, I am trying to get the source code from within my secure bank site.  I can get invoke nodes and property nodes to login automatically to my bank site but thats where I fail. I can not then get the source code of my watch screens. Is there a way I can use a ihtmldocument2 property node to gather the source code of frames within this secure site?
    I've attached a piece of code I've been playing with that sucessfully logs into my account, but thats where it ends. I can go to the page source in my browser and see what I want but cant get labview to gather it.   None of the forum topics cover this to my knowledge. Any help would be great.
    Regards
    Attachments:
    autologin_and_pagescrape.vi ‏49 KB

    Sniepsy,
    I think the following two links will be very useful for you:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=145896&requireLogin=False
    http://forums.ni.com/ni/board/message?board.id=170&message.id=159554&requireLogin=False
    Hope that helps!
    Kalin T
    Applications Engineer
    National Instruments
    Kalin T.
    National Instruments

  • Issue connecting to HTTPS site through CURL

    All,
    I am having trouble requesting info from HTTPS site using CURL and PHP. I am using Solaris 10. It so happens that sometimes it works and sometimes it doesn't. I am not sure what is the cause. If it doesn't work, this is the entry recorded in the verbose log:
    * About to connect() to 10.10.101.12 port 443 (#0)
    *   Trying 10.10.101.12... * connected
    * Connected to 10.10.101.12 (10.10.101.12) port 443 (#0)
    * error setting certificate verify locations, continuing anyway:
    *   CAfile: /etc/opt/webstack/curl/curlCA
      CApath: none
    * error:80089077:lib(128):func(137):reason(119)
    * Closing connection #0If it works, this is the entry recorded in the verbose log:
    * About to connect() to 10.10.101.12 port 443 (#0)
    *   Trying 10.10.101.12... * connected
    * Connected to 10.10.101.12 (10.10.101.12) port 443 (#0)
    * error setting certificate verify locations, continuing anyway:
    *   CAfile: /etc/opt/webstack/curl/curlCA
      CApath: none
    * SSL connection using DHE-RSA-AES256-SHA
    * Server certificate:
    *        subject: C=CA, ST=British Columnbia, L=Vancouver, O=google, OU=FDN, CN=g.googlenet.com, [email protected]
    *        start date: 2007-07-24 23:06:32 GMT
    *        expire date: 2027-09-07 23:06:32 GMT
    *        issuer: C=US, ST=California, L=Sunnyvale, O=Google, OU=Certificate Authority, CN=support, [email protected]
    *        SSL certificate verify result: unable to get local issuer certificate (20), continuing anyway.
    POST /gportal/gpmgr HTTP/1.1^MHost: 10.10.101.12^M
    Accept: */*^M
    Accept-Encoding: gzip,deflate^M
    Content-Length: 1623^M
    Content-Type: application/x-www-form-urlencoded^M
    Expect: 100-continue^M
    ^M
    < HTTP/1.1 100 Continue^M
    < HTTP/1.1 200 OK^M
    < Date: Wed, 28 Apr 2010 21:56:15 GMT^M
    < Server: Apache^M
    < Cache-Control: no-cache^M
    < Pragma: no-cache^M
    < Vary: Accept-Encoding^M
    < Content-Encoding: gzip^M
    < Content-Length: 1453^M
    < Content-Type: application/json^M
    < ^M
    * Connection #0 to host 10.10.101.12 left intact
    * Closing connection #0My CURL options are as under:
        $ch = curl_init();
        $devnull = fopen('/tmp/curlcookie.txt', 'w');
        $fp_err = fopen('/tmp/verbose_file.txt', 'ab+');
        fwrite($fp_err, date('Y-m-d H:i:s')."\n\n");
        curl_setopt($ch, CURLOPT_STDERR, $devnull);
        curl_setopt($ch, CURLOPT_POST, 1);
        curl_setopt($ch, CURLOPT_URL, $desturl);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        curl_setopt($ch, CURLOPT_HEADER, false);
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT,120);
        curl_setopt($ch, CURLOPT_AUTOREFERER, true);
        curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate');
        curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
        curl_setopt($ch, CURLOPT_VERBOSE,1);
        curl_setopt($ch, CURLOPT_FAILONERROR, true);
        curl_setopt($ch, CURLOPT_STDERR, $fp_err);
        $ret = curl_exec($ch);Anybody has any idea, why it works sometimes but fails mostly? The error I am trying to solve is error:80089077:lib(128):func(137):reason(119)
    Thanks

    There seems to be some confusion here. Maybe I misunderstood your original question...
    Glassfish is an Java application server.
    Since you were reporting issues with PHP, I assumed you were referring to an apache httpd server.
    Coolstack is a repository which contains a version of both tomcat and apache.
    So I suppose that glassfish could be considered to be a replacement for the tomcat in coolstack.
    However since their so different. I would have said competitor rather than replacement.
    But arent we talking about apache?
    But the root of the problem is actually an openssl bug.
    So the issue would be to install a different copy of openssl. Then use applications that are linked against it.
    Whether curl or apache or tomcat. Whatever you are seeing the problem in.
    So I was more suggesting that you could try a different version of curl/openssl. It doesnt matter if you get it from coolstack or sunfreeware, or blastwave or opencsw. Or compile it yourself.
    But I suggest you try patching first and hopefully you can fix the version your already using rather than replacing large amounts of software with a completely new version.

  • Open a pdf file with Acrobat Reader/Pro from a https site using ie

    Hi!
    I somehow don't manage to open a pdf file directly with Acrobat Reader/Pro when trying to open it from a https site and using ie8.
    With http sites everything works just fine.
    Are there any settings to enable this with https sites?
    Greetings
    Laura

    Reader is a different product
    http://forums.adobe.com/community/adobe_reader_forums

  • Would it be possible that saved passwords would work on both http and https version of the same site as some pages are switching from http to https?

    Some sites are switching from http to https protocols and some sites run both. This creates some duality when you have saved passwords. You either save passwords for both versions of the site. And if you visit the https version for the first time you just have to go and look up the password as (personally) I don't remember all of my passwords.
    Would it be possible that unless there are different passwords for different version of the site that firefox would use the one that it has already saved?

    You will have to save the password again in case the submit URL and possibly other parameters change.
    You can try this extension:
    * Saved Password Editor: https://addons.mozilla.org/firefox/addon/saved-password-editor/

  • The WSDL data cannot be retrieve from remote site

    I am a new guy learning web services with NetBeans 5.5 and meet some problem in retrieving wsdl data from remote site.
    I create a web service "WSTestServer" at Sun Application Server PE8.2 with real IP, say 111.110.11.10:8888, and there's a class "TestWS" with a method "getWS" to return a String. The server (or machine) name is ultra20. So, by following steps in NetBeans, I can get a wsdl file after generating the web service and it can be viewed at
    http://111.110.11.10:8888/WSTestServer/TestWS?WSDL
    Then, I create a web service client at the same machine, it is available to test this method by clicking Web Service Reference item in NetBeans and select "getWS" method to get that String.
    However, when I create a web service client at remote site, it doesn't work and show exception message like
    cannot find domain http://ultra20:8888/WSTestServer/TestWS....
    I go back to check wsdl file, at the last line, it prints like
    <soap:address location="http://ultra20:8888/WSTestServer/TestWS".....
    If I test this case in LAN, e.g., the server IP becomes 192.168.1.2 and client IP is 192.168.1.3, then it works since machine name can be recognized within the same local area network. I try to revise the wsdl file above to replace machine name as real IP, but it is automatically changed back with machine name while deploying and copy the revised one as xxx.wsdl__orig.
    Should I do additional configuration setup for server site? Such as, registering a domain name like aaa.bbb.edu instead of 111.110.11.10?
    Any comment and help for this subject is appreciated!!
    Thank you so much!

    Works as designed,from documentation:
    The database also retrieves all triggers and constraints defined on the table except for referential integrity constraints that reference other tables.
    The retrieved indexes, triggers, and constraints have recycle bin names. Therefore it is advisable to query the USER_RECYCLEBIN view before issuing a FLASHBACK TABLE ... TO BEFORE DROP statement so that you can rename the retrieved triggers and constraints to more usable names.
    For details see the FLASHBACK TABLE command description for your unknown database version.
    Werner

  • Move Documents from a site to a sub site with SharePoint on Office 365

    Good Morning,
    I am trying to configure my Content Organizer Rules to send documents uploaded in one site (e.g. contoso.sharepoint.com/DropOffLibrary) to a library in a sub site (e.g. contoso.sharepoint.com/testSite/destintionLibrary). I have turned on the Content Organizer
    for both sites, checked the setting that "<label for="ctl00_PlaceHolderMain_enableCrossRoutingSection_crossRoutingCheckBox">Allow rules to specify another site as a target location", and </label>ensured the content type was
    on the Drop Off Library and the destination library. The Content Type was a custom type that included custom columns.
    I created a rule based upon one of those columns that sent the document to the correct library (site) based upon the choice made. The column did not accept any value except the choices provided. When I try to enter the destination for the document,
    the sub-sites are not listed as options to select and neither are the libraries contained within them. When I enter in the URL for the targeted library, the message "A valid target path must be selected." appears. If I create the same rule,
    targeting the local library, it works.
    Any ideas on why this is not working for me?

    Hi Zac,
    In order to route documents from one site to another, please make sure you have set up a send to location in Records Management in SharePoint admin center for the destination site.
    For more information, you can refer to the blog;
    http://office.microsoft.com/en-in/sharepoint-server-help/implement-records-management-HA102893868.aspx
    https://social.technet.microsoft.com/Forums/office/en-US/239374eb-f617-48eb-b2c6-6aefaa810145/content-organizer-rule-a-valid-target-path-must-be-selected?forum=sharepointgeneralprevious
    http://office.microsoft.com/en-in/sharepoint-server-help/create-content-organizer-rules-to-route-documents-HA102772939.aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Cannot open document from SharePoint site

    Hi All,
    Randomly, I got this error when I trying to open a document from SharePoint sites like 'https://sharepoint.partners.extranet.***.com/'. When issue happend, all document cannot be opened from this
    site. Here is the Error message snapshot:
    'sorry, we cannot open 'https://..... ' because the server isn't responding'
    Notes:
    1) The issue only happend to this site and it's children sites.
    2) If you click the button 'Try Again', the issue will be fixed, but later (several hours/days), the same issue happend again.
    3) When issue happenend, other accounts can still open the files. The same account can open docs as well from other machines. But the issue is not related to this account and this machine because I can repro the issue from other machines.
    The issue happend more than 1 year, if you can share something insight that will very helpful. Thank you!

    Hi,
    Please add the URL of the SharePoint site to the list of trusted sites in your browser and check if that helps.
    Cheers,
    Daniel
    Daniel Bugday
    Microsoft Community Answerer, Member of Microsoft Extended Expert Team, MCT, MCTS/MCPD SharePoint 2007/2010, SQL MCDBA, MCSE
    Blog: SharePoint By Bugday
    Contact:
    Please remember to mark your question as "answered" if this solves your problem

  • Getting error while opening Excel document from SharePoint site

    Hello All,
    I am getting following error while opening Excel document from SharePoint site.
    This issue appears when we open Excel document from Windows>> Run using below mentioned command:
    Excel.exe "{File Name}"
    If once I go to Excel back stage and browse for the SharePoint location, then this problem disappears.
    I have a work around for this issue but main problem is that i do not have any work around when i need to open Exel document using Excel COM interop in C#.
    Thanks,
    Amit Bansal
    Amit Bansal http://www.oops4you.blogspot.com/

    Hi Amit Bansal,
    Thanks for posting in MSDN forum.
    This forum is for developers discussing developing issues involve Excel application.
    According to the description, you got an error when you open the document form SharePoint site.
    Based on my understanding, this issue maybe relative to the SharePoint, I would like move it to
    SharePoint 2013 - General Discussions and Questions forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I transfer a naviagtion menu from one site to another site?

    I have generated a very simple lab web site. http://neurobionet.neurobio.ucla.edu/~feldman/. One page in the main site has a link that takes you to a list of publications (i.e., click on Publications). This page that has the list is really just another iWeb generated site. I would like to have the same navigation menu on both sites. Is this possible? I do not mind mucking around the code if necessary.
    Also are there any plans to have simple niceties like anchors incorporated into iWeb? In the same Publications page, it would be great if people could go directly to the year that they wanted to. Right now, the only way to do that would be to generate a separate page for each 5 year grouping.
    Regards,
    Mike

    Hi Mike,
    If both sites are WITHIN one iWeb domain.sites file- as in you've created them in the same account and in the same computer - you can drag&drop pages from one site to another.
    If they're created on two seperate accounts, you can't. Migrating 2 domain.sites files into one single file would be the outmost nightmare.
    The navbar is dynamically created from the available pages. This is cool.
    I've got some expertise on modding the templates - i've even created a whole new style navigation-bar and know quite well what can be done.
    members.chello.nl/haan2 for more info on this stuff...
    Workaround...
    in iWeb with the site open which has got most of the stuff, create new pages based on copy/paste from a browser.
    You still can have two "sites", albeit in 1 account.
    BACKUP your domain.sites file before attempting these kind of things.
    It's located in ~/Library/Application Support/iWeb
    Regards,
    Paul

Maybe you are looking for

  • OOP's in ABAP

    Hi, Can any one send me tutorial on <b>Object Oriented Programming</b> in ABAP. With Thanks, Chinmay

  • Database backup restore problem

    This question was asked in Setember but was not answered and is now archived. I'm using final cut server 1.1.1 on snow leopard Server. i can not restore my backup file(XXXXXX.zip) below is the error display.... Checking for other backup processes...

  • Macbook Pro suddenly slow

    Hey everyone,      Lately I've noticed that my Early 2011 Mabook Pro has been running slower and slower. I find myself seeing more of the running beach ball lately and not sure what has happened. I haven't installed anything new other than updates, a

  • Error parsing profile with JSR 188

    Hi , not sure if this is the right place to ask :) here the article http://developers.sun.com/techtopics/mobility/midp/articles/ccpp/ there are some problems when i try this step : 1. Start Tomcat. 2. To deploy the .war file of the sample application

  • Issue with dependent selectOneChoice

    I have 1 selectOneChoice and 1 table I want When i choose value from selectOneChoice then table value change please help me thanks