User feedback on project

I want to insert a link in my email that a user can click to
open an email to send me questions, suggestions. Has anyone done
this? I do not have RoboHelp Server 6, which offers reports in some
form about users. I simply would like to have the users be able to
contact me directly so that I can be more proactive and responsive
to their concerns and issues.

Peter, I went to your Website and reviewed snippets. I found
only one topic that might be close to my question - "Mail This
Topic". I reviewed the information, but it is not quite what I
need. What I want is to put a link in one or more of my topics -
such as the overview I do for each section, that says something
like, "Send your comments or suggestions to Kitty Martin." This is
for internal help files and thus the link would be to my email
address within my company. When the user clicks on the link in that
topic, the Help system displays/opens an email message. The To:
contains my email address and user can write message about the
topic.
I read about this last fall in a STC Intercom July/August
2006 article "Obtaining User Feedback:" Author is Jeremy Webb and
it was about sending an email message using JavaScript. I followed
his instructions, but ultimately the link would not work. I
corresponded with him, showed him exactly what I had done, and he
verified everything was okay. But still didn't work. When I
previewed my topic I kept getting RH HTML messages about the
reference to the feedback.js file contains illegal characters and
will not be shown in Project Manager.
The basic steps for his process involved creating the message
in Notepad, saving as "feedback.js", copying that Notepad file and
pasting it into the project top folder. Then you add the
Feedback.js file to the RH Baggage file, add links in topics to the
Feedback function. Then you also have to add some text to the
TrueCode in the topics.
Since his process has not worked for me, I a searching for
another way. I have been requested to include this feedback option
in my new project. Last fall I was using RH5 for projects, so I
thought perhaps it would be different now that I have RH6. Still
doesn't work.

