IAS 10.1.2.0 & the Lotusnotes Portlet

Have have 10.1.2 of iAS and we are trying to get the sample Portlet functioning. We have followed the install instruction and now we are encountering an error we do not know how to address. The error is as follows:
05/04/21 14:18:19 lotusnotes: Servlet error
oracle.webdb.provider.v2.utils.soap.SOAPException: Can't read deployment properties for service: lotusnaotes at oracle.webdb.provider.v2.adapter.SOAPServlet.locateService(Unknown Source)at oracle.webdb.provider.v2.adapter.SOAPServlet.doHTTPCall(Unknown Source) at oracle.webdb.provider.v2.adapter.SOAPServlet.service(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
One interesting aspect is the url for the mail files go to a subdirectory of 'mail' per Lotus & IBM best practices. we add mail\mymail.nfs in the definition to mail file the get around the registration error. But when using the My Secure Sites to launch the app we get: Error 404 HTTP Web Server: Lotus Notes Exception - File does not exist.
So we are lost.
Thanks
Mike

I have changed the note server definition in the external app to add the mail directory in front of the mail file name 'mail/mufile.nfs' and I get the following error:
05/04/21 15:15:07 lotusnotes: [instance=(null), id=97176201941,7] ERROR: LotusServiceSession: getConfigProperties(): An error occured
while reading/ retrieving the properties from the the configuration file.
05/04/21 15:15:07 lotusnotes: [instance=(null), id=97176201941,7] ERROR: Unhandled exception in SOAP call
oracle.portal.provider.v2.ProviderException: LotusServiceSession: getConfigProperties(): An error occured while reading/ retrieving the
properties from the the configuration file.

