Question: create web address

Hi All:
When I create a web address
a.choose system administration >system configuration>KM>Content Management>repository Managers-->Web address
b.choose new
c. I key in "test" in  Name field
d.I key in  a URL site "http://localhost:<port>/test" (this site has been created in localhost ) in Http URL field.
e.choose OK
so I should see an entry name  "test" in documents/www (Content administration>KM Content>KM Content>root>documents-->www).
but I can not see "test" name in /www.
then I choose system administration>monitoring>KM>Component monitor>repository managers-->www
I found that the "servers" 's status is "startup failed".
How Can I slove this issue?

Hi Bill,
you will only see the valid entries in the www repository in KM. If the web address you have entered yould not be accessed from the portal server you will not see the entry in the www repository.
I would suggest the following procedure:
1) Delete all web addresses that you have created so far
2) Create a new web address
  - Name: Portal
  - URL: your portal url probably something like http://localhost:50000/irj/portal
3) Check whether the new web address is displayed in the www repository
4) Check the status of the www repository in the portal's monitoring section
Also be aware that a internet UWL might not be accessible from the portal server (Firewalls, missing proxy settings, etc.)
Best regards,
Martin

Similar Messages

  • I am trying to drop AOL as my server. I have an AOL web address. Am I obligated to continue being registered (and paying into an aol account?) Do I have to create a new web address to move over to Firefox?

    I have a long established AOL account which I wish to close. My current web address is: [email protected] With dropping AOL as my web provider, will I need to create a new email address; does continuing to use my current email address obligate me to continue paying AOL?

    Probably your Mac cannot understand the Windows html format, please try the following to see if it helps:
    In your PC, export the bookmarks in html as you did in your post. After you have saved it, change the name of the file to “bookmarks.html” and save it again.
    In your Mac, import the saved file as you posted.

  • I create an MSWord document and type a web address in it. When I click on the web address, it opens IE Explorer. I want Firefox to open, not iE

    I create an MSWord or Excel document and type a web address in it. When I click on the web address, it opens an Internet Explorer window. How can I make it open Firefox, not Internet Explorer? Thanks!
    == This happened ==
    Not sure how often
    == always

    choose ff for the default browser, and the problem will be solved

  • Weird Question - Apple tv web address?

    we have a commercial wifi system at work that we generate passwords for people to access the wifi. I want my apple tv connected to that wifi but there is no spot for me to enter the ticket password. I also can't find a way to manually do it in our wifi system so I don't need a password for this object. However, there is a way for me to enter a web address that allows the user to connect ONLY to that site without a password. So, is there a certain web-address that the apple tv is connecting to that I can enter there making it so my apple tv doesn't need a ticket password entered?
    Thanks!

    no

  • Creating web service client/server

    Try to ask a question in regarding to creating web service client/server:
    First, please see the attachment for a simplized WSDL file:
    Based on which, I can create a web service client. Now, can I create a web service provider (server) by using the same wsdl file? If not, what change do I need to make?
    Thanks
    Scott
    ----WSDL-------
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://www.example3.org/testWSDL2/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    name="testWSDL2"
    targetNamespace="http://www.example3.org/testWSDL2/">
    <wsdl:types>
    <xsd:schema targetNamespace="http://www.example3.org/testWSDL2/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="NewOperation">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="in" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="NewOperationResponse">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="out" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    </wsdl:types>
    <wsdl:message name="NewOperationRequest">
    <wsdl:part element="tns:NewOperation" name="parameters"/>
    </wsdl:message>
    <wsdl:message name="NewOperationResponse">
    <wsdl:part element="tns:NewOperationResponse" name="parameters"/>
    </wsdl:message>
    <wsdl:portType name="testWSDL2">
    <wsdl:operation name="NewOperation">
    <wsdl:input message="tns:NewOperationRequest"/>
    <wsdl:output message="tns:NewOperationResponse"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="testWSDL2SOAP" type="tns:testWSDL2">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="NewOperation">
    <soap:operation soapAction="http://www.example3.org/testWSDL2/NewOperation"/>
    <wsdl:input>
    <soap:body use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="testWSDL2">
    <wsdl:port binding="tns:testWSDL2SOAP" name="testWSDL2SOAP">
    <soap:address location="http://abc.example.net/test"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>

    the web service is the specification for whatever functionality you wish to provide
    there are a few artifacts you can auto-generate using the WSDL, but you still need to create a client and server application
    the web service is simply exposing the application remotely and the WSDL is the contract
    http://java.sun.com/webservices/docs/1.6/tutorial/doc/index.html

  • Create Offline Address Book using powershell - PublicFolderDistributionEnabled not found

    We are using the following commands to create a new Offline Address book using powershell. The command New-OfflineAddressBook runs successfully and creates an Offline Address Book. However when we try to set the value of PublicFolderDistributionEnabled property
    using Set-OfflineAddressBook we get the following exception
    Remote Exception: A parameter cannot be found that matches parameter name 'PublicFolderDistributionEnabled'
                try
                    using (Runspace runSpace = OpenRunspace())
                        // Create offline address book command
                        var command = new Command("New-OfflineAddressBook");
                        command.Parameters.Add("Name", name);
                        command.Parameters.Add("AddressLists", addressListName);
                        command.Parameters.Add("VirtualDirectories", OABServer);
                        // Execute command
                        if ((res = ExecuteShellCommand(runSpace, command)) == false)
                            return false;
                        // Set offline address book command
                        var command1 = new Command("Set-OfflineAddressBook");
                        command1.Parameters.Add("Identity", name);
                        command1.Parameters.Add("PublicFolderDistributionEnabled", publicFolderEnabled);
                        command1.Parameters.Add("Confirm", new SwitchParameter(false));
                        // Execute command
                        if ((res = ExecuteShellCommand(runSpace, command1)) == false)
                            DeleteOfflineAddressBook(name);
                            return false;
                catch (Exception ex)
                    DeleteOfflineAddressBook(name);
                    throw;

    If your Exchange version is 2013 it supports only the web distribution method.
    Please follow this to create OAB in Exchange2013 
    http://blogs.technet.com/b/exchange/archive/2013/01/14/managing-oab-in-exchange-server-2013.aspx
    Please check this for the details of OAB in Exchange2013
    http://blogs.technet.com/b/exchange/archive/2012/10/26/oab-in-exchange-server-2013.aspx
    If it Exchange2010 please check
    this
    Thanks, MAS
    Please mark as helpful if you find my comment helpful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.

  • Need web address for email redirector!!! Help

    Ok, I am a newbie to the blackberry.  My work will not allow me (via their enterprise server) to connect so I want to know how to set up the email on my computer and leave it on.  It says I need to have a web address from my provider (Verizon for the phone).  What is it? 
    Also I do not see  email redirector on my blackberry desktop software that came with my phone.
    Can some one help me with my two problems and give me step by step instructions?

    I have a personal email account through Comcast that I want to have my work emails forwarded to
    For my Comcast email I use Outlook to view them, not the web based email
    At work I have Oulook as my email program
    Try adding your Comcast email address as an account use: mail.comcast.net for pop3 and smtp.comcast.net. For outgoing.
    This will give you give you access to your comcast email at work. If you are not able to , this is verification of the IT policy.
    They have a BB server, but will not let me use it because I do not have a work issued phone (very common in most BES companies)
    When I create a rule in Outlook at work to forward to my Comcast email it does not work (IT guy thinks there may be a setting blocking it from the IT dept.)  This is most likely why you cannot forward your email. IF an IT policy is in effect to block forwarding than neither
    option, Comcast or Google will work.
    If I try to use the Outlook web URL in my BB browser it will not work either
    I believe you will only be able to view emails and not file to folders from OWA, I need to look it up.
    I believe their accounts are not a POP3 account
    If you mean your WORK email account, probably not.
    I went in to my web mail to use mail box manager but it says put in a comcast email address, a POP3 address, or an IMAP address
    Mail.comcast.net is the pop3 address for Comcast
    So based on all of this here are my questions:
    Do I need to find out how our work email accounts are structured? (POP3, or some other conf.)
    If I try loading the gmail as you suggest won't I still have the same problem having it not work if the rule I need to create in my work email is not functioning?
    Sorry if I sound like a pain, but I am at a loss here and I am wondering if technically I am not getting what you are saying, or I am truly not going to be able to get my work emails on my BB.
    What do you suggest now for me?  Was I clear on all the facts I know and do I need to find out anything else from work?
    The entire process hinges on the IT policy. If they won't let you forward your email, or add email accounts, you will
    Not be able to circumvent the policy and won't be able to use either Comcast or Google to receive your work email.
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • WHEN I GO TO PRIVACY SETTINGS AND CLICK ON EXCEPTIONS AND TYPE IN A WEB ADDRESS TO ALLOW ALL THE TIME IT DOES NOT SAVE IT THE NEXT TIME I SIGN ON TO FIRE FOX IT IS LOST. IT WORKS FINE ON MY DESKTOP BUT NOT ON MY LAPTOP THAT I JUST BOUGHT in English.

    Question
    WHEN I GO TO PRIVACY SETTINGS AND CLICK ON EXCEPTIONS AND TYPE IN A WEB ADDRESS TO ALLOW ALL THE TIME IT DOES NOT SAVE IT THE NEXT TIME I SIGN ON TO FIRE FOX IT IS LOST. IT WORKS FINE ON MY DESKTOP BUT NOT ON MY LAPTOP THAT I JUST BOUGHT in English.

    I just updated my whatsapp...clicked on whatsapp in appstore and now can access my whatsapp

  • Upgraded from iWeb 06 to 08, and now web address and links don't work

    Hi there,
    I recently had the hard drive of my computer replaced and the Mac shop automatically upgraded iWeb 06 to iWeb 08, without asking me (and they also upgraded iPhoto)... I didn't think anything of it and went home. The next time I tried to update my website in iWeb I was asked a question that went something like did I want to upgrade or change or did I want to go ahead or something? I foolishly just said yes, whatever, and did my updates to my website. Then I used Transmit to upload my website files to my web site host. The web pages themselves still all look fine in Firefox, but there is one massive problem: when I type in my web address, which is www.*****.com, in Firefox, I'm told: "404 Not Found - The requested URL /Site/Home.html was not found on this server". When this happens, I've noticed that the www.****.com that I typed into the address bar now has changed to http://www.******.com/Site/Home.html.... If I delete the "/Site" bit from this new "address" my website comes up! If I then click on the link The Albadukes e.g., this page comes up fine. I then click on Links, and this page also opens up fine. However, if I then try to go back to the page called The Albadukes, it doesn't open! Instead, I get the 404 Not Found message again. Here, I've noticed that the writing in the web address box of the browser has changed from "http://www.***.com/The_Albadukes.html" (which works) to http://www.****.com/The Albadukes.html" (i.e. with a space between "The" and "Albadukes" - doesn't work...). If I remove the space and instead add an underscore, then the page opens! This kind of thing happens in different directions between different pages within my website.
    <Edited by Moderator>
    I realise the problems when upgrading to 08 and I wish it had never happened, but it did. So my question is: does anyone know if these link and web address problems can be solved, or should I just accept that the problems are due to the upgrade and instead just recreate my website in 08 (and hope that 08 will work OK on my computer...)? I am very very grateful for any help!!
    Many many thanks,
    Sofie

    Hmm, interestingly enough it works on my MacBook fine...just a lot slower but that's because of ram size. I cannot figure out what's the problem with it on my iMac though.
    I've gone into Quicktime and deleted any divx files associated with that and still nothing.

  • Queries regarding creating Web Services in Oracle EBS 11i[Workaround found]

    Hi,
    We have an E-Business Suite 11i installation(11.5.10.2). In our implementation we are using some of the public APIs to insert & update data in EBS tables. Earlier this was done by calling the required PL/SQL procedures through dblinks.
    Now, we need to do the same by using Web Services. That is we need a Web Service which can be invoked from a different application(SAP) and the Web Service in turn will call the APIs.
    I am new to Web Services/SOA and as far as I could understand from reading the documentation, we need the following:
    1. Install Oracle 10g Application Server with BPEL Process Manager ONLY(Oracle AS Adapter will be installed as part of BPEL PM. The Oracle AS Adapter will connect 10gAS to EBS)
    2. JDeveloper to create and deploy the BPEL process.
    I have a few questions here:
    1. Are the above two points the only prerequisites for what I want to achieve? Do I need to install anything else?
    2. How do I expose the created Web Service? I mean how will the 3rd party application invoke this Web Service?
    Answers and/or links to helpful documents awaited.
    Regards,
    -Sujoy
    Found an alternate and more cost-effective solution. Turns out that the SAP PI/XI engine can use JDBC to connect to the Oracle DB. SAP PI/XI will host the Web Service and will internally access the API through a JDBC connection.
    Edited by: Sujoy on Feb 3, 2011 7:41 PM
    Edited by: Sujoy on May 16, 2012 6:49 PM

    Hi Helios,
    I had checked the note that you are referring to before posting here. It did provide me with a start but otherwise it wasn't a great help (also some of the links are broken) . Since I am quite new to this...I am not sure whether I am proceeding in the right direction. An example/tutorial is what would be pretty useful.
    Thanks anyway!
    -Regards,
    Sujoy

  • How to create Web services to communicate InfoPath forms to Share Point lists ?

    How to create Web services to communicate InfoPath forms to Share Point lists ?

    Hi,  
     As per your posting and my understanding, you wanted to communicate your infopath with SharePoint list/library. Please refer the below link(s) which may help you to solve your issue.
    http://blogs.msdn.com/b/russmax/archive/2012/08/17/want-to-call-sharepoint-2010-web-services-within-browser-based-infopath-2010-forms.aspx
    http://jaliyaudagedara.blogspot.in/2011/03/submitting-data-to-sharepoint-2010-list.html
    or 
    http://blogs.msdn.com/b/infopath/archive/2007/03/26/submitting-to-a-sharepoint-list.aspx
    If you need more help please let usknow
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever you
    see a reply being an answer to the question of the thread, click "Mark As Answer

  • Bridge Help | Create web galleries and PDFs with Adobe Output Module

    This question was posted in response to the following article: http://helpx.adobe.com/bridge/using/create-web-galleries-pdfs-adobe.html

    Plug-ins that failed to load:
    It seems to me that something is wrong with your install. Maybe you did clone a former mac to install on this one? or copies old stuff to the new one. Don't know, it seems easy and quick but I prefer always a new install using a new computer or switching to a new system upgrade.
    Lightning effects shows to be 32 bit while I think to know that Photoshop CS5 and CS5.5 are both 64 bit, however Bridge was turned to 64 bit in the CS6 version but that should not mater for you to use both applications from the same install disk (or download?)
    And variations is something I tried to find in CS6 but can't find it there. I had long forgotten this feature that presented different previews and you could switch to color corrections and brightness (not sure) while looking at the result in the previews.
    So I think you have some old material residing on your system. I would advice you to back up all custom settings (actions, tools, workspaces etc. and keywords in Bridge) Then do a search for the Adobe Cleaner tool :
    http://www.adobe.com/support/contact/cscleanertool.html?promoid=GYTAU
    (don't know this links work for you but you can find it easy with google).
    Read the instructions carefully and follow this using the official uninstaller that came with PS (see application folder). Also be sure to have your serial number and AdobeID present and while an activation of PS is for the computer maybe for security first deactivate before uninstall.

  • Converting Word to PDF-don't link web addresses

    I'm trying to convert a word doc to a pdf using Acrobat XI Standard. The word doc has a hyperlink in one spot and a web address typed out in another spot. The goal I'm looking for is to have the hyperlink carry over into the pdf, and the typed out web address to be non-clickable. The hyperlink does carry over, but the typed out web address is also hyperlinking, but without the hyperlink box. How do I get the pdf to not link the typed out web address? There is no hyperlink box to delete.
    Thanks!

    That's a setting of the application. You can disable it under Edit - Preferences - General - Create links from URLs.

  • Web address with hyphen will not work in PDF

    CS 4; ID 6.0.6
    OSX 10.5.8
    In ID, I create web links by selecting a url and then selecting New Hyperlink From URL. The new link is a Shared Destination by default with the web address as was selected. These links work fine when exported to PDF.
    When I use the same process on a url with a hyphen (part of the address and not a line break), the resulting Shared link will not work when exported to PDF. The newly created link in this case always begins with file:///Users/.
    What is it about the hypen that messes up the process? I work in a bilingual government so we have a lot of urls with hyphens in them. For example: www.cga-nb.org.
    Thanks.

    SWSinNC wrote:
    I will, thanks
    so your saying that if it's fake...that specific function is a common flaw ?
    Exactly!
    Unfortunately the full thread recounting this saga got lost in the forum changeover, but the fake copies come in authentic looking shrink-wrapped boxes with printed documentation; and everything works except the nudge.
    Or sometimes other keyboard combinations.

  • How do I save a a web address in more than one bookmark folder?

    I often want to store the address of a web address in more than one bookmark folder. Sometimes I know this when I first decide to save the address; other times I find I want to 'copy' an already stored bookmark in a second folder. I've struggled through the Firefox Help on bookmarks to uncover how to accomplish this -- but (as with so many online computer Help sections!) have been unable to find an answer to what is, obviously, a basic question!

    You can copy a bookmark from one folder and paste it in another folder to have a copy in more than one folder.

Maybe you are looking for

  • Using Template information in dynamic pages

    Having created some interface templates for my current project, I find I am not able to readiily use them in dynamic pages. Is there a technique for this, that allows me to get the details from my page styles / Interface templates and combine them wi

  • CISCO ACE issue with MIBs

    Dear All,   I know this might have discussed here million times.. but still i am behind this to get this done due to BU pressure to do the capacity management. I am trying to get the following using SNMP 1) Real Server 2) Real Server Current Connecti

  • Different Asset Value Dates for each Asset

    Hi, A very interesting and unique requirement. We are attaching multiple assets in the settlement rule of wbs elements and run CJ88, but as per standard SAP, all assets under each WBS Element are capitalized on the same Asset Value Date. My client wa

  • How to import AVCHD clips from HD camcorder?

    How I can import AVCHD clips from Sony HDR-TG1 with best possible quality to iMovie '09? Camera records clips as 1080i format but when I import them to iMovie '09 quality are cr*p. I have a same problem with iMovie '08. This has something to do with

  • Not printing after changing cartridges

    Purchased this printer a year and half ago but just took it out of box to use it about 3 months ago And it's been nothing but trouble since. It won't print anything properly. I have aligned print heads and cleaned the print heads numerous times to no