Values not passed to the service VIEW FML

Hello

Use Tuxedo10g R3 on AIX 5.3.

I wrote a Tuxedo application model that takes the customer data and transmit these data to the Service via FML VIEW dependent and the server converts the data passed in capital letters and return to the customer...

I created the table field and FML VIEW dependent file and set the required environment variables and I built the client and the server.

After running the object module is called the service, but the values are not passed to the service and the data is not converted to uppercase.

The table field file is as follows:
"sampfml" 4 lines, 159 characters
# name number type flags comments
Chain of FIRSTSTR1 110-
Chain of SECONDSTR1 111-
String of 112 THIRDSTR1 -
FML VIEW dependent:
VIEWS sampview
indicator of County # type cname fbna size null

String firststr FIRSTSTR1 1-10. \0
String secondstr SECONDSTR1 1-10. \0
String thirdstr THIRDSTR1 1-10. \0
END
environment variables that I put are:
#FIELDTBLS
#
FIELDTBLS = sampfml, fields, Usysflds
#
#FLDTBLDIR
#
FLDTBLDIR = ${TUXDIR} / udataobj: ${APPDIR}
#
#VIEWDIR
#
VIEWDIR = ${APPDIR}
#
#VIEWFILES
#
VIEWFILES = sampview. V
my customer code:
IDENTIFICATION DIVISION.
PROGRAM-ID. SIMPCL.
AUTHOR. DEVELOPMENT OF TUX.
ENVIRONMENTAL DIVISION.
SECTION OF CONFIGURATION.
DATA DIVISION.
STORAGE SECTION OF WORK.
*****************************************************
* Definitions of tuxedo
*****************************************************
TPTYPE 01 - REC.
COPY TPTYPE.
*
TPSTATUS 01 - REC.
COPY TPSTATUS.
*
TPSVCDEF 01 - REC.
COPY TPSVCDEF.
*
TPINFDEF 01 - REC.
COPY TPINFDEF.
*
FML 01 - REC.
COPY FMLINFO.
*
01 MYFML.
F-05 DATA PIC X (10).
05 PIC S-DATA X (10).
T-05 DATA PIC X (10).
FILLER 05 PIC X (30).
*****************************************************
* Definitions log messages
*****************************************************
01 LOGMSG.
VALUE OF FILL 05 PIC X (8) ' SIMPCL:
LOGMSG 05-TEXT PIC X (50).
01 LOGMSG-LEN PIC S9 (9) COMP-5.
*
STRING 01 DATA.
COPY sampview.
ENTER 01-STRING.
05 S-FIRST PIC X (10).
05 S-SECOND PIC X (10).
05 S-THIRD PIC X (10).
PEAK USER-DATA-REC 01 X (75).
SECTION OF LIAISON.
******************************************************
* Start the program with command line parameters
******************************************************
THE PROCEDURE DIVISION.
MOVE DOWN-VALUES TO TPINFDEF-REC.
MOVE ALL THE LOGMSG TO LOGMSG-LEN.
START-SIMPCL.
LOGMSG-TEXT, MOVE "on the road".
PERFORM DES USERLOG.
PERFORM DES TPINIT.
ACCEPT S FIRST.
ACCEPT THE SECOND S.
ACCEPT S THIRD.
S-FIRST MOVEMENT FIRSTSTR.
SPEND S-SECOND TO SECONDSTR.
PASS S-THIRD AT THIRDSTR.
DISPLAY ' VALUES BEFORE: "-THE STRING DATA.".
DISPLAY "FML: ' MYFML.
PERFORM DES TPCALL.
DISPLAY "DATA AFTER CONVERSION:
DISPLAY FIRSTSTR.
DISPLAY SECONDSTR.
DISPLAY THIRDSTR.
PERFORM DES TPTERM.
MAKE THE PROGRAM EXIT.

*****************************************************
* Now put the customer in the system.
*****************************************************
-TPINIT.
MOVING TO USRNAME SPACES.
MOVE TO CLTNAME BOXES.
MOVE TO BOXES TO PASSWD.
MOVE TO BOXES TO GRPNAME.
MOVE 0 TO DATALEN.
TPU - DIP SET TO TRUE.
*
CALL FOR ASSISTANCE "TPINITIALIZE" TPINFDEF-REC
USER-DATA-REC
TPSTATUS-REC.

IF NOT OK
MOVE "TPINITIALIZE failed" LOGMSG-text
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT
END-IF.

