Error in interface mapping  when calling a xsl file

Hi,
Using XSLT I am calling another XSL file  into my main xsl file.I have added both the zip files into  a single zip file and imported in my imported archive.But when i do the interface mapping testing i get an error 'Transformer configuration exception occurred when loading XSLT xslt1.xsl'.
What should i do?

Dear Sidhvin,
First test your XSLT in the editor (for example STYLUS STUDIO). In Editor run your mapping and have a look whether you are getting the required result.
if you are  getting the required result of XSLT then use it in the scenario and after importing this activate it and then run the interface.
hope this time you will not get any error
Thanks
Sandeep
PS: if helpful Reward points

Similar Messages

  • Error :Required parameters missing when calling up module MARC_SINGLE_READ

    Dear all,
    When trying to do the production order confirmation i am getting the error "Required parameters missing when calling up module MARC_SINGLE_READ".How can this error be solved?
    Thanks,
    Kumar

    Hi
    Please activate the corresponding programs again. I think you got a short dump for this error, if yes, you can see the program's name there.
    Best Regards.
    Leon.

  • Calling an xsl file in another

    Hi,
    I have 2 xsl files
    nested_flow.xsl
    and substring_flow.xsl.
    my query is how can i call 1 xsl file in another.
    i need to perform a mapping whixh is actually present in the other file(substring_flow.xsl)
    im calling substring_flow.xsl in nested_flow.xsl
    so i'm using
    <xsl:include href="substring_flow.xsl"/>
    when i use it in xi it gives me an error.
    Is there any other way by means of which i can call one xsl in another.
    <u>nested_flow.xsl:</u>
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="urn:Testns" xmlns:javamap="java:com.satyam.Javaclass">
    <xsl:include href="substring_flow.xsl" />
    - <xsl:template match="/">
    - <substring_node_input>
    - <InputString>
    <xsl:value-of select="ns0:nested_node_input/Person/LName" />
    </InputString>
    </substring_node_input>
    - <nested_node_output>
    - <Emp>
    - <Innitial>
    <xsl:value-of select="ns0:substring_node_output/OutputString" />
    </Innitial>
    </Emp>
    </nested_node_output>
    </xsl:template>
    </xsl:stylesheet>
    <u>substring_flow.xsl:</u>
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="urn:Testns" xmlns:javamap="java:com.satyam.Javaclass">
    - <xsl:template match="/">
    - <substring_node_output>
    - <OutputString>
    <xsl:value-of select="substring(ns0:substring_node_input/InputString,0,1)" />
    </OutputString>
    </substring_node_output>
    </xsl:template>
    </xsl:stylesheet>

    Hi,
    I have 2 xsl files
    nested_flow.xsl
    and substring_flow.xsl.
    my query is how can i call 1 xsl file in another.
    i need to perform a mapping whixh is actually present in the other file(substring_flow.xsl)
    im calling substring_flow.xsl in nested_flow.xsl
    so i'm using
    <xsl:include href="substring_flow.xsl"/>
    when i use it in xi it gives me an error.
    Is there any other way by means of which i can call one xsl in another.
    <u>nested_flow.xsl:</u>
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="urn:Testns" xmlns:javamap="java:com.satyam.Javaclass">
    <xsl:include href="substring_flow.xsl" />
    - <xsl:template match="/">
    - <substring_node_input>
    - <InputString>
    <xsl:value-of select="ns0:nested_node_input/Person/LName" />
    </InputString>
    </substring_node_input>
    - <nested_node_output>
    - <Emp>
    - <Innitial>
    <xsl:value-of select="ns0:substring_node_output/OutputString" />
    </Innitial>
    </Emp>
    </nested_node_output>
    </xsl:template>
    </xsl:stylesheet>
    <u>substring_flow.xsl:</u>
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="urn:Testns" xmlns:javamap="java:com.satyam.Javaclass">
    - <xsl:template match="/">
    - <substring_node_output>
    - <OutputString>
    <xsl:value-of select="substring(ns0:substring_node_input/InputString,0,1)" />
    </OutputString>
    </substring_node_output>
    </xsl:template>
    </xsl:stylesheet>

  • Override the element mapped in the IMPL.xsl file to NULL in CUSTOM.xsl

    Hi Guys,
    we are trying to override the element mapped in the IMPL.xsl file to NULL in CUSTOM.xsl file using call template. But we are getting the target mapped twice instead of overriding. kindly help.
    IMPL.xsl_
    <db:LONG_DESCRIPTION xml:id="id_102">
    <xsl:value-of select="corecomEBO:RevisedItem/corecomEBO:Description" xml:id="id_103"/>
    </db:LONG_DESCRIPTION>
    <xsl:call-template name="LONG_DESCRIPTION_Custom"/>
    Custom.xsl_
    <xsl:template name="LONG_DESCRIPTION_Custom">
    <db:LONG_DESCRIPTION xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/INV_EBI_CHANGE_ORDER_PUB/PROCESS_CHANGE_ORDER_LIST/" xml:id="id_102" >
    <xsl:value-of select="''"/>
    </db:LONG_DESCRIPTION>
    </xsl:template>
    OUTPUT_
    <db:LONG_DESCRIPTION xml:id="id_102">XXX</db:LONG_DESCRIPTION>
    <db:LONG_DESCRIPTION xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/INV_EBI_CHANGE_ORDER_PUB/PROCESS_CHANGE_ORDER_LIST/" xml:id="id_102" />
    Needed OUTPUT_
    <db:LONG_DESCRIPTION xmlns:db="http://xmlns.oracle.com/pcbpel/adapter/db/APPS/INV_EBI_CHANGE_ORDER_PUB/PROCESS_CHANGE_ORDER_LIST/" xml:id="id_102" />
    Thanks in advance.

    Just change what you're doing in that servlet to write that extra line.
    Since you didn't say anything about how you're writing your XML file, it's pretty hard to suggest what exactly you should change.

  • Error in Interface Mapping

    Interface Mapping
    javax.xml.transform.TransformerException: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:7) at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:251) at com.sap.aii.ibrun.server.mapping.MappingTransformer.transform(MappingTransformer.java:153) at com.sap.aii.ibrun.server.mapping.XSLTMapping.executeStep(XSLTMapping.java:67) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction(MappingServiceObjectImpl0_0.java:131) at sun.reflect.GeneratedMethodAccessor550.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.ejb.session.stateless_sp5.ObjectStubProxyImpl.invoke(ObjectStubProxyImpl.java:187) at $Proxy215.processFunction(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:275) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:217) at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequest(RFCJCOServer.java:156) at com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:7803) at com.sap.mw.jco.MiddlewareJRfc$Server.dispatchRequest(MiddlewareJRfc.java:2405) at com.sap.mw.jco.MiddlewareJRfc$Server.listen(MiddlewareJRfc.java:1728) at com.sap.mw.jco.JCO$Server.listen(JCO.java:8164) at com.sap.mw.jco.JCO$Server.work(JCO.java:8284) at com.sap.mw.jco.JCO$Server.loop(JCO.java:8231) at com.sap.mw.jco.JCO$Server.run(JCO.java:8147) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124) Caused by: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:7) at com.sap.engine.lib.xml.parser.XMLParser.scanPI(XMLParser.java:2126) at com.sap.engine.lib.xml.parser.XMLParser.scanProlog(XMLParser.java:2774) at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2830) at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:229) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:145) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:160) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:261) at com.sap.engine.lib.jaxp.TransformerImpl.transformWithStylesheet(TransformerImpl.java:347) at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:240) ... 31 more -
    com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:7) at com.sap.engine.lib.xml.parser.XMLParser.scanPI(XMLParser.java:2126) at com.sap.engine.lib.xml.parser.XMLParser.scanProlog(XMLParser.java:2774) at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2830) at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:229) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:145) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:160) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:261) at com.sap.engine.lib.jaxp.TransformerImpl.transformWithStylesheet(TransformerImpl.java:347) at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:240) at com.sap.aii.ibrun.server.mapping.MappingTransformer.transform(MappingTransformer.java:153) at com.sap.aii.ibrun.server.mapping.XSLTMapping.executeStep(XSLTMapping.java:67) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction(MappingServiceObjectImpl0_0.java:131) at sun.reflect.GeneratedMethodAccessor550.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.ejb.session.stateless_sp5.ObjectStubProxyImpl.invoke(ObjectStubProxyImpl.java:187) at $Proxy215.processFunction(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:275) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:217) at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequest(RFCJCOServer.java:156) at

    com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:7803) at com.sap.mw.jco.MiddlewareJRfc$Server.dispatchRequest(MiddlewareJRfc.java:2405) at com.sap.mw.jco.MiddlewareJRfc$Server.listen(MiddlewareJRfc.java:1728) at com.sap.mw.jco.JCO$Server.listen(JCO.java:8164) at com.sap.mw.jco.JCO$Server.work(JCO.java:8284) at com.sap.mw.jco.JCO$Server.loop(JCO.java:8231) at com.sap.mw.jco.JCO$Server.run(JCO.java:8147) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124) </Trace> <Trace level="1" type="T">TransfromerException during XSLT processing: </Trace> <Trace level="1" type="T">javax.xml.transform.TransformerException: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:7) at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:251) at com.sap.aii.ibrun.server.mapping.MappingTransformer.transform(MappingTransformer.java:153) at com.sap.aii.ibrun.server.mapping.XSLTMapping.executeStep(XSLTMapping.java:67) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction(MappingServiceObjectImpl0_0.java:131) at sun.reflect.GeneratedMethodAccessor550.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.ejb.session.stateless_sp5.ObjectStubProxyImpl.invoke(ObjectStubProxyImpl.java:187) at $Proxy215.processFunction(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:275) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:217) at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequest(RFCJCOServer.java:156) at com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:7803) at com.sap.mw.jco.MiddlewareJRfc$Server.dispatchRequest(MiddlewareJRfc.java:2405) at com.sap.mw.jco.MiddlewareJRfc$Server.listen(MiddlewareJRfc.java:1728) at com.sap.mw.jco.JCO$Server.listen(JCO.java:8164) at com.sap.mw.jco.JCO$Server.work(JCO.java:8284) at com.sap.mw.jco.JCO$Server.loop(JCO.java:8231) at com.sap.mw.jco.JCO$Server.run(JCO.java:8147) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124) Caused by: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:7) at com.sap.engine.lib.xml.parser.XMLParser.scanPI(XMLParser.java:2126) at com.sap.engine.lib.xml.parser.XMLParser.scanProlog(XMLParser.java:2774) at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2830) at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:229) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:145) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:160) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:261) at com.sap.engine.lib.jaxp.TransformerImpl.transformWithStylesheet(TransformerImpl.java:347) at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:240) ... 31 more -
    com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:7) at com.sap.engine.lib.xml.parser.XMLParser.scanPI(XMLParser.java:2126) at com.sap.engine.lib.xml.parser.XMLParser.scanProlog(XMLParser.java:2774) at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2830) at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:229) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:145) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:160) at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:261) at com.sap.engine.lib.jaxp.TransformerImpl.transformWithStylesheet(TransformerImpl.java:347) at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:240) at com.sap.aii.ibrun.server.mapping.MappingTransformer.transform(MappingTransformer.java:153) at com.sap.aii.ibrun.server.mapping.XSLTMapping.executeStep(XSLTMapping.java:67) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction(MappingServiceObjectImpl0_0.java:131) at sun.reflect.GeneratedMethodAccessor550.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.ejb.session.stateless_sp5.ObjectStubProxyImpl.invoke(ObjectStubProxyImpl.java:187) at $Proxy215.processFunction(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:275) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:217) at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequest(RFCJCOServer.java:156) at com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:7803) at com.sap.mw.jco.MiddlewareJRfc$Server.dispatchRequest(MiddlewareJRfc.java:2405) at com.sap.mw.jco.MiddlewareJRfc$Server.listen(MiddlewareJRfc.java:1728) at com.sap.mw.jco.JCO$Server.listen(JCO.java:8164) at com.sap.mw.jco.JCO$Server.work(JCO.java:8284) at com.sap.mw.jco.JCO$Server.loop(JCO.java:8231) at com.sap.mw.jco.JCO$Server.run(JCO.java:8147) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124) </Trace> <Trace level="1" type="T">Transformer exception occurred when executing XSLT SRMCatalogTransmission2MDMProductDataTransmission (http://sap.com/xi/SRM-MDMCatalog, 05ba2080-d32f-11dc-8540-f4ef0a115642, -1) </Trace> <Trace level="1" type="T">com.sap.aii.ibrun.server.mapping.MappingRuntimeException: Transformer exception occurred when executing XSLT SRMCatalogTransmission2MDMProductDataTransmission (http://sap.com/xi/SRM-MDMCatalog, 05ba2080-d32f-11dc-8540-f4ef0a115642, -1) at com.sap.aii.ibrun.server.mapping.XSLTMapping.executeStep(XSLTMapping.java:82) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction

  • Error "Job already started" when calling a adobe form in Z function module

    Hi All,
    I have a error when calling a adobe form in a custom function module.
    I am using FP_FUNCTION_MODULE_NAME to get the adobe form function module and then i am using FP_JOB_OPEN function module to control the printing parameters such as no print preview or no dialog ..etc.. I dont have any exceptions during the call of FP_JOB_OPEN function module ..
    Later I am calling my function module which was generated for the adobe form and i am getting the error called " JOB ALREADY STARTED".
    I tried executing the same function module in se37 and the PDF form output was generated, and also by commenting FP_JOB_OPEN function module the PDF form output was generated.
    But i need the FP_JOB_OPEN function module to control the output based on the output type which triggers the form output such as the medium from nast record which says print or email or fax.. etc
    Please let me know how to handling this error.

    Just as a followup note. If you are testing a function module from SE37 and the test button you will get a value in SY-CPROG. You must override this value for everything to work.
    If you override the value of SY-CPROG with the main program that will be calling the function module you have no problem.
    John W.

  • Why do I get error -17500 when calling a batch file using the call executable step type?

    I am calling a batch file using the call executable step type. If the path to the batch file contains a space I get error -17500 and a message stating there was an error in "Post". For example the path to the batch file is "c:\TestWin\Test Files\...\Program.bat" When I run this I get the above mentioned error, however if I change my directory structure so the path is now "c:\TestWin\TestFiles\...\Program.bat" it runs fine. I use the browse feature to find my batch file so it is not me typing in a path incorrectly. I have removed the batch file and I get a different error stating that it couldn't find the file so it appears that for my error it can find the file but can't run it. I am
    sure that this has something to do with the fact that batch files are written in DOS but really don't want to resort to changing my directory structure on all my test stations. Is there any way to fix this problem so I can leave a space in my path?

    It appears I have figured it out. This was on another computer so I was unaware of how they used their computer. I like you got it to work in the temp directory and in fact got the program.bat file to work as long as I put it under the temp directory, but when I switched out to my TestWin directory it wouldn't work, so I removed everything from the directory except the batch file it self and it work. What I found out after adding files in one at a time is that the person had a file called "Test" with no file extension in there "c:\TestWin\" directory. Removing this file made it work. Putting the file back broke it. So it appeares that when teststand was running it followed the path saw a space and attempted to grab the "Test" file instead of bro
    wsing into the "Test Files" directory. If you create a file in your temp directory called "temp" with no file extension you will see the same problem. Thank you for your help.

  • Calling an XSL file in an XSL file

    Hi,
    I'm importing xsl file into xi and uisng it for mapping.
    My query is im using a function in my mapping which is actually present in another xsl file
    how can i call the other xsl file in my present xsl file which is the base file for the mapping

    i'll be a bit more specific
    i'm using
    xsl mapping
    i have 2 map files
    nested_flow.xsl is my main map file
    and substring_flow.xsl is the map file im calling
    <u>nested_floe.xsl:</u>
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="urn:Testns" xmlns:javamap="java:com.satyam.Javaclass">
      <xsl:include href="substring_flow.xsl" />
    - <xsl:template match="/">
    - <substring_node_input>
    - <InputString>
      <xsl:value-of select="ns0:nested_node_input/Person/LName" />
      </InputString>
      </substring_node_input>
    - <nested_node_output>
    - <Emp>
    - <Innitial>
      <xsl:value-of select="ns0:substring_node_output/OutputString" />
      </Innitial>
      </Emp>
      </nested_node_output>
      </xsl:template>
      </xsl:stylesheet>
    <u>substring_flow.xsl:</u>
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns0="urn:Testns" xmlns:javamap="java:com.satyam.Javaclass">
    - <xsl:template match="/">
    - <substring_node_output>
    - <OutputString>
      <xsl:value-of select="substring(ns0:substring_node_input/InputString,0,1)" />
      </OutputString>
      </substring_node_output>
      </xsl:template>
      </xsl:stylesheet>
    im trying to use the substring function present in the second xsl file in the master xsl
    if u can observe the first xsl (nested_flow.xsl)
    i included substring_flow.xsl using the xsl:include and and i tried to map the input to this substring function(Person/LName to InputString) and inturn oputput from substring to the output side field (Output string to Emp/Innitial)
    but when i test the mapping it throws a Transformer error.
    "Transformer configuration exception occurred when loading XSLT"
    I'm importing both the map files in a single zip file into xi. and i'm using the master xsl file(nested_flow.xsl) in the interface mapping where it is reqd to specify the mapping.
    Message was edited by: Sidharth Velagapudi
    Message was edited by: Sidharth Velagapudi

  • Why am I getting an "internal error",  just "Assertion failed" when calling createKeyword

    Here is my code.  It is called inside a function running under LrTasks.startAsyncTask.  The calls to "Util.writeLog" confirm that createKeyword is called and never returns.  
      Util.catalog:withWriteAccessDo(
          "CreateKwUnderPerson",
          function()
      Util.writeLog("Calling 'createKeyword()'")
      akw = Util.catalog:createKeyword( name, {}, true, nil, true)
      Util.writeLog("'createKeyword()' returned")
                  end
    I find it disconcerting that there is no more informative error message.   This seems to me to be an Adobe bug, even though the problem presumably originates from something I'm doing wrong.

    Thanks, but yes, I did knew this.   It's all working now.   When I first got your message my first reaction was to reply saying "that's not it—it's not nil"; but then I thought "I should check, it would be better if I could say I'd checked", and five minutes after that it was all cleared up.   A lesson. 
    Thanks again.  I did download your debugger (and used parts of the package) but thought that for what I was doing just using a logfile, with tail -F, would be enough.  I'm migrating from Aperture and iPhoto, and thought that at the same time I could try to orgaineze my keywords.   It's been frustrating but enjoyable.
    And you said in the first message "given the nature of Lua".   After trying to use Applescript to work with Aperture, Lua is positively luminous.
    Thanks again,
    Bill MItchell

  • Error in XSLT Mapping when special character is passed through

    Hi Experts,
    We have used the XSLT mapping. When ever any special character like é is being passed, then the below mentioned error is displayed in the Integration engine.
    Error occurred during XSLT mapping of the application
    It is working fine with normal case if we are not sending any special character.
    I am not sure whether the problem exists in XSLT mapping or the issue with the legacy system?
    Early response would be highly appreciated and points will be awarded.
    Thanks in Advance,
    Jitender

    hi,
       [Problem in transforming XML to string using XSLT;
    Chk the above link.might solve ur issue.
    Regards.
    Siddhesh Naik

  • Reg error in interface mapping in RFC to JDBC scenario

    Hi Techies,
    Iam trying to map the scenario RFC to JDBC.
    In configuration window Iam testing the configuration.
    when Iam testing it is giving the error.
    " com.sap.aii.utilxi.misc.api.BaseRuntimeException thrown during application mapping com/sap/xi/tf/_mm_mapping_: Parsing an empty source. Root element expected! "
    My mapping is as follows
                       mt_receiver                    
                                                            statement               
                                                                ROW          
                                                     action---insert     
                 ZHRT002----
         Table     
         Item----
    access     
              MANDT               
              PERNR                                     PERNR
              PERID                            PERID
              SHOPN                           SHOPN
    Sender
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:ZTEST_PI_ZHRT002 xmlns:ns0="urn:sap-com:document:sap:rfc:functions">
       <ZHRT002>
          <item>
             <MANDT/>
             <PERNR/>
             <PERID/>
    </item>
       </ZHRT002>
    </ns0:ZTEST_PI_ZHRT002>
    Reciver
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:mt_receiver xmlns:ns1="urn:sap-com:RFC2JDBC"><Statement1><ROW action="INSERT"><TABLE>ZHRT002</TABLE><access><PERNR></PERNR><PERID></PERID></access></ROW></Statement1></ns1:mt_receiver>
    Please give suggestion how to go about this.
    Thanks in advance,
    Regards,
    Kiran

    Hi,
    Please check the payload you are using to test the configuration.
    The structure seems to be Incorrect.
    Regards,
    Deepak

  • Error in PrintQueue Webservice when calling SetItemStatus()

    I am using ByD 3.5 and use the PRINTQUEUEWEBSERVICE3  to download the files from the SAP print queues.
    This works fine, but when I call PrintQueueWebService3Client.SetItemStatus() in my client,  I get an exception System.ServiceModel.FaultException: Anwendungsausnahme aufgetreten.
    There is no useful information in the stacktrace. I tested on several SAP instances.
    There is not much I can do wrong in this call. I already tested all options for the parameters of the call and followed the documentation.
    Any ideas?

    Digging deeper I got this error from the server:
    The remote server returned an error: (500) Internal Server Error.
    I get the same error when I use the previous version of the service PRINTQUEUEWEBSERVICE2.

  • Why there's error stating "unreported exception" when call function

         public void actionPerformed(ActionEvent evt)
              Object obj = evt.getSource();
              if (obj == DeleteButton)
                   readfile(); // Error here
                   deletefile();
                   rename();
    ========================================================================
         public void readfile() throws Exception
              BufferedReader in = new BufferedReader(new FileReader("WhiteCollar2.txt"));
              line=in.readLine();
              found=0;
              while (line!=null)
                   if ((line.substring(0,6)).equals((String)textfield.getText()))
                        System.out.println("CORRECT\n");
                        found=1;
                   else
                        writefile();                    
                   line=in.readLine();
    ========================================================================
    How come when I call the above readfile(), it gives me :
    DeleteScreen.java:70: unreported exception java.lang.Exception; must be caught or declared to be thrown
    readfile();
    However if I change to the following :
    try{readfile()};
    catch (Exception e) {}
    The code works fine. I am still figuring out on throwing exceptions etc. But how come I already throw exceptions it still complains exception not declared?
    Thanks and Rgds

    but the writefile() function which I called in the
    read() also throw exception but how come I do not need
    to catch it for the write()?The error message says it all: must be caught or declared to be thrown. Thus, you must either catch the exception using try-catch or you must declare that your method throws the exception using the throws declaration.
    Your call to writefile() is in the method readfile() that already declares that it throws Exception. So there is no problem there.
    BTW, you should know that it is generally ill-advised to catch or declare exception using the superclass Exception. You should use as specific an exception class as possible. In this case I suppose it would be IOException.

  • Http error 400 - bad request when calling external webservice

    I have a problem connecting OSB to webservices exposed by Lotus Domino Server.
    When I test the services with XMLSpy, it works fine. I started a project in OSB, and imported WSDL files from the server url. So far it worked. I built the corresponding Business services. When I tried to test these business services, i got error 400 from the domino server.
    Does anyone have an idea to fix this problem?
    My response document:
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <soapenv:Fault>
    <faultcode>soapenv:Server.generalException</faultcode>
    <faultstring>org.xml.sax.SAXParseException: Korai fájlvége.</faultstring>
    <detail/>
    </soapenv:Fault>
    </soapenv:Body>
    </soapenv:Envelope>HTTP/1.1 400 Bad Request
    Server: Lotus-Domino
    Date: Sat, 09 May 2009 19:57:19 GMT
    Connection: close
    Pragma: no-cache
    Cache-Control: no-cache
    Expires: Sat, 09 May 2009 19:57:19 GMT
    Content-Type: text/html
    Content-Length: 161
    <HTML><HEAD><TITLE>Unable to Process Request</TITLE></HEAD><BODY><P>Http Status Code: 400</P><P>Reason: Unknown or unsupported protocol version</P></BODY></HTML>

    Yes, the problem should be in the request, but in the test console the request document looked fine.
    I tried the following:
    I tested the service with XMLSpy. I took the soap envelope generated, and pasted it into the business service test console. Then the payload should be the same in both cases, but it does not work.

  • Error Message on Wiki When Attempting to Download File

    I have a wiki successfully set up. Authenticated users are able to log in and make changes to text, add pages, etc.
    The problem is, I get an error message any time I try to download a file:
    The wiki service is most certainly turned on.
    File type doesn't seem to matter. I've tried everything from Pages documents, to PDFs, to Illustrator files, with the exact same results.
    As expected, the wiki is available from the outside without issue.
    I cannot see anything obvious in the wiki logs, but, I'm not really sure what I am looking at.
    Server Specifics:
    Mac Pro 3,1 with 8 GB RAM. Apple RAID card with 3x 1TB drives in RAID 5 (server data). Drive 4 is the boot drive.
    Static IP with purchased domain.
    Services running:
    Caching
    Calendar
    File Sharing
    Profile Manager
    Websites
    Wiki
    DNS
    Open Directory

    I clicked on a file called Test School Work.pdf at 21:36:30 and recorded the following Collaboration Daemon log files:
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4a142b0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4a17ea0> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4a20a90> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4a24410> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4a252c0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4a28e50> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4a29900> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4a2da20> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4a2e7a0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad49007c0> ^/streams/activity/?(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4901e00> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4902bb0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad49066f0> ^/preview/page/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad49078e0> ^/preview/download/(.+?)(?:/[^/]+)?(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4b08ad0> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4b09580> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4b0d4a0> ^/cal/userForSession/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad4b0e140> ^/cal/accessLevelForUserWikiCalendar/(.+?)/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad2703570> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad2704ac0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad2708660> ^/authenticate_session/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad27097c0> ^/wikis(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad270a710> ^/wikis/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cfef000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad270b1f0> ^/files/(.+?)/?(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:132 cfef000 +0ms] Matched path /files/a252cb22-021e-4e1c-af9d-c88ce927467f against route <NSRegularExpression: 0x7fcad270b1f0> ^/files/(.+?)/?(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSRoutingHTTPConnection.m:103 cfef000 +0ms] Executing route /files/:guid/? with params {
                  guid = "a252cb22-021e-4e1c-af9d-c88ce927467f";
    Jan 22 21:36:30 server1.domain.org collabd[275] <Info>: [CSServiceBase.m:203 cee9000 +0ms] willExecuteRequest: [http]Request{ContentService.fileTupleForFileGUID:(a252cb22-021e-4e1c-af9d-c88c e927467f)}
    Jan 22 21:36:30 server1.domain.org collabd[275] <Info>: [CSConfig.m:55 cee9000 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSConnectionPool.m:141 cee9000 +0ms] Opening DB connection
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:63 cee9000 +0ms] -[PGCConnection connect] with [host='/Library/Server/Wiki/PostgresSocket' dbname=collab client_encoding=utf-8 options='-c bytea_output=escape' user=collab]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:378 cee9000 +4ms] Executing update [SET application_name TO 'cee9000-70!']
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:291 cee9000 +0ms] Executing query [SELECT '{}'::text[], hstore('a','b')]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:378 cee9000 +0ms] Executing update [BEGIN]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cee9000 +0ms] Executing query [SELECT uid, user_uid_fk, auth_token, create_time, update_time, expire_time, data FROM session WHERE uid=$1] with params [(
                  "75473531-884c-459e-9fb6-07e5a9b82de8"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cee9000 +0ms] allowedExternalIDs is {(
                  unauthenticated
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:408 cee9000 +0ms] Executing scalar query [WITH acl AS (     SELECT DISTINCT ON (position(entity_uid_fk::text in array_to_string(entity.parent_uids, ','))) entity_uid_fk       FROM entity_acls         LEFT OUTER JOIN entity ON (entity.uid=$2 AND NOT entity.is_perm_deleted)      WHERE entity_uid_fk=ANY(entity.parent_uids::uuid[])        AND allow   GROUP BY entity_uid_fk, position(entity_uid_fk::text in array_to_string(entity.parent_uids, ','))   ORDER BY position(entity_uid_fk::text in array_to_string(entity.parent_uids, ',')) DESC      LIMIT 1) SELECT max(action)::text FROM entity_acls WHERE entity_uid_fk=(SELECT entity_uid_fk FROM acl) AND external_id=ANY($1)] with params [(
                  "{(\\n    \\"*\\",\\n    unauthenticated\\n)}",
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +3ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cee9000 +0ms] allowedExternalIDs is {(
                  unauthenticated
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:408 cee9000 +0ms] Executing scalar query [WITH acl AS (     SELECT DISTINCT ON (position(entity_uid_fk::text in array_to_string(entity.parent_uids, ','))) entity_uid_fk       FROM entity_acls         LEFT OUTER JOIN entity ON (entity.uid=$2 AND NOT entity.is_perm_deleted)      WHERE entity_uid_fk=ANY(entity.parent_uids::uuid[])        AND allow   GROUP BY entity_uid_fk, position(entity_uid_fk::text in array_to_string(entity.parent_uids, ','))   ORDER BY position(entity_uid_fk::text in array_to_string(entity.parent_uids, ',')) DESC      LIMIT 1) SELECT max(action)::text FROM entity_acls WHERE entity_uid_fk=(SELECT entity_uid_fk FROM acl) AND external_id=ANY($1)] with params [(
                  "{(\\n    \\"*\\",\\n    unauthenticated\\n)}",
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cee9000 +0ms] allowedExternalIDs is {(
                  unauthenticated
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:408 cee9000 +0ms] Executing scalar query [SELECT uid FROM entity WHERE uid=$1 AND NOT is_perm_deleted] with params [(
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cee9000 +0ms] Executing query [SELECT (is_deleted OR is_perm_deleted) AS "isDeleted",        coalesce($1::varchar[] && (         SELECT array_agg(entity_acls.external_id) AS external_ids            FROM entity_acls              LEFT OUTER JOIN entity ON (entity.uid=$3 AND NOT entity.is_perm_deleted)           WHERE entity_acls.entity_uid_fk=ANY(entity.parent_uids::uuid[])             AND $2 <= entity_acls.action             AND entity_acls.allow        GROUP BY entity_acls.entity_uid_fk, entity.parent_uids          HAVING array_length(array_agg(entity_acls.external_id), 1) > 0        ORDER BY position(entity_acls.entity_uid_fk::text in array_to_string(entity.parent_uids, ',')) DESC           LIMIT 1        ), false) AS "isAccessible"   FROM entity  WHERE uid = $3 AND NOT entity.is_perm_deleted] with params [(
                  "{(\\n    \\"*\\",\\n    unauthenticated\\n)}",
                  read,
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cee9000 +0ms] allowedExternalIDs is {(
                  unauthenticated
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cee9000 +0ms] Executing query [SELECT "_inner_entity"."isDeleted", "_inner_entity"."longName", "_inner_entity"."isBlogEnabled", "_inner_entity"."description", "_inner_entity"."containerGUID", "_inner_entity"."createTime", "_inner_entity"."updatedByUserGUID", "_inner_entity"."revision", "_inner_entity"."shortName", "_inner_entity"."themeInfo", "_inner_entity"."ownerGUID", "_inner_entity"."ownerType", "_inner_entity"."type", "_inner_entity"."createdByUserGUID", "_inner_entity"."isHidden", "_inner_entity"."guid", "_inner_entity"."blogGUID", "_inner_entity"."tinyID", "_inner_entity"."parentGUIDs", "_inner_entity"."updateTime", "_inner_entity"."avatarGUID", "_inner_entity"."isPermanentlyDeleted", "_inner_entity"."isAuthenticated", "_inner_entity"."login", "_inner_entity"."externalID", "_inner_entity"."activityTime", "_inner_entity"."preferredEmailHash", "_inner_entity"."detailPageGUID", "_inner_entity"."tags", "_inner_entity"."extendedAttributes", "_inner_entity"."privateAttributes", "_inner_entity"."isFavorite", "_inner_entity"."isMyPage", "_inner_entity"."isWatched", ("_inner_entity"."_activity").action_time AS "lastActivityTime", ("_inner_entity"."_activity").user_uid_fk AS "lastActivityUserGUID", "_inner_entity"."tags" AS "tags" FROM (SELECT entity.is_deleted AS "isDeleted", entity.long_name AS "longName", entity.is_blog_enabled AS "isBlogEnabled", entity.description AS "description", entity.container_uid_fk AS "containerGUID", entity.create_time AS "createTime", entity.updatedby_user_fk AS "updatedByUserGUID", entity.revision AS "revision", entity.short_name AS "shortName", entity.theme_info AS "themeInfo", entity.ownedby_uid_fk AS "ownerGUID", entity.owner_entity_type_fk AS "ownerType", entity.entity_type_fk AS "type", entity.createdby_user_fk AS "createdByUserGUID", entity.is_hidden AS "isHidden", entity.uid AS "guid", entity.blog_uid_fk AS "blogGUID", entity.tiny_id AS "tinyID", entity.parent_uids AS "parentGUIDs", entity.update_time AS "updateTime", entity.avatar_uid_fk AS "avatarGUID", entity.is_perm_deleted AS "isPermanentlyDeleted", user_entity.is_authenticated AS "isAuthenticated", user_entity.login AS "login", user_entity.external_id AS "externalID", user_entity.activity_time AS "activityTime", user_entity.preferred_email_hash AS "preferredEmailHash", user_entity.detail_page_fk AS "detailPageGUID", coalesce(entity_tag.tags,'{}') AS "tags", entity_attrs.attrs_bin AS "extendedAttributes", entity_private_attrs.attrs_bin AS "privateAttributes", NULL AS "isFavorite", NULL AS "isMyPage", NULL AS "isWatched",   (SELECT DISTINCT ON (user_uid_fk, action_time) ROW(user_uid_fk, action_time)::last_activity      FROM user_activity     WHERE user_uid_fk=entity.uid  ORDER BY user_uid_fk, action_time DESC     LIMIT 1) AS "_activity" FROM entity LEFT OUTER JOIN user_entity ON (user_entity.entity_uid_fk=entity.uid) LEFT OUTER JOIN visible_entity_tag entity_tag ON (entity_tag.entity_uid_fk=entity.uid) LEFT OUTER JOIN entity_attrs ON (entity_attrs.entity_uid_fk=entity.uid) LEFT OUTER JOIN entity_private_attrs ON (entity_private_attrs.entity_uid_fk=entity.uid) WHERE entity.uid=$1  AND true = (    WITH acls AS (      SELECT entity_uid_fk, array_agg(external_id) AS external_ids        FROM entity_acls       WHERE entity_uid_fk=ANY(entity.parent_uids::uuid[])         AND 'read' <= action    GROUP BY entity_uid_fk      HAVING array_length(array_agg(external_id), 1) > 0    ORDER BY position(entity_uid_fk::text in array_to_string(entity.parent_uids, ',')) DESC       LIMIT 1    )    SELECT true      FROM acls     WHERE external_ids && $2     LIMIT 1) AND NOT entity.is_perm_deleted ) "_inner_entity"] with params [(
                  "<<snip>>",
                  "{(\\n    \\"*\\",\\n    unauthenticated\\n)}"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +4ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cee9000 +0ms] allowedExternalIDs is {(
                  unauthenticated
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:408 cee9000 +0ms] Executing scalar query [SELECT uid FROM entity WHERE uid=$1 AND NOT is_perm_deleted] with params [(
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cee9000 +0ms] Executing query [SELECT (is_deleted OR is_perm_deleted) AS "isDeleted",        coalesce($1::varchar[] && (         SELECT array_agg(entity_acls.external_id) AS external_ids            FROM entity_acls              LEFT OUTER JOIN entity ON (entity.uid=$3 AND NOT entity.is_perm_deleted)           WHERE entity_acls.entity_uid_fk=ANY(entity.parent_uids::uuid[])             AND $2 <= entity_acls.action             AND entity_acls.allow        GROUP BY entity_acls.entity_uid_fk, entity.parent_uids          HAVING array_length(array_agg(entity_acls.external_id), 1) > 0        ORDER BY position(entity_acls.entity_uid_fk::text in array_to_string(entity.parent_uids, ',')) DESC           LIMIT 1        ), false) AS "isAccessible"   FROM entity  WHERE uid = $3 AND NOT entity.is_perm_deleted] with params [(
                  "{(\\n    \\"*\\",\\n    unauthenticated\\n)}",
                  own,
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSContentService.m:600 cee9000 +0ms] User (null) attempting own on uid=<<snip>>: permission-denied
    Jan 22 21:36:30 server1.domain.org collabd[275] <Info>: [CSConfig.m:55 cee9000 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:378 cee9000 +0ms] Executing update [COMMIT]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Jan 22 21:36:30 server1.domain.org collabd[275] <Info>: [CSServiceBase.m:247 cee9000 +0ms] Deferring block in response.
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:211 cee9000 +0ms] Current sessionGUID is 75473531-884c-459e-9fb6-07e5a9b82de8, user matthew
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:446 cee9000 +0ms] Executing scalar query [SELECT array_agg(group_id) FROM groups WHERE 'group:'||group_id IN (SELECT external_id FROM entity_acls)]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSContentService.m:3728 cee9000 +0ms] externalIDsReferencedByACLs: (
                  "<<snip>>",
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cee9000 +0ms] allowedExternalIDs is {(
                  unauthenticated,
                  authenticated,
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:235 cee9000 +0ms] <<snip>> is a member of <<snip>>
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:91 cee9000 +0ms] allowedExternalIDs is {(
                  "group:<<snip>>",
                  unauthenticated,
                  authenticated,
                  "<<snip>>"
              )} (added group:<<snip>>)
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:235 cee9000 +0ms] <<snip>> is a member of <<snip>>
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:91 cee9000 +0ms] allowedExternalIDs is {(
                  "group:<<snip>>",
                  unauthenticated,
                  "group:<<snip>>",
                  authenticated,
                  "<<snip>>"
              )} (added group:<<snip>>)
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:91 cee9000 +0ms] allowedExternalIDs is {(
                  "group:<<snip>>",
                  unauthenticated,
                  "group:<<snip>>",
                  authenticated,
                  "<<snip>>"
              )} (added *)
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:91 cee9000 +0ms] allowedExternalIDs is {(
                  "group:<<snip>>",
                  unauthenticated,
                  "group:<<snip>>",
                  authenticated,
                  "<<snip>>"
              )} (added unauthenticated)
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:91 cee9000 +0ms] allowedExternalIDs is {(
                  "group:<<snip>>",
                  unauthenticated,
                  "group:<<snip>>",
                  authenticated,
                  "<<snip>>"
              )} (added authenticated)
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:91 cee9000 +0ms] allowedExternalIDs is {(
                  "group:<<snip>>",
                  unauthenticated,
                  "group:<<snip>>",
                  authenticated,
                  "<<snip>>"
              )} (added <<snip>>)
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:446 cee9000 +0ms] Executing scalar query [SHOW application_name]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:378 cee9000 +0ms] Executing update [SET application_name TO 'cee9000-70!fileTupleForFileGUID:']
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cee9000 +0ms] Executing query [SELECT true FROM filedata_entity WHERE entity_uid_fk=$1] with params [(
                  "a252cb22-021e-4e1c-af9d-c88ce927467f"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:408 cee9000 +0ms] Executing scalar query [SELECT array_agg(group_id)   FROM groups  WHERE 'group:'||group_id IN (SELECT external_id                                 FROM entity_acls                                   LEFT OUTER JOIN entity ON (entity.uid=ANY($1))                                WHERE entity_uid_fk=ANY(entity.parent_uids::uuid[]))] with params [(
                      "a252cb22-021e-4e1c-af9d-c88ce927467f"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSContentService.m:3743 cee9000 +0ms] externalIDsReferencedByACLsForEntityGUIDs: (
                  "a252cb22-021e-4e1c-af9d-c88ce927467f"
              ) -> (
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cee9000 +0ms] allowedExternalIDs is {(
                  "group:<<snip>>",
                  unauthenticated,
                  "group:<<snip>>",
                  authenticated,
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cee9000 +0ms] allowedExternalIDs is {(
                  "group:<<snip>>",
                  unauthenticated,
                  "group:<<snip>>",
                  authenticated,
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:149 cee9000 +0ms] isCurrentUserAnAdmin: yes
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:408 cee9000 +0ms] Executing scalar query [SELECT uid FROM entity WHERE uid=$1 AND NOT is_perm_deleted] with params [(
                  "a252cb22-021e-4e1c-af9d-c88ce927467f"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cee9000 +0ms] Executing query [SELECT (is_deleted OR is_perm_deleted) AS "isDeleted", true AS "isAccessible" FROM entity WHERE uid=$1 AND NOT entity.is_perm_deleted] with params [(
                  "a252cb22-021e-4e1c-af9d-c88ce927467f"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:149 cee9000 +0ms] isCurrentUserAnAdmin: yes
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cee9000 +0ms] Executing query [SELECT fd.data_uri, e.long_name, fd.content_type, fd.entity_uid_fk   FROM filedata_entity AS fd     JOIN entity AS e on fd.entity_uid_fk = e.uid  WHERE entity_uid_fk = $1] with params [(
                  "a252cb22-021e-4e1c-af9d-c88ce927467f"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cee9000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Info>: [CSServiceDispatcher.m:237 cee9000 +0ms] TIMER: 5ms ---> Executed [http]Request{ContentService.fileTupleForFileGUID:(a252cb22-021e-4e1c-af9d-c88c e927467f)}
    Jan 22 21:36:30 server1.domain.org collabd[275] <Info>: [CSServiceDispatcher.m:30 cee9000 +0ms] Detaching thread to finish 3 deferred blocks
    Jan 22 21:36:30 server1.domain.org collabd[275] <Info>: [CSConfig.m:55 cf6c000 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSConnectionPool.m:332 cee9000 +0ms] Closing DB connection
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:619 cee9000 +0ms] -[PGCConnection close]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSConnectionPool.m:141 cf6c000 +0ms] Opening DB connection
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:63 cf6c000 +0ms] -[PGCConnection connect] with [host='/Library/Server/Wiki/PostgresSocket' dbname=collab client_encoding=utf-8 options='-c bytea_output=escape' user=collab]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:378 cf6c000 +3ms] Executing update [SET application_name TO 'cee9000-70!']
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cf6c000 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:291 cf6c000 +0ms] Executing query [SELECT '{}'::text[], hstore('a','b')]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cf6c000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:378 cf6c000 +0ms] Executing update [BEGIN]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cf6c000 +0ms] Query result is [PGRES_COMMAND_OK] rows returned=0/updated=
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cf6c000 +0ms] Executing query [SELECT uid, user_uid_fk, auth_token, create_time, update_time, expire_time, data FROM session WHERE uid=$1] with params [(
                  "75473531-884c-459e-9fb6-07e5a9b82de8"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cf6c000 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a13000> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cf6c000 +0ms] allowedExternalIDs is {(
                  unauthenticated
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a142b0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a17ea0> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:408 cf6c000 +0ms] Executing scalar query [WITH acl AS (     SELECT DISTINCT ON (position(entity_uid_fk::text in array_to_string(entity.parent_uids, ','))) entity_uid_fk       FROM entity_acls         LEFT OUTER JOIN entity ON (entity.uid=$2 AND NOT entity.is_perm_deleted)      WHERE entity_uid_fk=ANY(entity.parent_uids::uuid[])        AND allow   GROUP BY entity_uid_fk, position(entity_uid_fk::text in array_to_string(entity.parent_uids, ','))   ORDER BY position(entity_uid_fk::text in array_to_string(entity.parent_uids, ',')) DESC      LIMIT 1) SELECT max(action)::text FROM entity_acls WHERE entity_uid_fk=(SELECT entity_uid_fk FROM acl) AND external_id=ANY($1)] with params [(
                  "{(\\n    \\"*\\",\\n    unauthenticated\\n)}",
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a20a90> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a24410> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a252c0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a28e50> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a29900> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a2da20> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4a2e7a0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad49007c0> ^/streams/activity/?(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4901e00> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4902bb0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad49066f0> ^/preview/page/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad49078e0> ^/preview/download/(.+?)(?:/[^/]+)?(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4b08ad0> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4b09580> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4b0d4a0> ^/cal/userForSession/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad4b0e140> ^/cal/accessLevelForUserWikiCalendar/(.+?)/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad2703570> ^/ping(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad2704ac0> ^/headers(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad2708660> ^/authenticate_session/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad27097c0> ^/wikis(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad270a710> ^/wikis/(.+?)(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cf6c000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:127 cc74000 +0ms] Matching path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad270b1f0> ^/files/(.+?)/?(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cf6c000 +0ms] allowedExternalIDs is {(
                  unauthenticated
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPServer.m:132 cc74000 +0ms] Matched path /files/a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf against route <NSRegularExpression: 0x7fcad270b1f0> ^/files/(.+?)/?(?:\\?.*)?$ 0x0
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:408 cf6c000 +0ms] Executing scalar query [WITH acl AS (     SELECT DISTINCT ON (position(entity_uid_fk::text in array_to_string(entity.parent_uids, ','))) entity_uid_fk       FROM entity_acls         LEFT OUTER JOIN entity ON (entity.uid=$2 AND NOT entity.is_perm_deleted)      WHERE entity_uid_fk=ANY(entity.parent_uids::uuid[])        AND allow   GROUP BY entity_uid_fk, position(entity_uid_fk::text in array_to_string(entity.parent_uids, ','))   ORDER BY position(entity_uid_fk::text in array_to_string(entity.parent_uids, ',')) DESC      LIMIT 1) SELECT max(action)::text FROM entity_acls WHERE entity_uid_fk=(SELECT entity_uid_fk FROM acl) AND external_id=ANY($1)] with params [(
                  "{(\\n    \\"*\\",\\n    unauthenticated\\n)}",
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSRoutingHTTPConnection.m:103 cc74000 +0ms] Executing route /files/:guid/? with params {
                  guid = "a252cb22-021e-4e1c-af9d-c88ce927467f/test%20School%20Work.pdf";
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSHTTPRouteHelper.m:74 cee9000 +0ms] Asked to download a file: a252cb22-021e-4e1c-af9d-c88ce927467f
    Jan 22 21:36:30 server1.domain.org collabd[275] <Info>: [CSServiceBase.m:203 cee9000 +0ms] willExecuteRequest: [http]Request{ContentService.fileTupleForFileGUID:(a252cb22-021e-4e1c-af9d-c88c e927467f)}
    Jan 22 21:36:30 server1.domain.org collabd[275] <Info>: [CSConfig.m:55 cee9000 +0ms] Reading plist at /Library/Server/Wiki/Config/collabd.plist
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSConnectionPool.m:141 cee9000 +0ms] Opening DB connection
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:63 cee9000 +0ms] -[PGCConnection connect] with [host='/Library/Server/Wiki/PostgresSocket' dbname=collab client_encoding=utf-8 options='-c bytea_output=escape' user=collab]
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cf6c000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cf6c000 +0ms] allowedExternalIDs is {(
                  unauthenticated
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:408 cf6c000 +0ms] Executing scalar query [SELECT uid FROM entity WHERE uid=$1 AND NOT is_perm_deleted] with params [(
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cf6c000 +0ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cf6c000 +0ms] Executing query [SELECT (is_deleted OR is_perm_deleted) AS "isDeleted",        coalesce($1::varchar[] && (         SELECT array_agg(entity_acls.external_id) AS external_ids            FROM entity_acls              LEFT OUTER JOIN entity ON (entity.uid=$3 AND NOT entity.is_perm_deleted)           WHERE entity_acls.entity_uid_fk=ANY(entity.parent_uids::uuid[])             AND $2 <= entity_acls.action             AND entity_acls.allow        GROUP BY entity_acls.entity_uid_fk, entity.parent_uids          HAVING array_length(array_agg(entity_acls.external_id), 1) > 0        ORDER BY position(entity_acls.entity_uid_fk::text in array_to_string(entity.parent_uids, ',')) DESC           LIMIT 1        ), false) AS "isAccessible"   FROM entity  WHERE uid = $3 AND NOT entity.is_perm_deleted] with params [(
                  "{(\\n    \\"*\\",\\n    unauthenticated\\n)}",
                  read,
                  "<<snip>>"
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:241 cf6c000 +1ms] Query result is [PGRES_TUPLES_OK] rows returned=1/updated=1
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [CSUserSessionServiceBase.m:106 cf6c000 +0ms] allowedExternalIDs is {(
                  unauthenticated
    Jan 22 21:36:30 server1.domain.org collabd[275] <Debug>: [PGCConnection.m:263 cf6c000 +0ms] Executing query [SELECT "_inner_entity"."isDeleted", "_inner_entity"."longName", "_inner_entity"."isBlogEnabled", "_inner_entity"."description", "_inner_entity"."containerGUID", "_inner_entity"."createTime", "_inner_entity"."updatedByUserGUID", "_inner_entity"."revision", "_inner_entity"."shortName", "_inner_entity"."themeInfo", "_inner_entity"."ownerGUID", "_inner_entity"."ownerType", "_inner_entity"."type", "_inner_entity"."createdByUserGUID", "_inner_entity"."isHidden", "_inner_entity"."guid", "_inner_entity"."blogGUID", "_inner_entity"."tinyID", "_inner_entity"."parentGUIDs", "_inner_entity"."updateTime", "_inner_entity"."avatarGUID", "_inner_entity"."isPermanentlyDeleted", "_inner_entity"."isAuthenticated", "_inner_entity"."login", "_inner_entity"."externalID", "_inner_entity"."activityTime", "_inner_entity"."preferredEmailHash", "_inner_entity"."detailPageGUID", "_inner_entity"."tags", "_inner_entity"."extendedAttributes", "_inner_entity"."privateAttributes", "_inner_entity"."isFavorite", "_inner_entity"."isMyPage", "_inner_entity"."isWatched", ("_inner_entity"."_activity").action_time AS "lastActivityTime", ("_inner_entity"."_activity").user_uid_fk AS "lastActivityUserGUID", "_inner_entity"."tags" AS "tags" FROM (SELECT entity.is_deleted AS "isDeleted", entity.long_name AS "longName", entity.is_blog_enabled AS "isBlogEnabled", entity.description AS "description", entity.container_uid_fk AS "containerGUID", entity.create_time AS "createTime", entity.updatedby_user_fk AS "updatedByUserGUID", entity.revision AS "revision", entity.short_name AS "shortName", entity.theme_info AS "themeInfo", entity.ownedby_uid_fk AS "ownerGUID", entity.owner_entity_type_fk AS "ownerType", entity.entity_type_fk AS "type", entity.createdby_user_fk AS "createdByUserGUID", entity.is_hidden AS "isHidden", entity.uid AS "guid", entity.blog_uid_fk AS "blogGUID", entity.tiny_id AS "tinyID", entity.parent_uids AS "parentGUIDs", entity.update_time AS "updateTime", entity.avatar_uid_fk AS "avatarGUID", entity.is_perm_deleted AS "isPermanentlyDeleted", user_entity.is_authenticated AS "isAuthenticated", user_entity.login AS "login", user_entity.external_id AS "externalID", user_entity.activity_time AS "activityTime", user_entity.preferred_email_hash AS "preferredEmailHash", user_entity.detail_page_fk AS "detailPageGUID", coalesce(entity_tag.tags,'{}') AS "tags", entity_attrs.attrs_bin AS "extendedAttributes", entity_private_attrs.attrs_bin AS "privateAttributes", NULL AS "isFavorite", NULL AS "isMyPage", NULL AS "isWatched",   (SELECT DISTINCT ON (user_uid_fk, action_time) ROW(user_uid_fk, action_time)::last_activity      FROM user_activity     WHERE user_uid_fk=entity.uid  ORDER BY user_uid_fk, action_time DESC     LIMIT 1) AS "_activity" FROM entity LEFT OUTER JOIN user_entity ON (user_entity.entity_uid_fk=entity.uid) LEFT OUTER JOIN visible_entity_tag entity_tag ON (entity_tag.entity_uid_fk=entity.uid) LEFT OUTER JOIN entity_attrs ON (entity_attrs.entity_uid_fk=entity.uid) LEFT OUTER JOIN entity_private_attrs ON (entity_private_attrs.entity_uid_fk=entity.uid) WHERE entity.uid=$1  AND true = (    WITH acls AS (      SELECT entity_uid_fk, array_agg(external_id) AS external_ids        FROM entity_acls       WHERE entity_uid_fk=ANY(entity.parent_uids::uuid[])         AND 'read' <= action    GROUP BY entity_uid_fk      HAVING array_length(array_agg(external_id), 1) > 0    ORDER BY position(entity_uid_fk::text in array_to_string(entity.parent_ui

Maybe you are looking for

  • My ipod has died

    I'm trying to be matter of fact about the issue, because I truly doubt there is any hope: Ipod was bought a little under a year and a half ago. I was using i-tunes this afternoon, i think at least version 6. I was also using a program called ipod age

  • Issues with publishing my iWeb site to .MAC - Progress bar freezes at 100%

    Well, as topic says, i'm having troubles publishing my iWeb site to .MAC now since upgrading to '08. The progress bar reaches full circle, but then nothing. Left it uploading to .Mac for well over 2 hours one time while out of the house...nada. Somet

  • Handling new line character in XML

    Hi, Question : How can we specify new line character in xml ? Explaination for use : I have a xml structure like : <?xml version="1.0" encoding="UTF-8"?> <MT_ISO8583_XML_request> <TRANSDETAILS>. <TRANSACTIONAMOUNT>0000000000000000</TRANSACTIONAMOUNT>

  • Need to start over with A3, can I restore and start again?

    I'm having so many of the same issues with A3 as most folks here plus a few others, with no fix in sight, and I'm thinking of just restoring my iMac via TM back to BEFORE I installed the trial version. Will this take me back to the A2 version and the

  • Wireless connection drops on iPhone4

    My wireless connection at home drops frequently on my iPhone4.  It will not allow me to reconnect.  The connection is not being dropped on any of my computers attached to the wireless connection, so my carrier believes it is a problem on the iPhone.