<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Web Script Authentication in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154890#M109300</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We are new at working with web scripts and just when we think we are making progress, we get confused. We are trying to integrate ALfresco into third party applications. We would like to either past the username / password or a ticket no with query parameters. We are not sure what is the best method or if this is the proper approach. We would like to call the existing doclist web script as an example and just display the associated doc based on our query definition. Can some one help us with the doclist updates that will allow us to authentication from any third party application. We know that the doclist web script has many options within it and we would change some of its functions, but we cannot get past the basic authentication requirements.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Terry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Apr 2008 14:41:38 GMT</pubDate>
    <dc:creator>tleblanc</dc:creator>
    <dc:date>2008-04-14T14:41:38Z</dc:date>
    <item>
      <title>Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154890#M109300</link>
      <description>We are new at working with web scripts and just when we think we are making progress, we get confused. We are trying to integrate ALfresco into third party applications. We would like to either past the username / password or a ticket no with query parameters. We are not sure what is the best method</description>
      <pubDate>Mon, 14 Apr 2008 14:41:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154890#M109300</guid>
      <dc:creator>tleblanc</dc:creator>
      <dc:date>2008-04-14T14:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154891#M109301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'd suggest using HTTP basic authentication (&lt;/SPAN&gt;&lt;A href="http://en.wikipedia.org/wiki/Basic_access_authentication" rel="nofollow noopener noreferrer"&gt;http://en.wikipedia.org/wiki/Basic_access_authentication&lt;/A&gt;&lt;SPAN&gt;) which is used for authenticating Web Scripts accessed via /alfresco/service (see &lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/Web_Scripts#Invoking_a_Web_Script" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Web_Scripts#Invoking_a_Web_Script&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;HTTP Basic Auth supports pre-emptive authentication (where the username / password is sent in every request) thereby ensuring optimal performance (no duplicate HTTP calls are required), and also making the caller-side state management code simpler (no need to obtain and preserve a "ticket" or "session id" or anything like that).&amp;nbsp; Most modern languages also have support for HTTP Basic Authentication, although some (eg. Java) only support pre-emptive authentication via an extended library (in the case of Java, I'd recommend the commons-httpclient library - &lt;/SPAN&gt;&lt;A href="http://hc.apache.org/httpclient-3.x/" rel="nofollow noopener noreferrer"&gt;http://hc.apache.org/httpclient-3.x/&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Peter&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 18:46:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154891#M109301</guid>
      <dc:creator>pmonks</dc:creator>
      <dc:date>2008-04-14T18:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154892#M109302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Peter:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you give me an example of the sample code that we would need to add to the doclist webscript?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Terry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 21:07:07 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154892#M109302</guid>
      <dc:creator>tleblanc</dc:creator>
      <dc:date>2008-04-14T21:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154893#M109303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The Web Script itself does not need to be modified - authentication is handled on behalf of all Web Scripts by the Web Script framework.&amp;nbsp; Rather, the calling applications need to be configured or modified to send through the authentication information in the HTTP request to the Web Script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If (as I'd suggest) you choose to use HTTP Basic Authentication, this means including the username and password in the appropriate HTTP Headers - detailed information on this is available at &lt;/SPAN&gt;&lt;A href="http://www.faqs.org/rfcs/rfc2617.html" rel="nofollow noopener noreferrer"&gt;http://www.faqs.org/rfcs/rfc2617.html&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Peter&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 21:24:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154893#M109303</guid>
      <dc:creator>pmonks</dc:creator>
      <dc:date>2008-04-14T21:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154894#M109304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your reply to this Peter&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My question is how to authenticate a web script when we don't have the user's password? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am also attempting to integrate with third party applications, and unfortunately in my case the end user's password is not available to include in the web script request. The systems use CAS SSO to authenticate, so the password is held in LDAP and inaccessible to the app.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One option might be to authenticate the web script by implementing CAS SSO over the top of the&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;alternative web client based service ( /alfresco/wcservice ) ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is this possible?&amp;nbsp; Are there any other approaches?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2008 09:57:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154894#M109304</guid>
      <dc:creator>mikewaters</dc:creator>
      <dc:date>2008-05-31T09:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154895#M109305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Two approaches spring to mind:&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL style="list-style-type:decimal;"&gt;&lt;LI&gt;Implement some kind of SSO (NTLM, CAS, Siteminder, what-have-you) across both Alfresco and the third party applications, then ensure that all Web Scripts are called via /alfresco/wcservice (which uses whatever authentication mechanism the Web Client has been configured with ie. SSO.&amp;nbsp; /alfresco/service &lt;EM&gt;always&lt;/EM&gt; uses HTTP basic auth).&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Implement the Web Script in Java with authentication set to "none" or "guest", then internally have the code call the AuthenticationUtil.runAs() method (&lt;A href="http://dev.alfresco.com/resource/docs/java/repository/org/alfresco/repo/security/authentication/AuthenticationUtil.html" rel="nofollow noopener noreferrer"&gt;http://dev.alfresco.com/resource/docs/java/repository/org/alfresco/repo/security/authentication/AuthenticationUtil.html&lt;/A&gt;) with a different user id to change the authenticated context mid-stream (this API doesn't require knowledge of the password).&amp;nbsp; Note that with this option you may have to figure out how to pass the user id to the Web Script in a way that can't be spoofed by users of the Web Script.&lt;/LI&gt;&lt;/OL&gt;&lt;SPAN&gt;#2 is a bit more involved on the development front, but may be easier to configure than a full SSO solution (which is not difficult for Alfresco, but is fundamentally dependent on having all applications in the ecosystem able to be configured to use SSO - often a tall order!&amp;nbsp; :wink&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://connect.hyland.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Peter&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2008 14:27:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154895#M109305</guid>
      <dc:creator>pmonks</dc:creator>
      <dc:date>2008-05-31T14:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154896#M109306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I had a go at #1 - using CAS Client to filter /wcservice by following &lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/Central_Authentication_Service_Configuration" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Central_Authentication_Service_Configuration&lt;/A&gt;&lt;SPAN&gt; and adding some filter-mappings on /wcservice&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I made a bit of progress, SSO is working fine for the web client but not for web scripts. &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Webscript requests do get redirected to CAS and back but then the Alfresco login page is displayed, and even then I can't log in. I just get redirected back to the same page (even carefully typing the creds).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I had a look at the code in the SVN HEAD, but it seems that the AuthenticationHelper code is called differently from the web client. ie not from the filter but from deep within WebScriptServlet.java.This might be where the authenticaton is failing, causing a redirect to the login page… &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm happy to keep digging with this, but it would be good to get some pointers into the documentation, if there are any wiki pages describing the authentication architecture at this level of detail, and should I be reconfiguring the Spring framework to modify the behaviour or just go in and fix the existing code? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-Mike&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2008 16:10:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154896#M109306</guid>
      <dc:creator>mikewaters</dc:creator>
      <dc:date>2008-05-31T16:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154897#M109307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does someone have an example of an implementation using option 2?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2008 20:22:11 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154897#M109307</guid>
      <dc:creator>ebell</dc:creator>
      <dc:date>2008-06-02T20:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154898#M109308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I tried #2 but I could not get it to work.&amp;nbsp; I'm using 2.9B&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jul 2008 17:55:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154898#M109308</guid>
      <dc:creator>jdestremps</dc:creator>
      <dc:date>2008-07-08T17:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154899#M109309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Interesting thread; permit me to revive it!&amp;nbsp; &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops:&amp;nbsp; I am trying to figure out how authentication can work in my Java backed web-scripts. Most of my Javascript work in Web Scripts&amp;nbsp;&amp;nbsp; is authenticating as "guest", so I would like to do that in Java backed web script too.&amp;nbsp;&amp;nbsp; Can someone explain what I am observing below?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; In a regular Javascript webscript, I can access this repository space which is open to the guest user. Here is the 1 line of Javascript code that returns a valid noderef.&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;model.nodeTest =&amp;nbsp; companyhome.childByNamePath( "/Projects/Applications/sessions/1234.txt" );&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;In a Java backed webscript, that extends AbstractWebScript , similar code fails with &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Exception net.sf.acegisecurity.BadCredentialsException: Bad credentials presented. It fails on the call to resolveNamePath().&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;NodeRef companyHomeRef = getRepositoryContext().getCompanyHome();&lt;BR /&gt;FileInfo fi = getServiceRegistry().getFileFolderService().resolveNamePath(companyHomeRef,&amp;nbsp; pathElements);&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt;Why doesn't the Java-backed web script understand the security context in the same way as the Javascript does?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Would DeclarativeWebScript behave any differently than AbstractWebScript?&amp;nbsp; Thanks for any insight you can shed on this!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 17:44:18 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154899#M109309</guid>
      <dc:creator>alrice</dc:creator>
      <dc:date>2008-08-08T17:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154900#M109310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That sounds like a bug.&amp;nbsp; Which version are you using, and which authentication mechanism (HTTP Basic vs Web Client vs JSR168) are you using to access the Web Script?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Peter&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 20:40:16 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154900#M109310</guid>
      <dc:creator>pmonks</dc:creator>
      <dc:date>2008-08-08T20:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154901#M109311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Peter, Enterprise Network v2.1.3 and using Basic http auth. I tried it with user authentication as well as guest, and same problem.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2008 21:35:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154901#M109311</guid>
      <dc:creator>alrice</dc:creator>
      <dc:date>2008-08-08T21:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154902#M109312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've implemented what I believe is an identical test case here and tested it on Enterprise 2.1.3, and I'm unable to reproduce the behaviour you describe - I see identical behaviour for both the Java and JS versions of my test Web Script.&amp;nbsp; The behaviour I'm seeing: if I create the file "/Projects/Applications/sessions/1234.txt" as admin, I'm unable to see it via either the JS or Java versions of the Web Script if I authenticate as guest.&amp;nbsp; However as soon as I explicitly permission that file to the "guest" user (eg. by inviting the "guest" user to be a "Consumer" of the "/Projects" space) both the JS and Java versions of the Web Script are able to see the file.&amp;nbsp; I tested via both "/alfresco/wcservice" (Web Client authentication) and "/alfresco/service" (HTTP Basic Authentication) and the behaviour was the same in both cases.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One possible explanation for the behaviour you saw is if you're testing your Web Scripts via "/alfresco/wcservice" - in this case it's easy to use the wrong credentials (eg. "admin" when the intention is to use "guest") since the browser will reuse credentials from prior logins to the Web Client.&amp;nbsp; For this reason it may be better to test using "/alfresco/service" (which always authenticates via HTTP Basic Auth) and tell your browser to drop authenticated sessions in between each test run (thereby forcing the browser to prompt for credentials again, which makes it easier to keep track of which user you're testing with).&amp;nbsp; I ran into this problem myself.&amp;nbsp;&amp;nbsp; &lt;img id="smileysurprised" class="emoticon emoticon-smileysurprised" src="https://connect.hyland.com/i/smilies/16x16_smiley-surprised.png" alt="Smiley Surprised" title="Smiley Surprised" /&gt;ops: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Peter&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 02:03:56 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154902#M109312</guid>
      <dc:creator>pmonks</dc:creator>
      <dc:date>2008-08-11T02:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: Web Script Authentication</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154903#M109313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Peter, thanks much for your reply &amp;amp; testing!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; I can confirm it's working OK now too. Still haven't tracked down the cause of the exception, but I simplified my code and it's working now. In addition, Safari was doing some strange authentication when i was not expecting it. Instead I started using curl from the command line. It gives you exact control over the authentication, cookies, etc. and is good for testing basic scripts.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 19:39:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/web-script-authentication/m-p/154903#M109313</guid>
      <dc:creator>alrice</dc:creator>
      <dc:date>2008-08-13T19:39:27Z</dc:date>
    </item>
  </channel>
</rss>

