How to use Wiki and Blog in Spaces

Hi,
How do I use wiki and blog inside the Webcenter Spaces. I don't see wiki and blogs. Have configured discussions but trying to find out how to configure wiki and blogs. I don't have any custom application just using Spaces.
Thanks

Manish, that's fine. But after doing that and requesting the Spaces Wiki page I'll get a login prompt from Wiki. How do I manage the security hand over mechanism? I'm sorry, but I don't understand the SAML stuff mentioned before in repect of this context here. It refers to a Single Sing on setup for Spaces which I don't have and use. I'd like to propagate the pure WLS embedded LDAP based login to wiki.
Thanks
Detlef

Similar Messages

  • Use L2TP/IPsec or SSL for Wiki and Blog?

    Here comes another, slightly embarrising, newbie question…
    The only service I am setting up on the server is the Wiki and Blog. We will only connect to the server through the internet (no public access). There are no clients on the inside.
    Now trying to decide which external firewall to buy.
    Since the only service is the Wiki and Blog, I would spontaneously think that SSL VPN is good becase then we can log in through our web browsers and the Wiki and Blog is to be viewed with the web browser.
    To me it looks like quite a number of firwalls doesn't support SSL VPN (NetGear, D-link, Zyxel).
    I have never used VPN PPTP- or L2TP/IPsec-style. Can I use the web browser still with these protocols to see the Wiki and Blog?
    Cheers,
    HindIII

    I have been reading and reading, but there seems to always be room for "what do they mean by that" or "if they don't write it, its not possible", hehe.
    The NetGear FVX538 states in its specifications "VPN/security: IPsec (ESP, AH), MD5, SHA-1, DES, 3DES, IKE, PKI, AES" and for the FVS336G it says "VPN/security: IPsec (ESP), IKE, PKI, HTTPS"
    Even the full names of the firewalls are, to me, somewhat descriptive: "Prosafe Dual WAN VPN Firewall with 8-port 10/100 Switch FVX528" vs. "Dual Wan Gigabit SSL VPN Firewall FVS336G".
    One can also compare Zyxels "ZyWall 5" and ZyWall SSL 10".
    When I read the manuals, some hardly mention SSL while others (that often are called SSL in their names) have longer sections on how to set up SSL VPN.
    Thanks MrHoffman for your input.
    I hope I soon can decide which external firewall to get. Spontanously, to me it sounds like the built in firewall in 10.6 Server got pretty good specifications. One can do both PPTP and L2PT with Kerberos that is written to be excellent (according to Daniel Eran Dilger, writer of "Snow Leopard Server"). Then I get stuck in searching for Kerberos solutions in the external firewalls, never finds that.
    It seems like I need someone to tell me exactly what to get and exactly what protocols to use :o) I wich I knew as much about servers as I do about my normal profession, hehe.

  • How to configure Oracle RAC for Wiki and Blog

    Has anyone done Oracle RAC configuration for Oracle Wiki and Blogs?
    Thanks,
    Frank

    Hi Andreas,
    Thanks you for your help. I am trying to implement third party external LDAP authentication for APEX and Forms.
    So I started with OID and SSO setup to create external Partner Applications. Some reason my oid and sso web login links are not working. I didn't find any errors. I need some help in finding the problem and direction, I already read docs on web but no proper direction. I appreciate your help.
    Thanks

  • 10.5. wiki and blog

    Hi,
    I am configuring group wiki and blog for one of our department. It fills nicely their needs, but few tweaks would be fine. Blog entries are editable for everyone. Wiki should be that way, but not blog, because wiki page are versioned, but blog pages are not.
    So is there some way to make blog entries editable for author only, not whole group? Or if it is not possible, then maybe make blog versioned too. I can make one blog-entry versioned just changing:
    <key>versioned</key>
    <false/>
    to true in
    /Library/Collaboration/Groups/macwiki/weblog/ed008.page/page.plist
    but how can I make it default?
    Thanks

    I ran into a similar problem when doing authentication against a non-OpenDirectory ldap server. The problem was that the user blogs were not getting tag with the owners GUID since the GUID didn't exist.
    My solution was to redeploy with an OD master and skip the external ldap. Another approach would be to use OD with augmented accounts.
    Derek

  • Remove 'wiki' and 'blog' but leave 'calendar'

    Leopard Server 10.5.7: I'd like to have just a calendar available, not a blog or wiki. This does not seem possible. Workgroup Manager lets you deselect Wiki and Blog but leave Calendar selected for groups. When you do this and try to access via the web, you get the message that no group exists.
    Another possible solution is to just delete 'wiki' and 'blog' from the top of each page. I've found that I can delete 'wiki', 'blog' and 'calendar' by deleting a section in default.xsl, but this has the side effect of also deleting the dates in the calender. I'm not stuck as to how to proceed. The text I was removing was in "class webapptoolbar" and was the three lines beginning with <xsl:for-each select="context/webAppToolbarLinks/item">
    Any suggestions?

    1. That will depend. I'm not sure since you are editing the default template sets. It is recommended that you create a custom theme so any changes you make will be isolated from an update.
    Look at this document: http://images.apple.com/server/macosx/docs/ExtendingYour_WikiServer.pdf
    2. Yes it is the list element with an id attribute of user_button, you could also use:
    .webapptoolbar #users_button {display:none;}
    But the first one a gave you is more specific.
    You can use the Firebug plugin for Firefox to check what styles are being applied to a given element.
    Shannon
    Message was edited by: onisama

  • How to use perform and endperform in scripts

    Can anybody cleaerly explains me how to use perform and endperform in scripts with an example to add something extra dynamically to the standard script (like rvorder01).
    thanks in advance.
    regards
    anil.

    Check this example:
    In form
    PERFORM READ_TEXTS IN PROGRAM 'Z08M1_FORM_EKFORM1'
    USING &EKKO-EKORG&
    USING &EKPO-WERKS&
    USING &EKKO-EKGRP&
    USING &EKKO-BSTYP&
    CHANGING &COMPNAME&
    CHANGING &SENDADR&
    CHANGING &INVCADR&
    CHANGING &COMPADR&
    CHANGING &COVERLTR&
    CHANGING &SHIPADR&
    CHANGING &REMINDER&
    CHANGING &REJECTION&
    CHANGING &POSTADR&
    CHANGING &LOGO&
    ENDPERFORM
    In program
    FORM READ_TEXTS TABLES IN_PAR   STRUCTURE ITCSY
                           OUT_PAR  STRUCTURE ITCSY.
      DATA : L_EKORG TYPE EKORG,
             L_WERKS TYPE WERKS_D,
             L_BSTYP TYPE BSTYP,
             L_EKGRP TYPE BKGRP.
      READ TABLE IN_PAR WITH KEY 'EKKO-EKORG' .
      CHECK SY-SUBRC = 0.
      L_EKORG = IN_PAR-VALUE.
      READ TABLE IN_PAR WITH KEY 'EKPO-WERKS' .
      CHECK SY-SUBRC = 0.
      L_WERKS = IN_PAR-VALUE.
      READ TABLE IN_PAR WITH KEY 'EKKO-EKGRP' .
      CHECK SY-SUBRC = 0.
      L_EKGRP = IN_PAR-VALUE.
      READ TABLE IN_PAR WITH KEY 'EKKO-BSTYP' .
      CHECK SY-SUBRC = 0.
      L_BSTYP = IN_PAR-VALUE.
      CLEAR Z08M1_ORG_TEXTS.
      SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
                                              AND WERKS = L_WERKS
                                              AND EKGRP = L_EKGRP
                                              AND BSTYP = L_BSTYP.
      IF SY-SUBRC NE 0.
        SELECT SINGLE * FROM Z08M1_ORG_TEXTS WHERE EKORG = L_EKORG
                                               AND WERKS = L_WERKS
                                               AND EKGRP = L_EKGRP
                                               AND BSTYP = SPACE.
      ENDIF.
      READ TABLE OUT_PAR WITH KEY 'COMPNAME'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COMP.
      MODIFY OUT_PAR INDEX SY-TABIX.
      READ TABLE OUT_PAR WITH KEY 'SENDADR'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_ADRS.
      MODIFY OUT_PAR INDEX SY-TABIX.
      READ TABLE OUT_PAR WITH KEY 'INVCADR'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_INVC.
      MODIFY OUT_PAR INDEX SY-TABIX.
      READ TABLE OUT_PAR WITH KEY 'COMPADR'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_CPAD.
      MODIFY OUT_PAR INDEX SY-TABIX.
      READ TABLE OUT_PAR WITH KEY 'COVERLTR'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_COVR.
      MODIFY OUT_PAR INDEX SY-TABIX.
      READ TABLE OUT_PAR WITH KEY 'SHIPADR'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_SHIP.
      MODIFY OUT_PAR INDEX SY-TABIX.
      READ TABLE OUT_PAR WITH KEY 'REMINDER'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RMDR.
      MODIFY OUT_PAR INDEX SY-TABIX.
      READ TABLE OUT_PAR WITH KEY 'REJECTION'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_RJCT.
      MODIFY OUT_PAR INDEX SY-TABIX.
      READ TABLE OUT_PAR WITH KEY 'POSTADR'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_POST.
      MODIFY OUT_PAR INDEX SY-TABIX.
      READ TABLE OUT_PAR WITH KEY 'LOGO'.
      OUT_PAR-VALUE = Z08M1_ORG_TEXTS-TXT_LOGO.
      MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    Check and let me know if u face any problem.
    Regards

  • How to Use CMOD and SMOD in SAP using ABAP Code

    Hello anyone,
      Please help me How to use CMOD and SMOD in SAP using ABAP code.
    Give Me Some Sample Example.
    Mail ID: [email protected]
    Thanks,
    Regards,
    S.Muthu,
    SAP Developer.

    Hi,
    User Exits.
    http://www.erpgenie.com/sap/abap/code/abap26.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    customer exits
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f1a7e790-0201-0010-0a8d-f08a4662562d
    Menu Exit.
    http://www.sappoint.com/abap/spmp.pdf
    http://www.sappoint.com/abap/userexit.pdf
    http://www.sapdevelopment.co.uk/enhance/mod_sapmenu.htm
    http://www.sapdevelopment.co.uk/enhance/enhancehome.htm
    USER EXIT
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction
    http://www.easymarketplace.de/userexit.php
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sappoint.com/abap/userexit.pdfUser-Exit
    http://www.sap-img.com/ab038.htm
    http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html

  • How to use rules and roles in workflow?

    Hi experts,
    I am a beginner in  workflow. Could  any one tell me how to use rules and roles in workflow ?
    Can u pls tell me the steps to follow?
    and more over what are all the <b>important things</b> we have to learn in workflow module ??
    I shall be thankful to u.
    Thanks
    uma

    Hi
    Workflow automates the steps and activities in a business process according to predefined procedures and rules.
    Workflow presents information and documents to the appropriate knowledge worker or agent (another entity such as a program) to make a decision or perform an activity.
    Workflow tracks each and every step in the process flow and maintains an ongoing status.
    Workflow also collects and reports all of the metrics associated with the execution and completion of the process.
    Check the below links u will get lot of info..
    http://www.sap-press.com/product.cfm?account=&product=H950
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Go through the following links on FORK :
    http://help.sap.com/saphelp_nw04/helpdata/en/24/e2283f2bbad036e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/8d/25f1e7454311d189430000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_46c/helpdata/en/c5/e4a930453d11d189430000e829fbbd/content.htm
    http://www.insightcp.com/res_23.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    For more reference on workflow: http://****************/Tutorials/Workflow/Workflow.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/04/9277a346f311d189470000e829fbbd/frameset.htm
    Check these links.
    http://www.sapgenie.com/workflow/index.htm
    /people/ginger.gatling/blog/2005/12/01/link-workflow-business-objects-to-your-collaboration-tasks
    http://help.sap.com/saphelp_nw04/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/8d/25f94b454311d189430000e829fbbd/content.htm
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    Workflow tutorials with step-by-step and with screenshots are available at http://www.****************/Tutorials/Workflow/Workflow.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/42/c14a9b55103116e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    http://www.sapgenie.com/workflow/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2857887
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2855919
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2735228
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    Debug a workflow.
    This has a step by step procedure :
    http://fuller.mit.edu/workflow/debugging.pdf
    www.erpgenie.com/sap/workflow/debugging.htm
    http://www.erpgenie.com/workflow/debugging.htm?2b5de440
    Workflow tutorials with step-by-step and with screenshots are available at
    http://www.****************/Tutorials/Workflow/Workflow.htm
    http://www.sapgenie.com/workflow/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2857887
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2855919
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2735228
    http://www.sapbrain.com/TUTORIALS/TECHNICAL/WORKFLOW_tutorial.html
    Regarding Work Flow   
    work flow scenarios.
    1. applying for a leave.
    2. approval process.
    3. material creation process.
    4. mainly work flow is for notification purpose.
    chk this links
    http://help.sap.com/saphelp_erp2005/helpdata/en/fb/135962457311d189440000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    Workflow
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.erpgenie.com/workflow/index.htm
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    http://www.insightcp.com/res_23.htm
    A good tutorial
    http://www.thespot4sap.com/articles/Invoice_Verification_Automation_Using_SAP_Workflow.asp
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    /people/alan.rickayzen/blog
    /people/jocelyn.dart/blog/2006/06/19/why-use-abap-oo-with-workflow
    a good book
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.sap-press.com/downloads/h950_preview.pdf
    Check the following PDF
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    also seach the workflow forum: SAP Business Workflow
    Regards
    Anji

  • Documentation for oracle webcenter wiki and blog server 10.1.3.2.0

    Hi
    Can anyone tell me where I can get the documentation for oracle webcenter wiki and blog server 10.1.3.2.0. I am specifically interested in this version and not the latest version Oracle® WebCenter Wiki and Blog Server 10g Release 3 (10.1.3.4.0) because I have heard the older version provided out of the box portlets for creation of blogs.
    Since we want blogs very fast, I want documentation of this older version.
    Can anyone point them out to me as soon as possible please

    You can find the demo portlets here: http://www.oracle.com/technology/products/webcenter/owcs_10132_demos.html#wiki_blog_disc_samples
    I do not believe there were any portlets provided with the earlier release.
    Anyway what i think is it should not take you more than a few hours to integrate blogging functionality if you are using the Connection & Task flows provided by WebCenter.
    Venkat

  • Can't start oracle wiki and blog application right after installation

    I've been setting up the wiki and blog application 10.1.3.4.0 on weblogic server 10gR3, windows 2003 server SP2 and on trying to launch the application using the url format http://host_name:port/owc_wiki I get the following error
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    Any ideas? The access logs are showing that there was a GET request, but I can't find the reason why the server is not servicing the request.
    Edited by: user11116406 on 2009/05/13 3:04 AM
    Edited by: user11116406 on 2009/05/13 3:09 AM
    Edited by: user11116406 on 2009/05/13 3:16 AM
    Edited by: user11116406 on 2009/05/13 3:17 AM

    I hope who ever gets this problem gets help from this solution. I managed to solve my problem just that from the many diagnostic changes, I can't really put a finger on what really did the trick!!
    I desided to go through the insatllation one more time. I noticed that when I create by Data source jdbc/OWCWikiDS and test it, it was testing successfully.
    After setting up Data source I went bank to JDBC > DataSources > Monitoring > Testing. i selected my data source "wikiserver", and tested , i got this error -
    "weblogic server Warning! Connectivity to backend database not verified. This is either because required connection pool attribute "TestConnectionsOnReserve" has not been enabled, or an invalid value has been specified for attribute "TestTableName". Please check the server log for more details.."
    I then went to JDBC > DataSources > jdbc/OWCWikiDS> Connection Pool > Advanced
    Test Connections On Reserve, and I checked it. Further to that I changed my driver from oracle Driver (thin) to BEA's oracle Driver Type 4AX.
    Then I inspected my startWebLogic.cmd and noticed that my update for toplink was not at the exact place it had to be so I practically copied the whole if-else clause in the guide to replace my one.
    After that My application was now working.

  • Wikis and blogs are currently disabled..... but I enabled them.

    Brand new Xserve, Server version: 10.5.2
    I'm going out on a limb here and admitting that I have no idea what I'm doing. My employer bought into the "so easy a non tech person can do it" idea and bought an xserve to have wikis and blogs. The idea is to have one web page with links to departmental wikis and blogs.
    I set it up as an Open Directory Master, created four dummy user accounts in Workgroup Manager, a Group called Blog and put those four dummy users into that Group.
    Back in Server Admin, I enabled web services and started it. The default Apple provided default home page shows up fine when I go to the ip address in a browser window. Went back into Server Admin, chose the site I just added, clicked the Sites button, clicked Web Services and enabled blog, wiki and blog, calendar, clicked Save. Stopped web service and restarted it.
    When I open the page in a web browser I get the Getting Status.... and then it says wikis and blogs are disabled, use server preferences (I can't find that anywhere) or Server Admin to enable. I thought I did enable it in the web services pane.
    Any advice besides head for the hills?
    Thanks in advance.

    Changing the owner/group of wikis...
    The Apple website for OS X.5 Server includes a basic primer on command line editing, you should go through it. That aside, you will need to know your administrative (root) password to accomplish this, if not, you won’t get past the first ‘su’ command. The following instructions assume you are using a completely ‘default’ setup and not trying to have your collaboration folders on another file system or anything tricky.
    (FYI- as far as I know, none of the instructions I will put into the quotations will include the numeral one, they are all lower case “L”’s if it’s hard to read in this font.)
    1. Open the Terminal and drag the window as big as you’d like. Type “su root” and enter your root administrative password. Be very careful from this point forward as you can do a lot of damage.
    2. Type “cd /library”
    3. Type “ls -l”
    4. Look for the line which lists “Collaboration” in the right-hand column, it should read something like: “drwxrwxr-x 6 _teamsserver _teamsserver” in the first few columns. Everything should match except perhaps the number ‘6’. “teamsserver” is both the owner and the group for this directory.
    5. Use the same command to check each of the owner and group on the subdirectories and files of the subdirectories - they should all be owner and group of _teamsserver. Following is an example from my server, note that I do not precede the “collaboration...” with a “/”, this is because I am already inside the “library” directory.
    sh-3.2# ls -l collaboration
    total 8
    drwxr-x--- 4 _teamsserver _teamsserver 136 Apr 22 20:12 ArchivedGroups
    drwxr-x--- 3 _teamsserver _teamsserver 374 Apr 23 11:34 Groups
    drwxr-x--- 3 _teamsserver _teamsserver 102 Mar 14 21:43 Users
    -rw-r----- 1 _teamsserver _teamsserver 249 Feb 14 17:54 dataVersion.plist
    sh-3.2# ls -l collaboration/groups
    total 0
    drwxr-x--- 10 _teamsserver _teamsserver 340 Apr 22 21:02 pyrranwiki
    sh-3.2# ls -l collaboration/groups/pyrranwiki
    total 24
    drwxr-x--- 4 _teamsserver _teamsserver 136 Apr 22 20:13 discussion
    -rw-r----- 1 _teamsserver _teamsserver 5120 Apr 22 21:02 index.db
    drwxr-x--- 2 _teamsserver _teamsserver 68 Apr 22 20:12 mailinglist
    -rw-r----- 1 _teamsserver _teamsserver 484 Apr 23 11:34 metadata.plist
    drwxr-x--- 2 _teamsserver _teamsserver 68 Apr 22 20:12 public
    drwxr-x--- 2 _teamsserver _teamsserver 68 Apr 22 20:12 resources
    drwxr-x--- 2 _teamsserver _teamsserver 68 Apr 22 20:12 weblog
    drwxr-x--- 3 _teamsserver _teamsserver 102 Apr 22 20:12 wiki
    sh-3.2# ls -l collaboration/groups/pyrranwiki/wiki
    total 0
    drwxr-x--- 7 _teamsserver _teamsserver 238 Apr 22 20:12 welcome.page
    6. If you noticed any of these owners or groups showing something other than _teamsserver then perform the following command which will change the owner and group for the entire directory structure of /libaray/collaboration. (NOTE: Upper/lower case IS important here! NOTE: “teamsserver” has two “s”’s in it!):
    chown -Rv teamsserver:teamsserver /library/collaboration
    If done right, you should have a list of directories and subdirectories spit back at you.
    This may only solve some of your problems, if you have more, check out the discussion “Topic : Wiki - No group with that name hosted on this server?” where I posted a fairly lengthy set of instructions to solve a different wiki problem last night.
    Good luck!

  • Wikis and Blogs

    I'm having some troubles getting wikis and blogs to work on my newly installed 10.5 server. Wikis were working until I ran out of disk space on the server. I have since cleared plenty of space and updated to the latest version. However, I still am getting the 503 Service Unavailable error. I've looked through the discussion forum for help and haven't been able to resolve the problem. I have pasted below the lines from the wikid error log.
    As for blogs, I simply can't get them to work. I have them enabled yet I keep getting a message that says they are not for my web site. If I keep the web site folder on the boot drive, I get the "Weblogs are not enabled for this server." message. If, however, it is on a different drive I get a page not found error. I am trying to access the blogs by http://domain/weblog. Is that still the correct way to do it? I'm wondering if I'm missing some configuration step for the blogs.
    Here's the wikid error log part that seems odd to me:
    2008-04-22 08:35:40-0400 [-] twistd 2.5.0 (/System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/ Contents/MacOS/Python 2.5.1) starting up
    2008-04-22 08:35:40-0400 [-] reactor class: <class 'twisted.internet.selectreactor.SelectReactor'>
    2008-04-22 08:35:42-0400 [-] twisted.web.server.Site starting on 8086
    2008-04-22 08:35:42-0400 [-] Starting factory <twisted.web.server.Site instance at 0x2dd7c10>
    2008-04-22 08:35:42-0400 [-] twisted.web2.channel.http.HTTPFactory starting on 8087
    2008-04-22 08:35:42-0400 [-] Starting factory <twisted.web2.channel.http.HTTPFactory instance at 0x2dd7f08>
    2008-04-22 08:35:42-0400 [-] set uid/gid 94/94
    2008-04-22 08:35:42-0400 [-] Traceback (most recent call last):
    2008-04-22 08:35:42-0400 [-] File "/usr/share/caldavd/bin/twistd", line 21, in <module>
    2008-04-22 08:35:42-0400 [-] run()
    2008-04-22 08:35:42-0400 [-] File "/usr/share/caldavd/lib/python/twisted/scripts/twistd.py", line 27, in run
    2008-04-22 08:35:42-0400 [-] app.run(runApp, ServerOptions)
    2008-04-22 08:35:42-0400 [-] File "/usr/share/caldavd/lib/python/twisted/application/app.py", line 379, in run
    2008-04-22 08:35:42-0400 [-] runApp(config)
    2008-04-22 08:35:42-0400 [-] File "/usr/share/caldavd/lib/python/twisted/scripts/twistd.py", line 23, in runApp
    2008-04-22 08:35:42-0400 [-] _SomeApplicationRunner(config).run()
    2008-04-22 08:35:42-0400 [-] File "/usr/share/caldavd/lib/python/twisted/application/app.py", line 158, in run
    2008-04-22 08:35:42-0400 [-] self.postApplication()
    2008-04-22 08:35:42-0400 [-] File "/usr/share/caldavd/lib/python/twisted/scripts/twistdunix.py", line 213, in postApplication
    2008-04-22 08:35:42-0400 [-] startApplication(self.config, self.application)
    2008-04-22 08:35:42-0400 [-] File "/usr/share/caldavd/lib/python/twisted/scripts/twistdunix.py", line 183, in startApplication
    2008-04-22 08:35:42-0400 [-] app.startApplication(application, not config['no_save'])
    2008-04-22 08:35:42-0400 [-] File "/usr/share/caldavd/lib/python/twisted/application/app.py", line 400, in startApplication
    2008-04-22 08:35:42-0400 [-] service.IService(application).startService()
    2008-04-22 08:35:42-0400 [-] File "/usr/share/caldavd/lib/python/twisted/application/service.py", line 233, in startService
    2008-04-22 08:35:42-0400 [-] service.startService()
    2008-04-22 08:35:42-0400 [-] File "/usr/share/wikid/lib/python/apple_utilities/service.py", line 62, in startService
    2008-04-22 08:35:42-0400 [-] SettingsManager.globalSettings.rebuildIndex())
    2008-04-22 08:35:42-0400 [-] File "/usr/share/wikid/lib/python/apple_utilities/SearchManager.py", line 424, in buildAllIndexes
    2008-04-22 08:35:42-0400 [-] doRebuild = shouldRebuildIndexForPath(aPath)
    2008-04-22 08:35:42-0400 [-] File "/usr/share/wikid/lib/python/apple_utilities/SearchManager.py", line 438, in shouldRebuildIndexForPath
    2008-04-22 08:35:42-0400 [-] data = plistlib.readPlist(prefsPath)
    2008-04-22 08:35:42-0400 [-] File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/plat-ma c/plistlib.py", line 77, in readPlist
    2008-04-22 08:35:42-0400 [-] rootObject = p.parse(pathOrFile)
    2008-04-22 08:35:42-0400 [-] File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/plat-ma c/plistlib.py", line 402, in parse
    2008-04-22 08:35:42-0400 [-] parser.ParseFile(fileobj)
    2008-04-22 08:35:42-0400 [-] xml.parsers.expat.ExpatError: no element found: line 1, column 0

    First, let me take on the easy one. To get to weblogs, you need to go to http://domain/users/ as that is where user weblogs are now.
    For your other, more pressing issue, the log file you pasted in tells me that the metadata.plist file for a particular group was incompletely written when your disk filled up. The simple thing to do would be to load up the metadata.plist file for each group in the Collaboration root folder (by default /Library/Collaboration/Groups/<groupname>/metadata.plist in a text editor and make sure it looks like a plist file. When you find the bad one, I'd recommend you remove the metadata.plist file as it will automatically regenerate a default one for you.
    Let us know if this doesn't work for you.

  • How to use Checkbox  and radio buttons in BI Reporting

    Hi BW Experts,
       My Client has given a report in ABAP format and the report has to be develop in BI.It contains Check boxes and the radio buttons. I don’t know how to use Checkboxes and radio buttons in Bex.For using this option, do we need to write a code in ABAP.Please help on this issue.
    Thanks,
    Ram

    Hi..
    Catalog item characteristic
    - Data element
    - Characteristic type
    Entry type
    List of catalog characteristics
    Designer
    Format (character)
    Standard characteristic
    Alternative: Master characteristic
    (used for automatic product
    assignment)
    Simple entry field
    Alternatives:
    Dropdown listbox or radio button
    list

  • I want to know Apple pay is available in Canada or if it is available how to use it and health app how to use it Ty

    I want to know Apple pay is available in Canada or if it is available how to use it and health app how to use it Ty

    Apple Pay is US-only at this time.

  • So when I try to update or download an app it says I don't have enough storage. I don't know how to use iCloud and stuff soo what do I do? Help! I don't wanna delete any pics either.

    So when I try to update or download an app it says I don't have enough storage. I don't know how to use iCloud and stuff soo what do I do? Help! I don't wanna delete any pics either.

    JUst experienced the exact  same problem after changing password.Getting same message. Hope someone has an answer for this.

Maybe you are looking for

  • Data load failed

    While loading data from DSO its going to a dump ASSIGN_TYPE_CONFLICT The current ABAP program "GP48SR6V718MFXK37DXEP6N3VOT" had to be terminated because it has come across a statement that unfortunately cannot be executed. Error analysis     You atte

  • Wired PC won't print - usb printer connected to airport

    I have an Airport Express running through a wired router to an ADSL modem. Epson 777 color printer connected to the Airport Extreme USB port - one iMac and one iBook (wireless) print to the printer, but my Windows XP desktop, which is connected to th

  • Nakisa Org unit's boss in the org chart

    Hi everyone, In the Nakisa Org Chart I'd like to place teh portrait of the leader of an org unit into the Org unit view box. I'm not talking about the positions I'm talking about the org units. My question is: Is this possible? I know that this is po

  • Outbound output type & Idoc type for MIRO (Invoice Posting)

    Hi Gurus, I have requirement like , I want to send the outbound IDoc to a external system containg the invoice detials after Saving in MIRO. I am not able to find any output type & Idoc type for the same. By going through varios threads , I found tha

  • Nesting wont play armature parts- CS5.5

    macbook pro- CS5.5 I am nesting a pose sequence in a graphic symbol and placing it on the main timeline. I set the instance to "play once- frame 1" in the looping option property. two problems: A. It plays just the body movement, not the head. if u g