*****************************************************
Issue of a TPCALL
*****************************************************
-TPCALL.
MOVE ALL MYFML FLM-LENGTH.
CALL "ENDS" WITH THE HELP OF MYFML FLM - REC.
OTHERWISE FOK
MOVE "FINALLY failed" LOGMSG-text
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT.
FUPDATE SET TO TRUE.
MOVE 'sampview' to VIEWNAME.
CALL "FVSTOF" WITH THE HELP OF STRING FML - REC MYFML-DATA.
OTHERWISE FOK
MOVE 'FVSTOF failed' to LOGMSG-TEXT
PERFORM DES USERLOG
FLM-DISPLAY STATUS
MAKE THE PROGRAM EXIT.

MOVE "FLM" REC-INDICATE THE TPTYPE-REC.
MOVE SPACES OF SUB-TYPE IN TPTYPE-REC.
MOVE ALL MYFML TO LEN.

GO "SIMPSRV" - NAME OF THE SERVICE.
TPBLOCK SET TO TRUE.
TPNOTRAN SET TO TRUE.
TPNOTIME SET TO TRUE.
TPSIGRSTRT SET TO TRUE.
TPCHANGE SET TO TRUE.

CALL FOR ASSISTANCE "TPCALL" TPSVCDEF-REC
TPTYPE-REC
MYFML
TPTYPE-REC
MYFML
TPSTATUS-REC.

IF NOT OK
MOVE "TPCALL failed" LOGMSG-text
PERFORM DES USERLOG
END-IF.

CALL "FVFTOS" WITH THE HELP OF STRING FML - REC MYFML-DATA.
OTHERWISE FOK
MOVE 'FVFTOS failed' to LOGMSG-TEXT
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT.

*****************************************************
* Let TUXEDO
*****************************************************
-TPTERM.
CALL FOR ASSISTANCE "TPTERM" TPSTATUS-REC.
IF NOT OK
MOVE "TPTERM failed" LOGMSG-text
PERFORM DES USERLOG
END-IF.

*****************************************************
* Saves messages in the userlog
*****************************************************
-USERLOG.
CALL FOR ASSISTANCE "USERLOG" LOGMSG
LOGMSG-LEN
TPSTATUS-REC.

*****************************************************
* Request for leave
*****************************************************
EXIT-PROGRAM.
MOVE 'done' LOGMSG-TEXT.
PERFORM DES USERLOG.
STOP EXECUTION.

My server code:
IDENTIFICATION DIVISION.
PROGRAM-ID. SIMPSRV.
AUTHOR. DEVELOPMENT OF TUX.
ENVIRONMENTAL DIVISION.
SECTION OF CONFIGURATION.
DATA DIVISION.
STORAGE SECTION OF WORK.
******************************************************
* Definitions of tuxedo
******************************************************
TPSVCRET 01 - REC.
COPY TPSVCRET.
*
TPTYPE 01 - REC.
COPY TPTYPE.
*
TPSTATUS 01 - REC.
COPY TPSTATUS.
*
TPSVCDEF 01 - REC.
COPY TPSVCDEF.
******************************************************
* Definitions of log messages
******************************************************
01 LOGMSG.
VALUE OF FILL 05 PIC X (10)
"SIMPSRV:
LOGMSG 05-TEXT PIC X (50).
01 LOGMSG-LEN PIC S9 (9) COMP-5.
******************************************************
* Data records user defined
******************************************************
STRING 01 DATA.
COPY sampview.
01 MYFML.
F-05 DATA PIC X (10).
05 PIC S-DATA X (10).
T-05 DATA PIC X (10).
FILLER 05 PIC X (30).
*
SECTION OF LIAISON.
*
THE PROCEDURE DIVISION.
*
START-FUNDUPSR.
MOVE ALL THE LOGMSG TO LOGMSG-LEN.
LOGMSG-TEXT, MOVE "on the road".
PERFORM DES USERLOG.

******************************************************
* Get the data that has been sent by the client
******************************************************
MOVE ALL MYFML TO LEN.
MOVING MYFML LOGMSG-TEXT.
PERFORM DES USERLOG.
CALL USING 'TPSVCSTART' TPSVCDEF-REC
TPTYPE-REC
MYFML
TPSTATUS-REC.

IF NOT OK
MOVE 'TPSVCSTART failed' to LOGMSG-TEXT
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT
END-IF.

IF TPTRUNCATE
MOVE "Data has been truncated" LOGMSG-TEXT
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT
END-IF.
MOVING FIRSTSTR LOGMSG-TEXT.
PERFORM DES USERLOG.
MOVING SECONDSTR LOGMSG-TEXT.
PERFORM DES USERLOG.
MOVING THIRDSTR LOGMSG-TEXT.
PERFORM DES USERLOG.
INSPECT THE FIRSTSTR CONVERSION
"abcdefghijklmnopqrstuvwxyz" to
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
INSPECT THE SECONDSTR CONVERSION
"abcdefghijklmnopqrstuvwxyz" to
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
INSPECT THE THIRDSTR CONVERSION
"abcdefghijklmnopqrstuvwxyz" to
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
MOVE FIRSTSTR TO S-FIRST.
MOVE SECONDSTR TO S-SECONDS.
MOVE THIRDSTR TO S THIRD.
MOVE 'Success' to LOGMSG-TEXT.
PERFORM DES USERLOG.
MOVE TO ENTER STRING LOGMSG-TEXT.
PERFORM DES USERLOG.
TPSUCCESS SET TO TRUE.
COPY TPRETURN REPLACEMENT
DATA-REC MYFML.