Similar Messages

  • Using Qualtrics Interceptor for End-User Feedback

    Hi,
    I've been managing my company's online help system for a few years now (currently using RoboHelp 9 WebHelp) and I've been getting some questions about deploying more user feedback options. One tool that we've been using on some of our marketing sites is Qualtrics Interceptor.
    I was wondering if anyone has used this or whether it can work in the RoboHelp environment? The javascript code is placed in the header of the landing page, and would create a pop-up with a link to Qualtrics site when the user closes the Help system. I'm pretty sure that this won't work, but I can't test it on our staging server at this time.
    Thanks

    Why not try faking it out with a test project published to a local fake web server? Peter Grainge talks about a company that offers a free one in his discussion about the Chrome browser security issue (grainge.org)

  • How to capture the user activities in Project Server 2010

    Hi
    I want  to capture the user activities from Project Server 2010 like when a user has saved and published etc.
    Is there any possibility that we can get the user activities data from sql server.
    Please throw some light on the same.
    Thanks
    Geeth If you feel that the answer which i gave you is Helpful please select it as Answer/helpful.

    Hi Geetha,
    As far as I know, there is no such information stored in Project Server DB.
    You can have this kind of information by project, such as the ProjectModifiedDate in the Reporting DB (MSP_EPMProject_userView). I also know that there is a PROJ_LAST_SAVED date in the Draft DB. But be aware that querying in the Draft DB is not supported
    by MS.
    Another way would be doing some custom code, storing in a separate DB each save and publish operation per user.
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • Sflock: simple X screen locker with basic user feedback

    There are several applications out there that lock the X display. On the one side of the spectrum you have xscreensaver and xlockmore which provide screensavers and on the other side you have slock which provides nothing. sflock is an application that is built as an extension to slock, which provides very basic user feedback.
    The need for me arrived because I wanted a screen locker that was trustworthy and that looks ok. Because I have no interest in screensavers and the xscreensaver unlock screen is one of the most ugly things I have ever seen, I turned to slock. This works fine, but there is no real way to tell that the screen is locked.  You just type a password on a black screen and if it's correct, the screen gets unlocked. fslock (at least the first version) shows a line on the screen and displays asterisks for every character entered.
    The goal of the application is to be simple and small, but still look good. You can install sflock from the AUR under the name sflock-git or download it directly from github. Suggestions are of course welcome.

    I've been trying to get this to use Xft for rendering the fonts, but this is essentially my first time doing anything in C. Sflock builds properly but segfaults when I try to run it.
    diff --git a/config.mk b/config.mk
    index 3a42077..b6a72ed 100644
    --- a/config.mk
    +++ b/config.mk
    @@ -12,8 +12,8 @@ X11INC = /usr/X11R6/include
    X11LIB = /usr/X11R6/lib
    # includes and libs
    -INCS = -I. -I/usr/include -I${X11INC}
    -LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext
    +INCS = -I. -I/usr/include -I${X11INC} -I/usr/include/freetype2
    +LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext -lXft
    # flags
    CPPFLAGS = -DVERSION=\"${VERSION}\" -DHAVE_SHADOW_H
    diff --git a/sflock.c b/sflock.c
    index 72b076b..3c51823 100644
    --- a/sflock.c
    +++ b/sflock.c
    @@ -12,10 +12,12 @@
    #include <string.h>
    #include <unistd.h>
    #include <sys/types.h>
    +#include <fontconfig/fontconfig.h>
    #include <X11/keysym.h>
    #include <X11/Xlib.h>
    #include <X11/Xutil.h>
    #include <X11/extensions/dpms.h>
    +#include <X11/Xft/Xft.h>
    #if HAVE_BSD_AUTH
    #include <login_cap.h>
    @@ -79,7 +81,10 @@ main(int argc, char **argv) {
    XColor black, red, dummy;
    XEvent ev;
    XSetWindowAttributes wa;
    - XFontStruct* font;
    + XftFont *font;
    + XftColor *xftcolor;
    + XftDraw *xftdraw;
    + XGlyphInfo *extents;
    GC gc;
    XGCValues values;
    @@ -145,14 +150,14 @@ main(int argc, char **argv) {
    XDefineCursor(dpy, w, invisible);
    XMapRaised(dpy, w);
    - font = XLoadQueryFont(dpy, fontname);
    + font = XftFontOpenXlfd(dpy, screen, fontname);
    + XftColorAllocName(dpy, DefaultVisual(dpy, screen), DefaultColormap(dpy, screen), "white", xftcolor);
    if (font == 0) {
    die("error: could not find font. Try using a full description.\n");
    gc = XCreateGC(dpy, w, (unsigned long)0, &values);
    - XSetFont(dpy, gc, font->fid);
    XSetForeground(dpy, gc, XWhitePixel(dpy, screen));
    for(len = 1000; len; len--) {
    @@ -187,7 +192,8 @@ main(int argc, char **argv) {
    if (update) {
    XClearWindow(dpy, w);
    XDrawLine(dpy, w, gc, width * 3 / 8 , (height + baroffset) / 2, width * 5 / 8, (height + baroffset) / 2);
    - XDrawString(dpy,w,gc, (width - XTextWidth(font, passdisp, len)) / 2, (height+42) / 2, passdisp, len);
    + XftTextExtentsUtf8(dpy, font, (XftChar8 *)passdisp, len, extents);
    + XftDrawStringUtf8(xftdraw, xftcolor, font, (width - extents->width) / 2, (height+42) / 2, (XftChar8 *)passdisp, len);
    update = False;
    @@ -251,7 +257,9 @@ main(int argc, char **argv) {
    XUngrabPointer(dpy, CurrentTime);
    XFreePixmap(dpy, pmap);
    - XFreeFont(dpy, font);
    + XftFontClose(dpy, font);
    + XftColorFree(dpy, DefaultVisual(dpy, screen), DefaultColormap(dpy, screen), xftcolor);
    + XftDrawDestroy(xftdraw);
    XFreeGC(dpy, gc);
    XDestroyWindow(dpy, w);
    XCloseDisplay(dpy);

  • User Feedback/Guestbook

    Hello there,
    Can anyone help me to create just a simple means for the user
    to leave feedback concerning the layout, functionality of the site,
    etc - rather like a guestbook.
    Regards,
    Kristopher (UK).

    Hey, robosteve!
    The RoboHelp Server 7 does indeed provide user feedback
    reports!
    In previous versions of the old RoboEngine (v4) FlashHelp was
    not supported. However, when Adobe took over development, they
    enhanced this feature and it is now provided as "FlashHelp Pro".
    As Rick says, you won't get user feedback by a person's name
    (privacy issues) but you will get a robust set of information from
    users as they access various topics. This can greatly help your
    ability to continuously improve the quality of your help system.
    You can read more specifically about the reports here (though
    it focuses on RH Server 6, the article is valid for RH Server 7 as
    well:
    Adobe
    RoboHelp Server 6 improves the feedback loop
    Thanx,
    John

  • Re-activate option to provide user feedback

    I accidently closed the option to send user feedback after new install of Firefox 7.0.1, how do I re-activate this option?

    you can send us feedback by here
    * http://input.mozilla.com/en-US/feedback

  • Unable to find MSAD users in the projects- Planning app- Access contol re..

    Hello,
    I have configured MSAD and I could see all the users and groups. Not just MSAD but also native users
    I was able to provision them and also access that application using that user.
    But I don't see those user list in Projects ->PLanning app->Access control report or when I choose a member and try to assign access.
    Could anyone please tell me where I am going wrong?
    Do I have to do anything else to have them appear?
    please suggest.
    Thanks a lot.

    This is what I see when I tried to do as you said
    C:\Hyperion\deployments\WebLogic9\bin>echo off
    JAVA Memory arguments: -Xms256m -Xmx512m
    WLS Start Mode=Production
    CLASSPATH=C:\Hyperion\common\CLS\9.3.1\lib\cls-9_3_1.jar;C:\Hyperion\common\SAP\
    lib;;;C:\bea\patch_weblogic910\profiles\default\sys_manifest_classpath\weblogic_
    patch.jar;C:\bea\jrockit90_150_04\lib\tools.jar;C:\bea\WEBLOG~1\server\lib\weblo
    gic_sp.jar;C:\bea\WEBLOG~1\server\lib\weblogic.jar;C:\bea\WEBLOG~1\server\lib\we
    bservices.jar;;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbclient51.jar;C:\bea\W
    EBLOG~1\server\lib\xqrl.jar;;C:\bea\WEBLOG~1\integration\lib\util.jar;
    PATH=C:\Hyperion\common\CSS\9.3.1\bin;C:\Hyperion\common\SAP\bin;;;C:\bea\patch_
    weblogic910\profiles\default\native;C:\bea\WEBLOG~1\server\native\win\32;C:\bea\
    WEBLOG~1\server\bin;C:\bea\jrockit90_150_04\jre\bin;C:\bea\jrockit90_150_04\bin;
    C:\Hyperion\AnalyticServices\bin;c:\oracle\client\10.1\bin;c:\oracle\client\10.1
    \jre\1.4.2\bin\client;c:\oracle\client\10.1\jre\1.4.2\bin;C:\Program Files\Suppo
    rt Tools\;C:\Program Files\Windows Resource Kits\Tools\;C:\WINDOWS\system32;C:\W
    INDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Intel\DMIX;C:\Program Files\3PA
    R\MPIO\;C:\monitor\Patrol3\bin;C:\Hyperion\common\CLS\9.3.1\bin\windows;C:\Hyper
    ion\AnalyticServices\bin;C:\bea\WEBLOG~1\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.5.0_04"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
    BEA JRockit(R) (build R26.0.0-189-53463-1.5.0_04-20051122-2041-win-ia32, )
    Starting WLS with line:
    C:\bea\jrockit90_150_04\bin\java -jrockit -Xms256m -Xmx512m -Dhyperion.home=C:
    \Hyperion -Dweblogic.j2ee.application.tmpDir=C:\DOCUME~1\hyperion\LOCALS~1\Temp\
    4\hyperion -Dweblogic.security.SSL.trustedCAKeyStore="C:\bea\weblogic91\server\l
    ib\cacerts" -da -Dplatform.home=C:\bea\WEBLOG~1 -Dwls.home=C:\bea\WEBLOG~1\ser
    ver -Dwli.home=C:\bea\WEBLOG~1\integration -Dweblogic.management.discover=false
    -Dweblogic.management.server=http://localhost:7001 -Dwlw.iterativeDev=false -D
    wlw.testConsole=false -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\bea\patch
    weblogic910\profiles\default\sysextmanifest_classpath -Dweblogic.Name=Hyperio
    nPlanning -Djava.security.policy=C:\bea\WEBLOG~1\server\lib\weblogic.policy we
    blogic.Server
    <Mar 20, 2009 1:20:46 PM EST> <Info> <WebLogicServer> <BEA-000377> <Starting Web
    Logic Server with BEA JRockit(R) Version R26.0.0-189-53463-1.5.0_04-20051122-204
    1-win-ia32 from BEA Systems, Inc.>
    <Mar 20, 2009 1:20:50 PM EST> <Info> <Management> <BEA-141107> <Version: WebLogi
    c Server 9.1 Mon Dec 12 19:26:33 EST 2005 689178 >
    <Mar 20, 2009 1:20:52 PM EST> <Emergency> <Management> <BEA-141151> <The admin s
    erver could not be reached at http://localhost:7001.>
    <Mar 20, 2009 1:20:53 PM EST> <Info> <Configuration Management> <BEA-150018> <Th
    is server is being started in managed server independence mode in the absence of
    the admin server.>
    <Mar 20, 2009 1:20:53 PM EST> <Info> <WebLogicServer> <BEA-000215> <Loaded Licen
    se : C:\bea\license.bea>
    <Mar 20, 2009 1:20:53 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Mar 20, 2009 1:20:53 PM EST> <Info> <WorkManager> <BEA-002900> <Initializing se
    lf-tuning thread pool>
    <Mar 20, 2009 1:20:53 PM EST> <Notice> <Log Management> <BEA-170019> <The server
    log file C:\Hyperion\deployments\WebLogic9\servers\HyperionPlanning\logs\Hyperi
    onPlanning.log is opened. All server side log events will be written to this fil
    e.>
    <Mar 20, 2009 1:21:06 PM EST> <Notice> <Security> <BEA-090082> <Security initial
    izing using security realm myrealm.>
    <Mar 20, 2009 1:21:14 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STANDBY>
    <Mar 20, 2009 1:21:14 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    Creating rebind thread to RMI
    Cache Control is :public,max-age=2592000
    <Mar 20, 2009 1:21:16 PM EST> <Warning> <Log Management> <BEA-170011> <The LogBr
    oadcaster on this server failed to broadcast log messages to the admin server. T
    he Admin server may not be running. Message broadcasts to the admin server will
    be disabled.>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to ADMIN>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RESUMING>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default"
    is now listening on 170............:8300 for protocols iiop, t3, ldap, http.>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default[1
    ]" is now listening on 10............:8300 for protocols iiop, t3, ldap, http.>
    <Mar 20, 2009 1:21:17 PM EST> <Warning> <JMX> <BEA-149510>
    <Unable to establish
    JMX Connectivity with the Adminstration Server AdminServer at <JMXServiceURL:nul
    l>.>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RUNNING>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <WebLogicServer> <BEA-000360> <Server sta
    rted in RUNNING mode>
    java.rmi.ConnectException: Connection refused to host: 170...................; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    java.rmi.ConnectException: Connection refused to host: 170...................; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    java.rmi.ConnectException: Connection refused to host: 170......................; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    Setting Arbor path to: C:\Hyperion\common\EssbaseRTC\9.3.1
    Setting HBR Mode to: 2
    HBR Logging Config File : HBRServer.properties
    2009-03-20 13:23:59,283 WARN [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.ke
    rnel.Default (self-tuning)' com.hyperion.hbr.security.HbrSecurityAPI - Error ret
    rieving user by identity
    Embedded HBR initialized.
    [INFO] AuthChallengeProcessor - basic authentication scheme selected
    [INFO] AuthChallengeProcessor - basic authentication scheme selected
    [INFO] AuthChallengeProcessor - basic authentication scheme selected
    java.rmi.ConnectException: Connection refused to host: 170..............; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    [Fri Mar 20 13:24:24 EST 2009] Planning successfully notified HBR repository.
    java.rmi.ConnectException: Connection refused to host: 170...........; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive Method)
    at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    Edited by: [email protected] on Mar 20, 2009 11:36 AM

  • User feedback with maxChar attribute on TextInput

    I have a textinput with maxChars=6
    i would like to have some sort of user feedback when they attempt to type the 7th char.  (red border, tooltip, etc...)
    what would be the ideal way to achieve this?
    I don't see where there is an event dispatched when a user tries to type the 7th char ?

    Hi there,
    The change event would be a solution but a slightly more efficient solution would be to simply listen for a keyDown event. Here's a fast example that hopefully will help you get on the right track:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
        xmlns:mx            ="http://www.adobe.com/2006/mxml"
        backgroundColor     ="#FFFFFF"
        layout              ="absolute">
        <mx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.events.FlexEvent;
                import mx.controls.TextInput;
                private static const ALLOWED_MAX_CHARS:int = 6;
                private function onInputFieldFill(event:KeyboardEvent):void
                    if (event.charCode != Keyboard.LEFT &&
                        event.charCode != Keyboard.RIGHT &&
                        event.charCode != Keyboard.UP &&
                        event.charCode != Keyboard.DOWN)
                        var target:TextInput = event.currentTarget as TextInput;
                        if (target.text.length > ALLOWED_MAX_CHARS - 1)
                            target.text = target.text.slice(0, ALLOWED_MAX_CHARS);
                            Alert.show("You tried to add 7 characters!", "ERROR");
            ]]>
        </mx:Script>
        <mx:VBox
            width               ="100%"
            height              ="100%"
            horizontalAlign     ="center"
            verticalAlign       ="middle">
            <mx:TextInput
                id              ="userInputField"
                keyDown         ="onInputFieldFill(event)"/>
        </mx:VBox>
    </mx:Application>
    The code I posted is not perfect, it's an older file of mine that I have found and edited a bit so don't use it as it is.
    Blog: http://blog.wisebisoft.com
    With best regards,
    Barna Biro

  • User feedback reports

    I am considering upgrading to RoboHelp Server 7. Does this
    provide user feedback reports when using FlashHelp?
    Steve

    Hey, robosteve!
    The RoboHelp Server 7 does indeed provide user feedback
    reports!
    In previous versions of the old RoboEngine (v4) FlashHelp was
    not supported. However, when Adobe took over development, they
    enhanced this feature and it is now provided as "FlashHelp Pro".
    As Rick says, you won't get user feedback by a person's name
    (privacy issues) but you will get a robust set of information from
    users as they access various topics. This can greatly help your
    ability to continuously improve the quality of your help system.
    You can read more specifically about the reports here (though
    it focuses on RH Server 6, the article is valid for RH Server 7 as
    well:
    Adobe
    RoboHelp Server 6 improves the feedback loop
    Thanx,
    John

  • Abode Reader User Feedback and Suggestions

    Hi,
    I am new to this forum.
    I am currently using Abode 7.0 at the work place.
    I am interested in helping Abode to improve the products as I discover new ideas over time.
    May I know where should I post those ideas and user feedback ?
    Thanks
    Low

    Maybe you should try and upgrade to 9 and see if the things you want are already there. 7 is old.

  • Media Player Bookmark/User Feedback from Device

    Media Player Bookmark
    I like to listen to audio books.  We all realise that the mobile devices experience some severe slow down when multiple applications are running, especially the memory intensive multimedia apps.  Anyway, I think that it would be cool if there were some kind of "digital bookmark/restore point".  Right now, if i want to save where i've left off, I either have to leave the application running or make a note with the track/time that i've stopped listening.  If there were a prompt when you are exitting audio or video playing apps that asked if you would like to create a restore point that you can start back from or reference later, I think that would be great!  Just a request from an audio bookworm nerd.
    User Feedback from Device
    I think that the lack of ability to send immediate feedback or suggestions when they occur to users will ultimately make a huge difference between the BB product and its competition.  It took me about an hour before I gave up, about two months ago, when I was experiencing a perceived software issue, of trying to find a way to either directly access a forum from my device or go online with the device to BB forums only to find that they weren't very compatible with mobile device users.  Doesn't make much sense to me that you'd have a hard time accessing a companies web site that's in the mobile communication business from their own device.  Today, I spent about another hour signing up to every BB feedback panel, survey this, forum that to try and make a suggestion.  It's too hard!  I am dedicated to using the BB service until there is something more effective... user feedback is what will make the difference.
    It seems like there should be a way to install a direct feed app, preloaded on every device with a little 180/240 character box.  Not too much to be had to manage, not too little to where people can't get their point across.
    I'm sure it's been thought about before, but I'm left wondering why it's not there.?.
    Thank you to anyone with ideas or suggestions...especially if it helps me with my books!

    Regarding long mp3 bookmarks. (my experience with 9780).
    I had the requirement that when playing long MP3s (audiobook/podcast) I don't loose my place within the MP3. I am able to update the list of MP3s without loosing my place in the currently playing one. I don't loose my place when connecting the BB to a PC with the USB cable and using USB synch to copy files to the SDCard.
    All of these are accomplished by playing MP3s via File Manager/Play Folder feature.
    If you use play lists or other methods directly through the BB media player, you will loose your place as soon as you switch off the BB, escape the player, or connect the USB cable.
    If instead you use the file browser to go to the folder with the MP3s you wish to play (I have all my podcasts in one folder that I update manually) and select "Play Folder" from the context menu, the media player will open.
    If you escape the media player that is opened as per above, the last point in the played MP3 is remembered. This even survives any synchronization I do to the folder via USB or a soft power reset (ALT CAPS DEL). It remembers the spot in multiple MP3s to boot.
    This is a great handy feature. I'm glad it works with the 9780/OS6.

  • How do I connect multiple users to a project on Sharepoint for collaboration

    I have 2 users working in Robohelp 11.  I have uploaded a project to SharePoint 2010 and it seems to funtion fine with version control.  I would like to connect a second user to that same project on SharePoint so the 2 users can collaborate.  However, I don't see any options in Robohelp that allows for a user to connect to an existing project on sharepoint, only to upload a new project.  Please help.
    Thanks,
    Dan

    On the second PC, go to SharePoint and download the entire project. The easiest way is to open the SharePoint library in Windows Explorer.
    Then open the local copy with RoboHelp. That should be all.
    Kind regards,
    Willam

  • How to find enhancement RSAP0001 user exit EXIT_SAPLRSAP_001 project CMOD

    Hi,
    I need to find in one system the project in cmod that contains the enhancement RSAP0001 with user exit EXIT_SAPLRSAP_001.
    How do I proceed?
    Thanks a lot

    Simon,
    Goto CMOD and enter * and select F4 so that you will get the list of packages. Most of the clients we have naming terminology with BW. Pick one of them and go for components there you can see the interface.
    Double click on that you will see four classes. Select any one of them and write your logic.
    If you provide what exactly your are trying to do enhancements, so that will provide better solutions.
    Thanks
    Ganesh reddy.

  • How to get list of user connected to project server by day wise

    HI,
    I need to get a report as how many times user  is connected to the project server in a week.
    I have enabled web analytical reports but its showing only how many times a user is connected to site.I need date also
    Project server 2010 version.
    Can any one help me.
    EX:
    Resource name           Date                 Connected (yes/No)
    Vijay  kumar            1-11-2014             yes
    Vijay  kumar            2-11-2014             yes               
    Vijay  kumar            3-11-2014             no
    Vijay  kumar            4-11-2014             yes
    Vijay  kumar            5-11-2014             yes
    Vijay  kumar            6-11-2014              no
    Vijay  kumar            7-11-2014             yes
    Thank You, Kumar KSV

    What Badal Ratra gave you would be the basis for your query to populate your own table...Project Server does not give you a way to do a daily connect report
    One of the ways I would go about doing this would be to run a nightly query to update a table - fill it in with the necessary data and run your report off that newly created table
    High Level Steps:
    (1) Create a table in the Reporting Database call DailyVisits
    (1a) The table would have Name/Date/Connected columns 
    (1b) You wouldn't need a no answer for connected columns since the answer would always be yes, the result set would ONLY have users who connected for each day.  And really you would only need 2 columns since the "connected" column would always
    be Yes...
    (2) Create a query that would query the published database (msp_resources) for the current day and store the result set in the table DailyVisits
    (3) Put this query in a nightly task to append to the DailyVisits table @ 11:55pm (for example)
    (4) Let the query run and you'll have only the users who connected for that day - the DailyVisits table would represent users who visited every day.  
    As long as the query runs nightly you'll have the information you're looking for - the one caveat is that it will only be starting from the day you start running the query.  
    You could also append the older user (last_connect) information from the resources table from other users to populate the dates but that would only represent a single entry/single last connect date.  This "old" information would represent the
    base for the table.
    hth

  • Missing user-defined fields (project definition) in project inform. system

    Dear PS friends,
    I have extended the CI_PROJ structure with some user-defined fields.
    I have started report RCNCT001 (to analyze these new fields in the project information system). The include RCNPROJR was generated and contains the new fields (table XXL_DATA). Include RCNSOM00 was generated too. This is described in note 43493.
    But Iu2019m still missing the new user-defined fields in the dynamic selection of reports (e.g. CN40).
    What else I have to do? We use SAP_APPL : SAPKH60009
    Thanks in advance for any suggestions!

    have you used user defined field or custom field via exit CNEX......
    User defined fields are activated by configuration using field key
    If you added custom fields then check out OSS note 188663 on how to create a CUS view for dynamic selection.

Maybe you are looking for