<?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 Re: Sample Webscript - asks for basic authentication? in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160925#M114880</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am running into the same issue now. Is there a solution to the above?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 May 2008 09:36:08 GMT</pubDate>
    <dc:creator>bderidder</dc:creator>
    <dc:date>2008-05-08T09:36:08Z</dc:date>
    <item>
      <title>Sample Webscript - asks for basic authentication?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160920#M114875</link>
      <description>Hi, I'm totally news to WebScripts… so I've started playing with the sample WebScripts provided with Alfresco 2.1.2.I launched Internet Explorer on my development machine and pointed the browser to the following WebScript:http://localhost:8080/alfresco/service/sample/folder/Company%20HomeWhat happen</description>
      <pubDate>Thu, 17 Apr 2008 23:30:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160920#M114875</guid>
      <dc:creator>theorbix</dc:creator>
      <dc:date>2008-04-17T23:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Webscript - asks for basic authentication?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160921#M114876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It depends on the Web Script - as described at &lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/Web_Scripts#1._Create_a_Description_Document" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Web_Scripts#1._Create_a_Description_Document&lt;/A&gt;&lt;SPAN&gt; there are a number of authentication policies that a Web Script can use, including "none" (no authentication whatsoever).&amp;nbsp; Of course in that case the Web Script will not have access to much of the repository (since it's effectively running without any Alfresco authorisation credentials at all), so there's only so far you can get with a non-authenticating Web Script.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That said, all Web Scripts can also be accessed via /alfresco/wcservice, which uses the native Web Client authentication mechanism instead of HTTP Basic Auth - either way a login prompt will still be presented if the Web Scripts requires authentication (&amp;lt;authentication&amp;gt;user&amp;lt;/authentication&amp;gt; or &amp;lt;authentication&amp;gt;admin&amp;lt;/authentication&amp;gt;).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For data Web Scripts (ie. Web Scripts that are being invoked programmatically from an external application) I encourage people to call the Web Script via /alfresco/service (ie. using HTTP Basic Authentication) and then pre-emptively send the HTTP Basic Authentication credentials with every request.&amp;nbsp; This bypasses the usual multi-request dance that browsers do when confronted with a 401 status code, resulting in practically no overhead for making authenticated calls (beyond the minor cost of passing the single HTTP Basic Authentication header in each request).&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, 18 Apr 2008 02:50:57 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160921#M114876</guid>
      <dc:creator>pmonks</dc:creator>
      <dc:date>2008-04-18T02:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Webscript - asks for basic authentication?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160922#M114877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Peter for the quick response.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I was a bit confused, since the description of the stample Web Script was:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;webscript&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;shortname&amp;gt;Folder Listing Sample&amp;lt;/shortname&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;description&amp;gt;Sample demonstrating the listing of folder contents&amp;lt;/description&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;url&amp;gt;/sample/folder/{path}&amp;lt;/url&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;format default="html"&amp;gt;argument&amp;lt;/format&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;authentication&amp;gt;guest&amp;lt;/authentication&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;transaction&amp;gt;required&amp;lt;/transaction&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/webscript&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The &amp;lt;authentication&amp;gt;guest&amp;lt;/authentication&amp;gt; item made me think that this web script was accessible without authentication.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Apr 2008 16:27:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160922#M114877</guid>
      <dc:creator>theorbix</dc:creator>
      <dc:date>2008-04-18T16:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Webscript - asks for basic authentication?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160923#M114878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Guest Web Scripts are accessible without authentication, but you need to add "?guest=true" to the end of the URL (to differentiate "none" access from "guest" access).&amp;nbsp; This is described at &lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/Web_Scripts#Security" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Web_Scripts#Security&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>Fri, 18 Apr 2008 16:34:55 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160923#M114878</guid>
      <dc:creator>pmonks</dc:creator>
      <dc:date>2008-04-18T16:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Webscript - asks for basic authentication?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160924#M114879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Pmonks, this is exactly what I was looking for!&amp;nbsp; &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://connect.hyland.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've tried to use the ?guest=true parameter, but I get a security exception:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;he Web Script /alfresco/service/sample/folder/Company Home has responded with a status of 500 - Internal Error.&lt;BR /&gt;&lt;BR /&gt;500 Description:&amp;nbsp;&amp;nbsp;&amp;nbsp; An error inside the HTTP server which prevented it from fulfilling the request.&lt;BR /&gt; &lt;BR /&gt;Message:&amp;nbsp;&amp;nbsp;&amp;nbsp;Error during processing of the template 'get(parent) failed on instance of org.alfresco.repo.template.TemplateNode'. Please contact your system administrator.&lt;BR /&gt; &lt;BR /&gt;Exception:&amp;nbsp;&amp;nbsp;&amp;nbsp;net.sf.acegisecurity.AccessDeniedException - Access is denied.&lt;BR /&gt; &lt;BR /&gt;net.sf.acegisecurity.vote.AffirmativeBased.decide(AffirmativeBased.java:86)&lt;BR /&gt;net.sf.acegisecurity.intercept.AbstractSecurityInterceptor.beforeInvocation(AbstractSecurityInterceptor.java:394)&lt;BR /&gt;net.sf.acegisecurity.intercept.method.aopalliance.MethodSecurityInterceptor.invoke(MethodSecurityInterceptor.java:77)&lt;BR /&gt;org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)&lt;BR /&gt;org.alfresco.repo.security.permissions.impl.ExceptionTranslatorMethodInterceptor.invoke(ExceptionTranslatorMethodInterceptor.java:49)&lt;BR /&gt;org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)&lt;BR /&gt;org.alfresco.repo.audit.AuditComponentImpl.audit(AuditComponentImpl.java:241)&lt;BR /&gt;org.alfresco.repo.audit.AuditMethodInterceptor.invoke(AuditMethodInterceptor.java:69)&lt;BR /&gt;org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)&lt;BR /&gt;org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:107)&lt;BR /&gt;org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)&lt;BR /&gt;org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:210)&lt;BR /&gt;$Proxy3.getPrimaryParent(Unknown Source)&lt;BR /&gt;org.alfresco.repo.template.TemplateNode.getParent(TemplateNode.java:314)&lt;BR /&gt;sun.reflect.GeneratedMethodAccessor3190.invoke(Unknown Source)&lt;BR /&gt;sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)&lt;BR /&gt;java.lang.reflect.Method.invoke(Method.java:585)&lt;BR /&gt;freemarker.ext.beans.BeansWrapper.invokeMethod(BeansWrapper.java:616)&lt;BR /&gt;freemarker.ext.beans.BeanModel.invokeThroughDescriptor(BeanModel.java:272)&lt;BR /&gt;freemarker.ext.beans.BeanModel.get(BeanModel.java:183)&lt;BR /&gt;freemarker.core.Dot._getAsTemplateModel(Dot.java:76)&lt;BR /&gt;freemarker.core.Expression.getAsTemplateModel(Expression.java:89)&lt;BR /&gt;freemarker.core.BuiltIn$existsBI._getAsTemplateModel(BuiltIn.java:636)&lt;BR /&gt;freemarker.core.BuiltIn$existsBI.isTrue(BuiltIn.java:647)&lt;BR /&gt;freemarker.core.ConditionalBlock.accept(ConditionalBlock.java:77)&lt;BR /&gt;freemarker.core.Environment.visit(Environment.java:196)&lt;BR /&gt;freemarker.core.MixedContent.accept(MixedContent.java:92)&lt;BR /&gt;freemarker.core.Environment.visit(Environment.java:196)&lt;BR /&gt;freemarker.core.Environment.process(Environment.java:176)&lt;BR /&gt;freemarker.template.Template.process(Template.java:232)&lt;BR /&gt;org.alfresco.repo.template.FreeMarkerProcessor.process(FreeMarkerProcessor.java:201)&lt;BR /&gt;org.alfresco.web.scripts.AbstractWebScript.renderTemplate(AbstractWebScript.java:392)&lt;BR /&gt;org.alfresco.web.scripts.DeclarativeWebScript.renderFormatTemplate(DeclarativeWebScript.java:257)&lt;BR /&gt;org.alfresco.web.scripts.DeclarativeWebScript.execute(DeclarativeWebScript.java:163)&lt;BR /&gt;org.alfresco.web.scripts.WebScriptRuntime.wrappedExecute(WebScriptRuntime.java:364)&lt;BR /&gt;org.alfresco.web.scripts.WebScriptRuntime$1.execute(WebScriptRuntime.java:330)&lt;BR /&gt;org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransactionHelper.java:236)&lt;BR /&gt;org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction(RetryingTransactionHelper.java:166)&lt;BR /&gt;org.alfresco.web.scripts.WebScriptRuntime.transactionedExecute(WebScriptRuntime.java:341)&lt;BR /&gt;org.alfresco.web.scripts.WebScriptRuntime.authenticatedExecute(WebScriptRuntime.java:284)&lt;BR /&gt;org.alfresco.web.scripts.WebScriptRuntime.executeScript(WebScriptRuntime.java:150)&lt;BR /&gt;org.alfresco.web.scripts.WebScriptServlet.service(WebScriptServlet.java:109)&lt;BR /&gt;javax.servlet.http.HttpServlet.service(HttpServlet.java:803)&lt;BR /&gt;org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)&lt;BR /&gt;org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)&lt;BR /&gt;org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)&lt;BR /&gt;org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)&lt;BR /&gt;org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)&lt;BR /&gt;org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)&lt;BR /&gt;org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)&lt;BR /&gt;org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)&lt;BR /&gt;org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)&lt;BR /&gt;org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)&lt;BR /&gt;org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)&lt;BR /&gt;org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)&lt;BR /&gt;org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)&lt;BR /&gt;java.lang.Thread.run(Thread.java:595)&lt;BR /&gt; &lt;BR /&gt;Exception:&amp;nbsp;&amp;nbsp;&amp;nbsp;org.alfresco.repo.security.permissions.AccessDeniedException - Access Denied. You do not have the appropriate permissions to perform this operation.&lt;BR /&gt; &lt;BR /&gt;org.alfresco.repo.security.permissions.impl.ExceptionTranslatorMethodInterceptor.invoke(ExceptionTranslatorMethodInterceptor.java:53)&lt;BR /&gt; &lt;BR /&gt;Exception:&amp;nbsp;&amp;nbsp;&amp;nbsp;java.lang.reflect.InvocationTargetException&lt;BR /&gt; &lt;BR /&gt;sun.reflect.GeneratedMethodAccessor3190.invoke(Unknown Source)&lt;BR /&gt; &lt;BR /&gt;Exception:&amp;nbsp;&amp;nbsp;&amp;nbsp;freemarker.template.TemplateModelException - get(parent) failed on instance of org.alfresco.repo.template.TemplateNode&lt;BR /&gt; &lt;BR /&gt;freemarker.ext.beans.BeanModel.get(BeanModel.java:223)&lt;BR /&gt; &lt;BR /&gt;Exception:&amp;nbsp;&amp;nbsp;&amp;nbsp;org.alfresco.service.cmr.repository.TemplateException - Error during processing of the template 'get(parent) failed on instance of org.alfresco.repo.template.TemplateNode'. Please contact your system administrator.&lt;BR /&gt; &lt;BR /&gt;org.alfresco.repo.template.FreeMarkerProcessor.process(FreeMarkerProcessor.java:205)&lt;BR /&gt; &lt;BR /&gt;Server:&amp;nbsp;&amp;nbsp;&amp;nbsp;Alfresco Enterprise Network v2.1.1 (193) schema 77&lt;BR /&gt;Time:&amp;nbsp;&amp;nbsp;&amp;nbsp;Apr 23, 2008 7:33:35 PM&lt;BR /&gt; &lt;BR /&gt;Diagnostics:&amp;nbsp;&amp;nbsp;&amp;nbsp;Inspect Web Script (org/alfresco/sample/folder.get)&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;So it seems that my "guest" account does not have the proper access rights required to execute the Web Script… but I don't understand exactly what's wrong.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Company Home folder is visible to the Guest users, as well as the content of the spaces under Data Dictionary… what else could be wrong???&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Apr 2008 17:37:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160924#M114879</guid>
      <dc:creator>theorbix</dc:creator>
      <dc:date>2008-04-23T17:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Webscript - asks for basic authentication?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160925#M114880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am running into the same issue now. Is there a solution to the above?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2008 09:36:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160925#M114880</guid>
      <dc:creator>bderidder</dc:creator>
      <dc:date>2008-05-08T09:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Webscript - asks for basic authentication?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160926#M114881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;specify &amp;lt;authentication&amp;gt;user&amp;lt;/authentication&amp;gt; in your xyz.get.desc.xml,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;u hav to look into the above xml file.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2008 12:49:12 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160926#M114881</guid>
      <dc:creator>vinuraga</dc:creator>
      <dc:date>2008-05-08T12:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Webscript - asks for basic authentication?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160927#M114882</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;SPAN&gt;I have a setup where the authentication is done against ldap with chaining. But during basic authentication in webscript (/alfresco/service/) seems like the user accounts are not created if the login is the first one ever. But the account is created is login the doen through the webclient. Is there a way to change this behaviour to have the basic authentication create the account if its the first login.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 18:23:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160927#M114882</guid>
      <dc:creator>robain</dc:creator>
      <dc:date>2008-12-09T18:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Webscript - asks for basic authentication?</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160928#M114883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I don't believe so, no, and I'm not sure if that would be possible.&amp;nbsp; Still, it might be worth raising an enhancement request in JIRA (&lt;/SPAN&gt;&lt;A href="http://issues.alfresco.com/" rel="nofollow noopener noreferrer"&gt;http://issues.alfresco.com/&lt;/A&gt;&lt;SPAN&gt;) to see what the engineers think of it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That said, if you've configured LDAP authentication I'd suggest you also configure LDAP synchronisation (&lt;/SPAN&gt;&lt;A href="http://wiki.alfresco.com/wiki/Enterprise_Security_and_Authentication_Configuration#LDAP_Synchronization" rel="nofollow noopener noreferrer"&gt;http://wiki.alfresco.com/wiki/Enterprise_Security_and_Authentication_Configuration#LDAP_Synchronization&lt;/A&gt;&lt;SPAN&gt;) so that all of the user accounts and groups are created ahead of time.&amp;nbsp; That will avoid this problem altogether.&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>Tue, 09 Dec 2008 18:27:43 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/sample-webscript-asks-for-basic-authentication/m-p/160928#M114883</guid>
      <dc:creator>pmonks</dc:creator>
      <dc:date>2008-12-09T18:27:43Z</dc:date>
    </item>
  </channel>
</rss>