******************************************************
* Write an err messages disconnect
******************************************************
-USERLOG.
CALL FOR ASSISTANCE "USERLOG" LOGMSG
LOGMSG-LEN
TPSTATUS-REC.
******************************************************
* EXIT PROGRAM
******************************************************
EXIT-PROGRAM.
LOGMSG-TEXT, MOVE "has failed."
PERFORM DES USERLOG.
TPFAIL SET TO TRUE.
COPY TPRETURN REPLACEMENT
DATA-REC MYFML.

And when execution of the module of the object:
SIMPCL
Hello
Hello
World
VALUES BEFORE: Hello Hello World
FML:
DATA AFTER CONVERSION:
Hello
Hello
World
can anyone help me with this?

Thank you...

Hello

In the server program, you must call FVFTOS to convert the COBOL record FML buffer, then do the translation. After that, you must also call 'FVSTOF' to convert it back to FML. I can get the correct results with your program with these changes.

Customer
======================
IDENTIFICATION DIVISION.
PROGRAM-ID. CSIMPCL.
AUTHOR. DEVELOPMENT OF TUX.
ENVIRONMENTAL DIVISION.
SECTION OF CONFIGURATION.
STORAGE SECTION OF WORK.
*****************************************************
* Definitions of tuxedo
*****************************************************
TPTYPE 01 - REC.
COPY TPTYPE.
*
TPSTATUS 01 - REC.
COPY TPSTATUS.
*
TPSVCDEF 01 - REC.
COPY TPSVCDEF.
*
VALUES-01 TPINFDEF-REC VALUE LOW.
COPY TPINFDEF.
*
FML 01 - REC.
COPY FMLINFO.
*
01 MYFML.
F-05 DATA PIC X (10).
05 PIC S-DATA X (10).
T-05 DATA PIC X (10).
FILLER 05 PIC X (30).
*****************************************************
* Definitions log messages
*****************************************************
01 LOGMSG.
VALUE OF FILL 05 PIC X (8) ' CSIMPCL:
LOGMSG 05-TEXT PIC X (50).
01 LOGMSG-LEN PIC S9 (9) COMP-5.
*
STRING 01 DATA.
COPY sampview.
*
ENTER 01-STRING.
05 S-FIRST PIC X (10).
05 S-SECOND PIC X (10).
05 S-THIRD PIC X (10).
*
PEAK USER-DATA-REC 01 X (75).
SECTION OF LIAISON.
******************************************************
* Start the program with command line parameters
******************************************************
THE PROCEDURE DIVISION.
START-CSIMPCL.
LOGMSG-TEXT, MOVE "on the road".
PERFORM DES USERLOG.
PERFORM DES TPINIT.
MOVE 'Hi' to FIRSTSTR.
MOVE the 'Hello' to SECONDSTR.
MOVE the 'world' to THIRDSTR.
DISPLAY ' VALUES BEFORE: "-THE STRING DATA.
DISPLAY "FML: ' MYFML.
PERFORM DES TPCALL.
DISPLAY ' VALUES AFTER:
DISPLAY FIRSTSTR.
DISPLAY SECONDSTR.
DISPLAY THIRDSTR.
PERFORM DES TPTERM.
MAKE THE PROGRAM EXIT.
*****************************************************
* Now put the customer in the system.
*****************************************************
-TPINIT.
MOVING TO USRNAME SPACES.
MOVE TO CLTNAME BOXES.
MOVE TO BOXES TO PASSWD.
MOVE TO BOXES TO GRPNAME.
MOVE 0 TO DATALEN.
TPU - DIP SET TO TRUE.
*
CALL FOR ASSISTANCE "TPINITIALIZE" TPINFDEF-REC
USER-DATA-REC
TPSTATUS-REC.

IF NOT OK
MOVE "TPINITIALIZE failed" LOGMSG-text
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT
END-IF.