Similar Messages

  • Register the Discoverer portlet provider Error

    Hi,
    We have the following configuration:
    Oracle9iAS Infrastructure:
    Machine: Pentium 4
    S.O. Windows 2000
    Oracle9iAS MiddleTier:
    Machine: Pentium 4
    S.O. Windows 2000
    We need to develop a portal application using Discoverer Portlet. When we are trying to register the Discoverer Portlet Provider, we get the following error :
    An error occurred when attempting to call the providers register function. (WWC-43134)
    An unexpected error occurred: java.io.InterruptedIOException: recv() timed out
    A non-blocking socket operation could not be completed immediately.
    at java.net.SocketInputStream.socketRead(SocketInputStream.java)
    at java.net.SocketInputStream.read(SocketInputStream.java)
    at HTTPClient.ExtBufferedInputStream.fill(ExtBufferedInputStream.java:180)
    at HTTPClient.ExtBufferedInputStream.read(ExtBufferedInputStream.java:252)
    at HTTPClient.StreamDemultiplexor.read(StreamDemultiplexor.java:244)
    at HTTPClient.RespInputStream.read(RespInputStream.java:138)
    at HTTPClient.RespInputStream.read(RespInputStream.java:95)
    at HTTPClient.Response.readResponseHeaders(Response.java:914)
    at HTTPClient.Response.getHeaders(Response.java:627)
    at HTTPClient.Response.getStatusCode(Response.java:232)
    at HTTPClient.RetryModule.responsePhase1Handler(RetryModule.java:80)
    at HTTPClient.HTTPResponse.handleResponse(HTTPResponse.java:623)
    at HTTPClient.HTTPResponse.getInputStream(HTTPResponse.java:515)
    at oracle.webdb.provider.web.HttpProviderDispatcher.dispatch
    at oracle.webdb.provider.web.HttpProviderDispatcher.registerProvider
    (WWC-43000)
    Thanks.

    I had a similar problem, first I made sure my discover connections worked by connecting to discover through IAS. Then when I registered the discoverer in portal, it timed out the first couple of times. I then refreshed the browser window a couple of times and it worked.

  • Expected behavior of the Exchange portlets in release 2

    I've installed the Exchange portlets in release 2 successfully. Everything works - Inbox, Calendar, Contact list. However when you update the portlet with required information i.e. Inbox user name, server, # of message rows, the portlet displays the view, but once you go to a different page and then decide to return to the page with the Exchange portlets, you need to enter that very same information again. Is this the way it is suppose to work???
    Please share your experiences.
    Thanks,
    r/ George

    George,
    This may be a pain for you, but could you please walk me through the steps that you took to get the exchange portlets working? We are trying to install the exchange5.5 portlets. We are currently using Portal release 9.2.1.2.14 (i think that's it - latest release) and have upgraded to 9.0.2.4 via the December PDK we downloaded. We have also made the appropriate setup to the IIS/Exchange server and can view the test.asp pages that were provided. Do you need to deploy an .ear file on OC4J for the exchange5.5 portlets like you do for the exchange2000 portlets? Any help would be appreciated and we have read the documentation included with the Dec. pdk.zip release to no avail. Thank you.
    Jeremy

  • Distinguishing between two instances of the same portlet

    Hi Experts,
    Is there a way to distinguish between two instance of the same portlet in different browser windows?
    I'm looking for something like URL parameter passing, but just for portlets.
    The problem is, I want a way to pass a parameter between views in a portlet, but in such a way that if another browser window is opened and navigated to that portlet page, the parameter won't be the same. Perhaps I can explain better with this example:
    Page A has a portlet on it which has a textbox and 2 buttons - the first button stores the value in the textbox in the PortletRequest (or PortletURL) and if you click the second button the portlet navigates to a different view which displays the value. If I navigate with a second browser window to Page A, however, and only click the navigate button, that value which was stored by the first instance of the portlet will still be shown. I want them to be independent, I don't want changes in the one's PortletRequest to reflect in the other one's PortletRequest.
    Any ideas?
    Thanks,
    JP

    Why not use two instances of the same portlet, i.e. create two channels of the same portlet.
    The behave the same, have the same application logic, so all you need is to transfer informations between the two portlets.If you want this within user space use the portlet session, otherwise access the http session context /application context and store the data there.
    The behavior would be controlled by the portlet preferences, so channel a (instance 1) would be configured to run as controller and channel b (instance 2) would be configured as receiver.

  • How to change the width of the whole portlet layout?

    Dear all,
    As we know, now the width of portlet layout has set to 100%. But there is a new requirment from my customer that the width of the whole portlet layout view must be set to 750px.
    So I tried to edit the css file and I found a block:
    #pt-portal-content-view
         margin-top: 0px;
         width: 100%;
    I tried to change the width to 750px, but nothing happened.
    I want to know the way to change the width, thank you all!
    Regards,
    finall
    OK,I have found the place to do it:
    .portalContent          {
         display: block;
         width: 750px;
    I set to 750px,then it works.:-)
    But another question, how to make the content align to the center? I tried a stupid method, add margin-left:
    .portalContent          {
         display: block;
         width: 750px;
         margin-left: 120px;
    In 1024 X 768, it's ok, but it don't work well in 800 X 600.
    When I set the all content width to 750px, I tried the three columns view, the portlet still run over the border.If there is any way to control this? thank u in advance!
    Regards,
    finall
    Edited by finall1980 at 02/01/2007 10:09 PM

    Try this:
    .portalContent {
    display: block;
    width: 750px;
    margin: auto; /* for properly-implemented browsers */
    text-align: center; /* for IE 6 */
    As for running over the 750px, there's nothing you can do about that other than actually narrowing the columns AND making sure that your portlet authors don't produce content that's too wide.
    Chris Bucchere | bdg | [email protected] | http://www.thebdgway.com

  • How to change the Hello Portlet in Jetspeed2 Demo

    hi ppl,
    I am having a big problem..
    I can't change the portlet title, hello portlet, in the jetspeed 2 demo.
    The strange things is that i am able to change the title of the pickANumber portlet.
    @ Portlet.xml
    <portlet id="PickANumberPortlet">
    <init-param>
    <name>ViewPage</name>
    <value>/WEB-INF/demo/simple/PickANumber.jsp</value>
    </init-param>
    <init-param>
    <name>HelpPage</name>
    <value>/WEB-INF/demo/simple/PickANumberHelp.jsp</value>
    </init-param>
    <init-param>
    <name>EditPage</name>
    <value>/WEB-INF/demo/simple/PickANumberEdit.jsp</value>
    </init-param>
    <portlet-name>PickANumberPortlet</portlet-name>
    <display-name>Pick a number game</display-name>
    <portlet-class>org.apache.jetspeed.demo.simple.PickANumberPortlet</portlet-class>
    <expiration-cache>-1</expiration-cache>
    <supports>
    <mime-type>text/html</mime-type>
    <portlet-mode>VIEW</portlet-mode>
    <portlet-mode>HELP</portlet-mode>
    <portlet-mode>EDIT</portlet-mode>
    </supports>
    <supported-locale>en</supported-locale>
    <supported-locale>fr</supported-locale>
    <supported-locale>ja</supported-locale>
    <resource-bundle>org.apache.jetspeed.demo.simple.resources.PickANumberResources</resource-bundle>
    <portlet-info>
    <title>Change TITLE</title>
    </portlet-info>
    <portlet-preferences>
    <preference>
    <name>TopRange</name>
    <value>100</value>
    </preference>
    </portlet-preferences>
    </portlet>
    See.. i just replace that data in the portel-info/title.. and it changes the title in the pickANumber portlet change..
    But strange! i can't do the same way for the hello portlet
    Can someone tell me how to change the title in the hello portlet...
    Pls help.. i am running out of time!

    The hello portlet uses the title string in property file, thus you may need to modify the file "demo\WEB-INF\classes\org\apache\jetspeed\portlet\helloworld\resources\HelloWorldResources_en.properties" to change its title.

  • How to change the image of the favourtie portlet

    Can anyone tell me how can I change the image of the favourite
    portlet ? I found that I can only change the title text but not
    the image. Any clue ?
    Thanks.
    -Maggie

    This is a hard coded image in the 3.0.x releases of Portal.
    If you want to change it, the only way you can do it today is to
    replace the ml_us.gif file which you will find in
    $ORACLE_HOME/portal30/images
    This is the image for the US language, there will be one for
    each language installed. e.g. ml_f.gif for French.
    If you replace that gif file with an image of your own using the
    same file name, then yours will be rendered rather than the
    default.
    Regards
    Jason

  • Struts Support: "Cannot  parse the struts configuration file" when using the Struts Portlet Wizard

    I'm currently trying to deploy the struts-example webapp from Struts 1.1 RC1 into
    Weblogic Portal 8.1 using the Struts Portlet wizard made available by the "JSR
    168 and Struts Support" patch.
    I select the struts module successfully "struts-example" and am prompted for the
    location of name mangled configuration file (i.e "struts-config.xml" for struts-example
    becomes "jpf-struts-config-struts-example.xml").
    As soon as I hit next, I am prompted with a dialog informing that me that [Workbench]
    "Cannot parse the struts configuration file."
    Given that this is a file supplied with the struts distro and that I can deploy
    the struts-example to Vanilla WLS 8.1 without problems I suspect this is a problem
    with my attempt to use the Struts Portlet.
    Can anyone please help?
    Thanks,
    --Andy Hull

    I'm currently trying to deploy the struts-example webapp from Struts 1.1 RC1 into
    Weblogic Portal 8.1 using the Struts Portlet wizard made available by the "JSR
    168 and Struts Support" patch.
    I select the struts module successfully "struts-example" and am prompted for the
    location of name mangled configuration file (i.e "struts-config.xml" for struts-example
    becomes "jpf-struts-config-struts-example.xml").
    As soon as I hit next, I am prompted with a dialog informing that me that [Workbench]
    "Cannot parse the struts configuration file."
    Given that this is a file supplied with the struts distro and that I can deploy
    the struts-example to Vanilla WLS 8.1 without problems I suspect this is a problem
    with my attempt to use the Struts Portlet.
    Can anyone please help?
    Thanks,
    --Andy Hull

  • "Cannot  parse the struts configuration file" when using the Struts Portlet Wizard

    I'm currently trying to deploy the struts webapp from Struts 1.1 into
    Weblogic Portal 8.1 using the Struts Portlet wizard.
    I select the struts module successfully and am prompted for the
    location of configuration file.
    As soon as I hit next, I am prompted with a dialog informing "Cannot parse the
    struts configuration file."
    I have 't started my server.
    Thanks
    Kicha

    I'm currently trying to deploy the struts webapp from Struts 1.1 into
    Weblogic Portal 8.1 using the Struts Portlet wizard.
    I select the struts module successfully and am prompted for the
    location of configuration file.
    As soon as I hit next, I am prompted with a dialog informing "Cannot parse the
    struts configuration file."
    I have 't started my server.
    Thanks
    Kicha

  • Hiding portlets in the Available Portlets List

    Can’t seem to find a way to control who sees what in the Available Portlets List. It is obviously possible to hide the portlets from unauthorized users. For example regular user will only see Services Portlet in the Portlet Repository->Administration->Portal, while the user with more privileges will also see Export/Import.
    However I have a number of portlets that I want only be available to a certain group of users. Let’s say HR should have access to the portlet and no one else. I could tweak permissions of the pages and portlets so that portlet will disappear from the page for the unauthorized user, and such user will receive an error if he attempts to add this portlet to the page. But he can still see the portlet in the Available Portlets List. Not only that means that user often has a list of 50 items when he actually can only use 5 (very user-unfriendly IMO), but there are portlets I simple don’t want unauthorized people to know about.
    I thought Changing Provider Access rules will do it, but it seems to have no effect, or perhaps I just can’t figure it out.
    I’ll appreciate any thoughts or ideas.

    The portlet repository is a somewhat special page group. Enable item level security in the page group and assign the required privileges to users or groups of users to your providers/portlets listed in the portlet repository as sub-pages and items.
    Also, by moving around the items and sub-pages representing your portlets and providers you can easily re-arrange the view of portlet repository exposed through the Add Portlets page.
    Peter

  • How to display result in the same portlet

    Hi,
    I've a dynamic page with some links in there. I want to display the results of the links in the same portlet. Can anyone please let me know how can I achieve this?
    Thanks in advance.
    Regards,
    Jatinder

    You can check in portalstudio.
    Pls see Re: probem with databse connection using OCI driver

  • How add a image in the banner portlet like 'my links' in favourite portlet

    How can I add a image in the banner of a portlet, like the 'my links' image in the Favourite Portlet?
    Thanks in advance

    hi,
    The image mylinks is not rendered by the portlet. It is a part of the page. You can always do a similar thing like rendering the image in the same page before the portlet.
    Thanks,
    Sriram

  • Delegated task not listing in the BPEL Portlet when logged in as that user

    Hi All,
    A task delegated to say a user JCOOPER (which is picked from OID) is not listing in the BPEL Portlet when logged in as user jcooper...
    Is there any workaround to solve this issue?The issue persists in PROD environment..Somebdy pls suggest..
    Thanks,
    ChitraDevi D

    Hi All,
    Any body pls help out for this issue
    Thanks,
    ChitraDevi D

  • Is there any list for out of the box portlets that come with portal installation.

    Is there any list for out of the box portlets that come with portal installation?
    Ramesh

    Yes - it's in the online help, on the Learning About Your Portal : About Portlets page. Here is the content:
    Portlets Created Upon Install
    The following portlets (and their necessary portlet Web services and Remote Servers) are created when you install the portal:
    Folder Expertise:This portlet displays the list of folders for which the user is an expert. It is added to the User Profile page by default.
    General Information:This portlet displays the default Profile Page. It is added to the User Profile page default.
    Managed Communities:This portlet displays the list of communities managed by the user. It is added to the User Profile page by default.
    Portal Login:This portlet allows users to log in to the portal. You probably want to add this to the guest user's home page so that users can log in from the default page displayed when they navigate to your portal.
    Portal Search:This portlet allows users to search your portal and access their saved searches. Users might want to add this to their home page for easy access to their saved searches.
    The following portlet templates (and any necessary portlet web Services and Remote Servers) are created when you install the portal:
    Community Links:This template is used by the portal to create portlets that display the links saved in a Community Knowledge Directory folder. To learn more about Community Links Portlets, see Community Links Portlets.
    Content Snapshot:This template is used by the portal to create portlets that display the results of a Snapshot Query.
    You can also install the following functionality as part of the Optional Enterprise Web Components:
    [url[/url]Stored Content:This portlet template allows you to create portlets that display stored content that is periodically refreshed. You might use this type of portlet to display content that is resource-intensive or takes a long time to generate. To learn more about Stored Content portlets, see Stored Content Portlets.
    [url[/url]XML Source:This portlet template allows you to create portlets that can collect XML content from an external source and display it in the portal as HTML. To learn more about XML Source portlets, see XML Source Portlets.

  • Does anyone ever successful deploying the example portlet with wlcs3.2

    I followed the instructions in the document,
    and was able to bring up the portal, however, the nothing showed in the
    tutorial portlet but the title bar.
    There are no error message and I don't know how to find out what's wrong.
    I added debug message in the jsp, but saw none came out.
    I even removed the .class & rename the tutorial.jsp; but no different was
    made
    I'm use wl5.1 sp9
    Another note: I also followed "Enhancing the Example Portal Login", though
    the doc has some errors and was not clean
    where to add the code. I was able to login but the points are not
    incremented.
    Winnie

    hi all i'm a newbie to the forum. i have an iphone 3g which i have had since it came out. i switched 18months ago to the "dark side" and had an htc desire.  the battery life on the htc was rubbish but i had a spare battery and dock so could always have my phone and spare at full charge. i could also kill apps that were draining the battery and on one of my window screens there was a quick place to (using the multiple windows option) to switch off anything i wasn't using.
    my htc got stolen so i had a decision to make as to whether i moved back to iphone which i had become frustrated with as so much was locked down even to a non-techie like me, or go down the samsung galaxy s2 route.  once i'd heard about icloud that kind of clinched it as with android it was always good that you could move everything with you no matter what phone. anyhoo, i get my iphone 4s tomorrow and i'm a bit depressed about the posts regarding the battery life.  Was the reason Apple originally decided we could not access the battery due spoiling the look of the phone or so that competitors can't break into it?  either way looks like we come last in their consideration.
    To add to this i bought a macbook pro in June - my first mac since the 90s - which was another reason why i went with the iphone, but didn't get Lion OS and therefore will now have to buy the upgrade if i want to use the iCloud features.  All a bit pants so far and I haven't even got the phone yet!  sorry a ramble i know but nice to be on the forum anyway!

Maybe you are looking for

  • HT1751 My iTunes won't drag to my external hard drive...any suggestions?

    When I attempt to drag my iTunes library to my external hard drive, it will not transfer the folder.  I am using a Mac osx and a free agent external hard drive.  Any suggestions?

  • I need information on Appraisals

    Hi Experts, Can any one can provide information on followings APPCHANGE APPCREATE APPDELETE APPDISPLAY APPSEARCH APPTAKEBACK PPAD PPUP Please its very urgent.Correct answer will be rewarded Edited by: Zsolt Markus on Jan 4, 2008 11:02 AM

  • Need PDF file for FI-CA

    Hi Friends, Can any one help me, how to get PDF document for FI-CA (Contract Accounts Receivable and Payable (FI-CA) Thanks Chandra

  • Too many warmings from -Xlint

    I compile with -Xlint to be sure to catch warnings about potential problems in my code. Unfortunately, -Xlint spews out so much spam, it's difficult to pluck the few important warnings from the vast majority of unimportant ones. About 60-70% of my wa

  • I need help with error 107

    Trying to download After Effects. I keep getting error 107. What might be wrong?