-TPCALL.
MOVE ALL MYFML FLM-LENGTH.
DISPLAY 'LENGTH OF MYFML.
FML-LENGTH DISPLAY.
CALL "ENDS" WITH THE HELP OF MYFML FLM - REC.
OTHERWISE FOK
MOVE "FINALLY failed" LOGMSG-text
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT
END-IF.
FUPDATE SET TO TRUE.
MOVE 'sampview' to VIEWNAME.
CALL "FVSTOF" WITH THE HELP OF STRING FML - REC MYFML-DATA.
OTHERWISE FOK
MOVE 'FVSTOF failed' to LOGMSG-TEXT
PERFORM DES USERLOG
FLM-DISPLAY STATUS
MAKE THE PROGRAM EXIT
END-IF.

MOVE "FLM" REC-INDICATE THE TPTYPE-REC.
MOVE SPACES OF SUB-TYPE IN TPTYPE-REC.
MOVE ALL MYFML TO LEN.

GO "SIMPSRV" - NAME OF THE SERVICE.
TPBLOCK SET TO TRUE.
TPNOTRAN SET TO TRUE.
TPNOTIME SET TO TRUE.
TPSIGRSTRT SET TO TRUE.
TPCHANGE SET TO TRUE.

CALL FOR ASSISTANCE "TPCALL" TPSVCDEF-REC
TPTYPE-REC
MYFML
TPTYPE-REC
MYFML
TPSTATUS-REC.
IF NOT OK
MOVE "TPCALL failed" LOGMSG-text
PERFORM DES USERLOG
END-IF.

CALL "FVFTOS" WITH THE HELP OF STRING FML - REC MYFML-DATA.
OTHERWISE FOK
MOVE 'FVFTOS failed' to LOGMSG-TEXT
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT
END-IF.

*****************************************************
* Let TUXEDO
*****************************************************
-TPTERM.
CALL FOR ASSISTANCE "TPTERM" TPSTATUS-REC.
IF NOT OK
MOVE "TPTERM failed" LOGMSG-text
PERFORM DES USERLOG
END-IF.

*****************************************************
* Saves messages in the userlog
*****************************************************
-USERLOG.
CALL FOR ASSISTANCE "USERLOG" LOGMSG
LOGMSG-LEN
TPSTATUS-REC.

*****************************************************
* Request for leave
*****************************************************
EXIT-PROGRAM.
MOVE 'done' LOGMSG-TEXT.
PERFORM DES USERLOG.
STOP EXECUTION.

Server
====================================
IDENTIFICATION DIVISION.
PROGRAM-ID. SIMPSRV.
AUTHOR. DEVELOPMENT OF TUX.
ENVIRONMENTAL DIVISION.
SECTION OF CONFIGURATION.

DATA DIVISION.
STORAGE SECTION OF WORK.
******************************************************
* Definitions of tuxedo
******************************************************
TPSVCRET 01 - REC.
COPY TPSVCRET.
*
TPTYPE 01 - REC.
COPY TPTYPE.
*
TPSTATUS 01 - REC.
COPY TPSTATUS.
*
TPSVCDEF 01 - REC.
COPY TPSVCDEF.
*
FML 01 - REC.
COPY FMLINFO.
******************************************************
* Definitions of log messages
******************************************************
01 LOGMSG.
VALUE OF FILL 05 PIC X (10)
"SIMPSRV:
LOGMSG 05-TEXT PIC X (50).
01 LOGMSG-LEN PIC S9 (9) COMP-5.
******************************************************
* Data records user defined
******************************************************
STRING 01 DATA.
COPY sampview.
ENTER 01-STRING.
05 S-FIRST PIC X (10).
05 S-SECOND PIC X (10).
05 S-THIRD PIC X (10).
*
01 MYFML.
F-05 DATA PIC X (10).
05 PIC S-DATA X (10).
T-05 DATA PIC X (10).
FILLER 05 PIC X (30).

*
SECTION OF LIAISON.
*
THE PROCEDURE DIVISION.
*
START-FUNDUPSR.
MOVE ALL THE LOGMSG TO LOGMSG-LEN.
LOGMSG-TEXT, MOVE "on the road".
PERFORM DES USERLOG.

******************************************************
* Get the data that has been sent by the client
******************************************************
MOVE ALL MYFML TO LEN.
MOVING MYFML LOGMSG-TEXT.
PERFORM DES USERLOG.
CALL USING 'TPSVCSTART' TPSVCDEF-REC
TPTYPE-REC
MYFML
TPSTATUS-REC.

IF NOT OK
MOVE 'TPSVCSTART failed' to LOGMSG-TEXT
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT
END-IF.

IF TPTRUNCATE
MOVE "Data has been truncated" LOGMSG-TEXT
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT
END-IF.

MOVE 'sampview' to VIEWNAME
CALL "FVFTOS" WITH THE HELP OF STRING FML - REC MYFML-DATA.
OTHERWISE FOK
MOVE "FVFTOS failed" LOGMSG-TEXT
PERFORM DES USERLOG
MAKE THE PROGRAM EXIT
END-IF.
MOVE 'DOING OK FVFTOS' LOGMSG-TEXT.
PERFORM DES USERLOG.
MOVING FIRSTSTR LOGMSG-TEXT.
PERFORM DES USERLOG.
MOVING SECONDSTR LOGMSG-TEXT.
PERFORM DES USERLOG.
MOVING THIRDSTR LOGMSG-TEXT.
PERFORM DES USERLOG.
INSPECT THE FIRSTSTR CONVERSION
"abcdefghijklmnopqrstuvwxyz" to
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
INSPECT THE SECONDSTR CONVERSION
"abcdefghijklmnopqrstuvwxyz" to
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
INSPECT THE THIRDSTR CONVERSION
"abcdefghijklmnopqrstuvwxyz" to
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
MOVE FIRSTSTR TO S-FIRST.
MOVE SECONDSTR TO S-SECONDS.
MOVE THIRDSTR TO S THIRD.
MOVE 'Success' to LOGMSG-TEXT.
PERFORM DES USERLOG.
MOVE TO ENTER STRING LOGMSG-TEXT.
PERFORM DES USERLOG.
FUPDATE SET TO TRUE.
MOVE 'sampview' to VIEWNAME.
CALL "FVSTOF" WITH THE HELP OF STRING FML - REC MYFML-DATA.
OTHERWISE FOK
MOVE 'FVSTOF failed' to LOGMSG-TEXT
PERFORM DES USERLOG
FLM-DISPLAY STATUS
MAKE THE PROGRAM EXIT
END-IF.

TPSUCCESS SET TO TRUE.
COPY TPRETURN REPLACEMENT
DATA-REC MYFML.

******************************************************
* Write an err messages disconnect
******************************************************
-USERLOG.
CALL FOR ASSISTANCE "USERLOG" LOGMSG
LOGMSG-LEN
TPSTATUS-REC.
******************************************************
* EXIT PROGRAM
******************************************************
EXIT-PROGRAM.
LOGMSG-TEXT, MOVE "has failed."
PERFORM DES USERLOG.
TPFAIL SET TO TRUE.
COPY TPRETURN REPLACEMENT
DATA-REC MYFML.

The result looks like,
The VALUES BEFORE: Hello Hello World
FML:
LENGTH MYFML
+ 0000000060
VALUES AFTER:
Hello
Hello
WORLD

In addition, in your client program FILLING only given size 10, not compatible with the side server, which is 30. I use the same size in the client and the server.
I also interested in why do you use style convert FML/VIEW? If both a pure COBOL, just with VIEW program is easier programming, just a suggestion.

Kind regards
Wayne

Tags: Fusion Middleware

Similar Questions

  • Could not connect to the service user profile Service.

    I have a little disconcerting problem.  Every day or two, I can not connect to Windows correctly.  When I start, select my account (which is also the unique administrator account) and enter my password, it spends an abnormally long time in the 'Starting Windows' screen, then I get the following message pop up in the notification area:

    "Unable to connect to a windows service.
    Windows could not connect to the service user profile Service.
    This problem prevents limited users to logon to the system.
    As an administrator, you can review... »

    Shortly after this message, I get a windows error message saying:

    "Location is not available.
    C:\Windows\system32\config\systemprofile\Desktop is not accessible.
    Access is denied. »

    This seems just a desktop computer black with only the Recycle bin icon on it, and the old Windows Start button in the taskbar.

    While trying to understand what is happening, I looked into the application of 'Problem reports and solution' in the control panel and found that every time this happens, I also have a corresponding event of "Stopped working" "Routing and remote access.

    I then restart using F8 at startup and choose the one that says something to the effect of "using the last good configuration known."

    I'm not sure what that means at all, but I hope that one of you people can help.

    Thank you!

    Hello any Leafs fan,

    Thanks for posting on the Microsoft answers Forum.

    Looks like you're running only because of using a system restore to get back when your system is running. Now, you want to know what caused it.

    Usually, when the above error occurs, it is due to a corrupt user profile.
    The best way to fix this is to remove the user profile.

    • Go to the Start button
    • Right click on computer
    • Go to the properties
    • Go to Advanced System Properties on the left pane
    • Select the Advanced tab
    • Go to the user profile Section and click on the settings button
    • Find the profile for the that you want to remove and click Remove.  (It's the best way to remove the local profile in Windows Vista).
    • Connection again and you will get a new profile.
    • To get your Favorites return, go to the old profile in C:\users and copy the data manually.

    The only way to identify what caused the error with the user profile is to try to reproduce it.

    If you have not installed the update of Windows, then you can go to Windows updates and see what are the updates must be installed and manually download them and install them one at a time. Between the installation of the system, make sure you have a restore point that you can go back to if necessary. Once an update is installed, then close and open a session back (or reboot if required by the software update) and see if you get the error user profile. If the error occurs, then go to Services and see if the user profile service is running and set to automatic.

    If you are not able to do anything when the problem occurs, then try to start in safe mode using the F8 key and see if the problem occurs in safe mode.

    You can also look in the event viewer to see if there is no dealing with event profile user or Windows Update errors.
    To get to the event viewer, you can type in eventvwr.msc in the box start the search. This will bring up the event viewer and you can view the summary logs and see what kind of errors you encounter.

    Please post with your results and if you need further assistance.

    Sincerely, Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • I've just updated to Firefox Beta 20. Not happy! The options "View Background Image" and "Image Mode" when you right-click is missing. How can I get that back?

    I've just updated to Firefox Beta 20. Not happy! The options "View Background Image" and "Image Mode" when you right-click is missing. How can I get that back?

    These entries should still be there if you right click on an image or an area with a background image.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance).

    • Do NOT click on the reset button on the start safe mode window or make changes.
  • Zip code does not match with the Service request number

    Hello
    I can, check the State of repair of my Xbox to the t.
    It keeps giving the same error (ZIP Code does not match with the Service request number).

    I tried to register the product.
    but it seems impossible, if it has a status of repair open.

    a catch 22.

    Hello

    I suggest you go through the following link.

    http://www.Xbox.com/en-us/

  • My xperia ray does not show in the service of update sony

    My xperia ray does not show in the service of update sony

    Run sus in compatibility mode for windows 7.

  • Windows could not connect to the Service Notification of system events

    Yesterday, everything was normal before turning off my computer. However, I saw a message "that Windows could not connect to the Service Notification of system events" after I turn it on now.

    My operating system is "Win7 Ultimate". What should I do to fix this?

    Hi Aporch,

    You can check if System Event Notification Service is enabled and set to automatic.

    Here's how you do it;

    1. Select start > run > and type services.msc.

    2. scroll down until you find System Event Notification Service and make sure that it is running and set to automatic.

    Also make sure Remote Procedure Call following the same steps above.

    3. restart your computer.

    If this does not help, try this:

    1. click on the Start button.

    2. type Cmd in the search text box.

    3. press on Ctrl-Shift-Enter keyboard shortcut to run command as administrator prompt. Allow elevation request.

    4 type netsh winsock reset at the shell command prompt, and then press the Enter key.

    5 restart the computer

    If please reply and let us know if your problem is resolved or if you need further assistance

    Aziz Nadeem - Microsoft Support

  • Windows7 when I migrated to the Working Group at the field of the firewall has crashed. And also it does not show in the services. In the firewall rules of incoming and outgoing traffic is missing.

    In my windows7 when I migrated to the task force to the area, crashed by the firewall. And also it does not show in the services. In the firewall rules of incoming and outgoing traffic is missing.

    Hello arjunpottekkad,

    It is disheartening to know that have problems you with the firewall. As I understand it the incoming and outgoing traffic rules are missing from the firewall.

    The question you posted would be better suited in the TechNet Forums . I would recommend posting your query in the TechNet Forums. You can follow the link to your question:

    Windows 7 IT Pro category

    Answer to us if you are having problems with the Windows Firewall or any other problem of Windows, and I'd be happy to help you again and try to correct the problem as soon as possible.

    Good day!

    Hope this information helps.

  • Client is not authenticated to the Service of the inventory of VMware

    Dear friends,

    I am facing many problems with our vCenter. Its has started with lack material and discovery tab, I am unable to connect using the web client. I tried to dig the cause but could not get anywhere as several articles/discussion found.

    I get the error message saying "The Client is not authenticated at the Service of the inventory of VMware". Something that I found while troubleshooting is in the identity source SSO under the local host, the abbreviated name of the remote vCenter (DC) is added and as default instead of the local name. Is this normal? We also have a MRS. in our infra, FYI.

    I join DS newspapers which is full of information of identification/powers invalid source error no valid/unknown which I'm not quite understood.

    Can someone help me with the problem?

    Thank you!

    Best regards

    Hari.

    Because of studies and solved my problem with the article below.

    Re - around the and the reinstatement of VMware vCenter Server 5.1 / 5.5 and components (2033620) | VMware KB#register vCenter Inventory Service with vCenter Single Sign-On


    Thank you!

  • Could not connect to the Service Provisioning (from Studio EID)

    Hello

    I installed stand-alone short 3.1 in my reserved instance.

    Short server and server ETL Integrator, Studio server Provisioning Service is installed successfully and all servers are up.

    I checked the State of Service Provisioning as well and here's the status.

    Information Provisioning Service 3.1.0.0 short Oracle discovery review 2484

    Short Server Communication SUCCESS

    Access database backend SUCCESS

    Still, I get error "Could not connect to the Service Provisioning" when configuring Studio EID commissioning Service.

    All servers have been installed in SSL mode and follows the JSON string I used to set up PS for EID Studio.

    {

    "port": "8202."

    'server': 'localhost', //tried with the hostname as well and same was the mistake.

    'sslConfig': {}

    "caFile": "endecaServerTrustStore.ks",

    "caPassword:" *,"

    "FichierCert": "endecaServerClientCert.ks",

    "SubscriptionId" *:

    }

    }

    How to solve this problem?

    Thank you

    Sandeep,

    You have endecaServerTrustStore.ks and endecaServerClientCert.ks in the record studio?

  • VCSA 5.5 Client is not authenticated to the Service of the inventory of VMware

    NEI miei con test appliance del virtual Center sto con problemi con autenticazione riscontrando Active directory.

    Ho put server it dominio. Misconfigured it dominio nei percorsi di autenticazione, the appliance correctly tutti gli e users vede I gruppi.

    Nella sezione vCenter Users and Groups ho added he mio user AD al gruppo administrator, per cui nel gruppo [email protected] e even he mio account AD

    Provo a collegarmi tramite it customer web e mi loggo, by cui integrazione seems funzionare, da mi my i seguenti if:

    Client is not authenticated at the Service of inventory - VMware https://192.168.0.130:10443

    Nel pannello task:

    Failed to create the object managed - urn: vmomi:TaskManager:TaskManager:14F157BB - DC2B - 4 C 29-87 D 0-CD8351E33092.

    Customer Tramite non mi fa autenticare. MI dice che sono distant credenziali

    Ragazzi, sono riuscito!

    Nella configurazione SSO--> identity source ho injected the prima voce e Active Directory not her seconda voce.

    Avevo injected her seconda voce, perched in molti e post tutorial che ho trovato knew internet used di utilizzare quella.

  • All items not protected from the Web Viewer

    Hello together,

    We use the Web Viewer for marketing stuff and send us an E-Mail with the link to the articles very often. The problem is: there are about 15 unprotected articles, only a few are displayed in the browser. Once the message appears: "Please buy this question!" - Although the article is not protected. Is it possible to display all items not covered in the Web Viewer?

    Thank you

    You can set a lower limit of Paywall threshold in your account application in respect of the Administration of the accounts. You can increase the Paywall threshold to allow all items not covered in the web viewer.

    You can also check this link for more information: http://www.adobe.com/devnet/digitalpublishingsuite/articles/integrated-social-sharing-with-num digital edition - suite.html

  • Siebel field values are not passed to the OPA: error on WD Smoke Test

    Hello

    I installed OPA siebel connector locally and deployed determination determination of web and server to tomcat server. The 'DS smoke Test' button works well, but the 'WD Smoke Test' does not work correctly. After the installation by clicking on the button opens a pop-up window with "page cannot be displayed".

    I changed the symbolic for 'Employee' as URL:

    http://localhost: 8085/siebel-web-determinations/startsession/AdminSmokeTest

    (from the original one: http://localhost:8085 / siebel-web-determinations/startsession/AdminSmokeTest/en-US? user = [UserID] & caseID =, [UserID], [ObjectID], AdminSmokeTest)

    This show opens the popup window and and it asks the question ' what is the text of valid user?' by clicking on it application "which is a Siebel Admin user's first name?" then the subsequesnt questions and after the last questions it shows if it is valid Siebel Admin record ot not. If the rule works correctly.

    Now my questions are:
    1. how the Siebel field values will be passed to the determination of the Web? Ideally result response (if that's a record valid sadmin) should have been displayed in the window pop up directly by clicking on the button 'WD Smoke Test' with the employee field values passed, instead he asks for input.

    2. the field mappings are definde in the automation of the Admin-Policy-> show mappings. The field values are passed correctly to the server of determination, but how to pass for determination of the Web? The same mapping works for the determination of the Web as well?

    3. If I use the old url for employee (http://localhost: 8085/siebel-web-determinations/startsession/AdminSmokeTest/en-us? user = [username] & caseID =, [UserID], [ObjectID], AdminSmokeTest) the user id is passed correctly but it is throwing an error.

    4. in the Administration - policy Automation-> Web determinations it gives the following error.

    [An error occurred when loading the case ID "8SIA-82CJP, SADMIN, AdminSmokeTest".
    This error has been recorded and is available in the application logs.

    Support and assistance please contact [email protected]].

    If I change the url as before, then he asks the same questions. What is this point of view?

    Thanks in advance!

    Kind regards
    ALIOU

    ALIOU,

    One of the key things to note about the OPA Web determinations for Siebel is which is needs component EAI run on the Siebel server for it to work. There is an article on this in the installation guide where there you preform a test to verify that EAI_ANON_ENU is running on the Siebel server (located on pages 12-13 on the installation guide).

    1. for determinations of Web works properly, you must leave the URL token exactly as indicated in the installation guide. In addition, determinations Web use EAI (mentioned above) to pass information to the Web of Siebel determinations.

    2. same as number 1.

    3. again once it goes back to check that the EAI runs.

    4. make sure that the user you are logged in as has the responsibility to use this point of view.

    In addition to all this... once EAI works you need to check the incoming Web Service URL and point them to the location of the IAE but also change the path to the IAE in the file data-siebe - adapt .properties. Also, be sure to match the user name and password in this file for what you use to connect to Siebel with.

    -Adam Starr

  • Prompt dashboard value does not pass in the report

    Hello

    I use OBIEE 10 g. The problem is in Oracle BI answers

    I have a guest orders and its report. In the prompt, in one of the column, I use sql result. The sql query is a query of sup of co related where I used the 2 tables. employee_data and employee_region. The reason to use the subquery is that there is no column data_center in employee_data table. He has records for all data_center e.g. USA, UK, IND, AUSTRALIA etc. so I used the query sub with condition that gives the result on a center of particular data (here's of the U.S.) and the output of the query of this sub is entered for the main request. And the guests works very well and gives the correct result

    The sql query used for the column in the prompt (in Oracle BI answers) as
    SELECT EMPLOYEE_DATA.ENAME FROM EMPLOYEE WHERE EMPLOYEE_DATA.ENAME IN (SELECT EMPLOYEE_REGION.ENAME FROM EMPLOYEE WHERE EMPLOYEE_REGION.DATA_CENTER = 'USA')
    In the report, there are now 2 coulmns. -EMPLOYEE_DATA. ENAME and EMPLOYEE_REGION. DATA_CENTER
    I used the main column EMPLOYEE_DATA. ENAME to filter as a "guest."

    The problem is that the value from the prompt is failed at the prompt of the report, what I found. Because, rather than show the result for 'USA' data_center, it also shows the other data_center (UK, IND, AUSTRALIA) data.

    How to filter the condition I should use for EMPLOYEE_DATA. ENAME column in the report so that the prompt value will change to the report correctly?

    Thank you

    Published by: Kuldip on 21 February 2013 06:17

    Hi Kuldip,

    If a direct column is not used in the prompt then it would not strain the direct relationship with column with guest. In your case try using a variable presentation. Define a variable presentation in the command prompt and use the presentation variable to filter the report.

    Let me know if it worked.

    Kind regards
    Jay

  • Weather gadget not working - could not connect to the service

    original title: weather gadget does not!

    I have Windows 7 Ultimate 64 - bit and my weather gadget does not work, it displays a message "unable to connect to the service.

    I also tried turning off the firewall and antivirus , but it still doesn't work for me.

    Update:
    Microsoft has DISABLED the weather gadgets and currency via a recent update of security, because of worries about the vulnerability associated with these gadgets running on your computer. You can read more here: http://support.microsoft.com/kb/2719662 . Adjust the settings of your computer and all these other 'suggestions' people are, will NOT work. The function has been REMOVED from the operating system. It has also been removed from Windows 8 operating system. There are "theorists" who agrees that there is a security problem in the gadgets or Microsoft just doesn't support gadgets (usually from third party software) and has therefore disabled them in Windows 7 and eliminated in Windows 8.
    Thanks to DaveNYC for the Info. Pass the word, because a lot of people is facing this problem just like you.
  • Gadgets can not connect to the service

    This is my 4th time formatted my windows 7, but doesn't happen only to the now. My gadgets Google desktop cannot connect to the service. I tried the solutions which are posted on the site and I tried 3 different ways, but still does not work.

    Make sure that your Internet Explorer is not set to work offline.

    Update:
    Microsoft has DISABLED the weather gadgets and currency via a recent update of security, because of worries about the vulnerability associated with these gadgets running on your computer. You can read more here: http://support.microsoft.com/kb/2719662 . Adjust the settings of your computer and all these other 'suggestions' people are, will NOT work. The function has been REMOVED from the operating system. It has also been removed from Windows 8 operating system. There are "theorists" who agrees that there is a security problem in the gadgets or Microsoft just doesn't support gadgets (usually from third party software) and has therefore disabled them in Windows 7 and eliminated in Windows 8.
    Thanks to DaveNYC for the Info. Pass the word, because a lot of people is facing this problem just like you.

Maybe you are looking for