Weblogic Tuxedo Connector configuration issue

Hi all,
I must implement a client app in Java running over Weblogic 9.23 to connect to a Tuxedo service using WTC (Weblogic Tuxedo Connector).
I'm using JATMI api based in this schema:
public String Toupper(String toConvert) throws TPException, TPReplyException {
Context ctx;
TuxedoConnectionFactory tcf;
TuxedoConnection myTux;
TypedString myData;
Reply myRtn;
int status;
try {
ctx = new InitialContext();
tcf = (TuxedoConnectionFactory) ctx.lookup("tuxedo.services.TuxedoConnection");
catch (NamingException ne) {
// Could not get the tuxedo object, throw TPENOENT
myTux = tcf.getTuxedoConnection();
myData = new TypedString(toConvert);
try {
myRtn = myTux.tpcall("TOUPPER", myData, 0);
} catch (TPReplyException tre) {
throw tre;
} catch (TPException te) {
throw te;
} catch (Exception ee) {
throw new TPException(TPException.TPESYSTEM, "Exception: " + ee);
myData = (TypedString) myRtn.getReplyBuffer();
myTux.tpterm(); // Closing the association with Tuxedo
return (myData.toString());
The point is the Tuxedo service provider gave me some examples written in C (not Java) which use TPINIT structure to supply programatically authentication params (usrname, grpname, cltname, ...) before starting the connection and calling tpcall().
Where do these params enter the model above? Should they be supplied programatically inside my client code or should they be configured in WTC?
Any help will be highly appreciated, many thanks

Hi:
This information is done under-the-covers through configuration:
"Security and client authentication is provided by configuring the Remote TDM and Imported Services MBean components of a WTCServer MBean. This pathway is created when the WebLogic Server is started and a WTCServer MBean is present in the config.xml file and assigned (targeted) to a server."
http://docs.oracle.com/cd/E13222_01/wls/docs91/wtc_atmi/Clients.html
Using WTC you are trying to call Tuxedo services through Tuxedo domains. Your Tuxedo service provider should have domains configured and provide you with
configuration information to define the remote access points and the services that are provided those those remote access points. Your WTC local access point will become
a remote access point to your service provider's domains.
Here is the WTC admin guide link:
http://docs.oracle.com/cd/E13222_01/wls/docs92/wtc_admin/index.html
If your Tuxedo service provider does not have domains configured then you can not use WTC. You will need to find out what ways they allow remote connections to access their Tuxedo services.
Regards,
Bob Finan

Similar Messages

  • How to configure Weblogic Tuxedo Connector ?

    Hi:
    I have 2 machines. One machine "A" installed with BEA TUXEDO 8.0 software.
    The other machine "B" doesn't have BEA TUXEDO 8.0 software but it has BEA WebLogic
    Server 6.1
    installed.
    My desire is to be able to make a successful application using WebLogic Tuxedo
    Connector from the machine "B" to machine "A".
    I have tried to follow the instruction for the WebLogic Tuxedo Connector example.
    However, I wasn't able to make the application work. I am suspecting that
    I must have BEA TUXEDO 8.0 software installed into machine "B" in order to make
    it work. Am I right or wrong?

    Khanh,
    You don't need Tuxedo installed on the same machine as WLS to use WTC.
    Your problem must be caused by some error in your configuration, either
    in the dmconfig on the Tuxedo side, or the xml config on the WTC side.
    I think you will need to post more detail to get any further help.
    Regards,
    Peter.
    Khanh Mai wrote:
    Hi:
    I have 2 machines. One machine "A" installed with BEA TUXEDO 8.0 software.
    The other machine "B" doesn't have BEA TUXEDO 8.0 software but it has BEA WebLogic
    Server 6.1
    installed.
    My desire is to be able to make a successful application using WebLogic Tuxedo
    Connector from the machine "B" to machine "A".
    I have tried to follow the instruction for the WebLogic Tuxedo Connector example.
    However, I wasn't able to make the application work. I am suspecting that
    I must have BEA TUXEDO 8.0 software installed into machine "B" in order to make
    it work. Am I right or wrong?

  • 'Weblogic Tuxedo Connector' remote services configuration

    Hi All,
    I'm trying to use Weblogic Tuxedo Connector to call an external Tuxedo from my
    Weblogic server.
    I have already configured a local domain for my weblogic server and a remote server
    for my external Tuxedo server, and it works fine...
    The only problem is that I have to define all services in my remote server (using
    T_DM_IMPORT entries in the wtc.xml configuration file) and I have more than 6000
    services running in my Tuxedo.
    Can I bypass this definition setting using some default value?
    Thanks for your help,

    Josep,
    The doc is not exactly correct. While it is true that the WTC
    configuration only
    provides for static configuration(there is no usage of runtime mbeans
    yet), the
    WLS SERVER does not need to be restarted in order for configuration
    changes to
    take effect. The WTC SERVICE must be restarted.
    The WTCService that is running on the the WLS server is turned on and off
    by deploying/undeploying the WTCServerMBean against the WLS server. The
    scenario that Johns suggested would be something like: get the new list
    of services
    exported by Tuxedo, modify the MBean configuration accordingly,
    undeploy/redeploy
    the WTCServerMBean. The cost is in loss of that particular WTCService
    for the
    recycling time but the WLS server is still available for some other WTC
    service.
    Sorry for the confusion.
    Bob Finan
    Josep Freixes wrote:
    I post this message just to let you known that I think that this cannot be done.
    In the WTC 7.0 documentation (see http://edocs.bea.com/wls/docs70/wtc_admin/Install.html#1107584),
    just before starting to explain the WTC MBean classes, you can read the following
    paragraph:
    This release of the WebLogic Tuxedo Connector provides only static configuration.
    If you need to change any parameters used to configure the WebLogic Tuxedo Connector,
    the WebLogic Server must be restarted for the changes to take effect. For example,
    you can not add or remove domain network links, change network addresses, or import
    or export new services.
    So we will need to wait until the next version of WTC.
    "John Wells" <[email protected]> wrote:
    That bit can be fixed in WLS 7.0. There are Management Beans I don't know the
    exact details of the Mbeans to use - look at the documentation) that can be used
    to dynamically add and remove services in WTC in WLS 7.0. You could create an
    Tuxedo EJB on the WLS side which uses those MBeans to progromatically change the
    list of services. On the Tuxedo side, you could create a daemon client that subscribes
    to events about service advertisement and then have this client call the EJB on
    the WLS side. It can be done, though it is something of a circuitous route...
    "Josep Freixes" <[email protected]> wrote in message
    news:[email protected]...
    Thanks for your help, John.
    The problem is not the one-time typing of all the service names. The problem
    is
    to get the list up-to-date from now on... and every change needs to
    restart the
    WebLogic Server to be applied...
    "John Wells" <[email protected]> wrote:
    I don't think there is any way to default the services going from
    WLS to
    Tuxedo.
    You just have to start typing... The only suggestion would be to
    get
    very friendly
    with your editor and figure out how to use its macros.
    "Josep Freixes" <[email protected]> wrote in message
    news:[email protected]...
    Hi All,
    I'm trying to use Weblogic Tuxedo Connector to call an external
    Tuxedo
    from
    my Weblogic server.
    I have already configured a local domain for my weblogic server
    and a
    remote
    server for my external Tuxedo server, and it works fine...
    The only problem is that I have to define all services in my remote
    server
    (using T_DM_IMPORT entries in the wtc.xml configuration file) and I
    have
    more
    than 6000 services running in my Tuxedo.
    Can I bypass this definition setting using some default value?
    Thanks for your help,
    [att1.html]

  • WebLogic Tuxedo Connector config question.

    I am not sured if I experienced a network configuration problem that my WebLogic
    Tuxedo Connector application from My machine "B" (which is a PC with window
    2000 and WebLogic Server 6.1 installed ) to My machine "A" (which is a UNIX
    work station with BEA TUXEDO installed).
    I have decided to do an experiment and receive a result like this:
    Situation 1:
    1) Machine "A" ( UNIX Work Station ... ) hosts a RMI server process.
    2) Machine "B" ( PC Win 2K ... ) run a RMI client process to request
    a service from RMI server above.
    Result: It 's OK
    Situation 2:
    1) Machine "B" hosts a RMI server
    2) Machine "A" run a RMI client to request a service from RMI server above.
    Result: NOT OK
    Does it mean that if my situation 2 doesn't work so is My WebLogic Tuxedo Connector
    application?
    Many Thanks
    Khanh

    Khanh,
    The samples/examples/wtc/atmi/simpserv example shows how to export
    a service defined in WLS to Tuxedo. The problem that you ran into can
    be anything from a configuration error to a usage that was not supported
    for the 6.1 release. Please check the example, your logs and the release
    notes for WLS/WTC 6.1.
    Bob Finan
    Khanh Mai wrote:
    I am not sured if I experienced a network configuration problem that my WebLogic
    Tuxedo Connector application from My machine "B" (which is a PC with window
    2000 and WebLogic Server 6.1 installed ) to My machine "A" (which is a UNIX
    work station with BEA TUXEDO installed).
    I have decided to do an experiment and receive a result like this:
    Situation 1:
    1) Machine "A" ( UNIX Work Station ... ) hosts a RMI server process.
    2) Machine "B" ( PC Win 2K ... ) run a RMI client process to request
    a service from RMI server above.
    Result: It 's OK
    Situation 2:
    1) Machine "B" hosts a RMI server
    2) Machine "A" run a RMI client to request a service from RMI server above.
    Result: NOT OK
    Does it mean that if my situation 2 doesn't work so is My WebLogic Tuxedo Connector
    application?
    Many Thanks
    Khanh

  • Weblogic Tuxedo Connector

    We are working on Weblogic Tuxedo Connector.(WTC)
    This basically allows a tuxedo client to acess EJBs deployed in weblogic server.
    Our aim is to transparently introduce EJBs which will replace the tuxedo service.
    In this transaction we are required to pass something like a structure inside
    structure to the EJB from
    the tuxedo client (which is written in C).
    We were able to pass a structure successfully.But we couldn't achieve this when
    it comes to nested structures .
    Some of the documents of WTC says this is possible.But in no documentation we
    were able to see any example which has implemented this.
    Please guide us on how to implement nested structures in WTC.

    WTC is included with WLS 6.1 (the separate download was only for WLS 6.0).
    Michael Girdley wrote:
    It's in the Tux downloads on our site.
    Michael Girdley
    BEA Systems
    Learning WebLogic? Buy the book:
    http://www.learnweblogic.com/
    At Amazon:
    http://www.amazon.com/exec/obidos/ASIN/0130911119/learnweblogic/103-6817548-
    3834229
    "Mike Mormando" <[email protected]> wrote in message
    news:3bb48f9f$[email protected]..
    Is this included in the wlserver 6.1 download?
    How would I get a hold of it for evaluation?
    tia
    Mike

  • KM DMS connector: Configuration issue

    Hi experts,
    I follow this thread to configure my DMS connector:
    https://forums.sdn.sap.com/thread.jspa?threadID=1411690&messageID=7884645
    After that, i've moved to KM contents -> dms folder. Unfortunately, i've got the following error:
    Exception Class: class java.util.MissingResourceException
    Exception Message: Can't find bundle for base name com.sap.pct.plm.dmsrmconnectorforkm.modeledproperties, locale en
    Could you provide me more information about this issue?
    Points if helpful.
    Regards,

    Hi,
    Some suggestoins about my issue?
    More precisions: First time i've  tested  my connector it work correctly (no error) However, i can't see only "Dynamic folder". After some modifications on my connector configuration: variant and default storage I've got the previous error.
    Even come back to initial configuration i continue to get the same error.
    I hope my information will be helpful.
    Regards

  • CUP connector configuration issue

    It is mentioned in the Configuration guide that, the connector that is used for RAR (corresponds to a backend system) should be used for CUP aswell.
    But, when i create a connector in webdynpro->content administration,
    RAR is showing the connector name(s) in the following syntax (even though we create multiple connectors with different names under content administration for same backend system):
    <message server name>_<system name>_<client number>
    where as CUP is showing the connector name same as that of content administration.
    now, my questions are
    Q1) how to know which connector is being used by RAR out of multiple connectors defined under content administration, so that I can use the same for CUP also.
    Q2) Do we need to select model connector or metadata connector for CUP?
    Q3) Do we need to select VIRSAR3 connector or VIRSAXSR3 connector for CUP?

    don't get confused between connector name in content admin and one refered to by CUP & RAR Config guide.
    <<<< It is mentioned in the Configuration guide that, the connector that is used for RAR (corresponds to a backend system) should be used for CUP aswell.>>>>
    the connector name refer is the the one which you create inside CONFIGURATION TAB of RAR & CUP.
    it is called VSYSKEY in VIRSA_CC_SYSTEMC table.
    both the name should be exactly same (case sensitive....... maya be......)
    best is that it should be same as SID or SIDCLNT
    <<<<<<<Q2) Do we need to select model connector or metadata connector for CUP?>>>>>>>>
    <<<<Q3) Do we need to select VIRSAR3 connector or VIRSAXSR3 connector for CUP?>>>>>
    these are used for JCO connection. and JCO connection are used only by RAR.
    when defining system inside Configuration tab of RAR you have option to select 'connection type'.
    'connection type' can be Adaptive RFC , then you select JCO connection defined for that System in next drop down.
    please refer to Config guide for RAR for more detail.
    other option is 'SAP JCO' if you select this then you have can give all details of server , client, user id and password and create or defined system inside RAR (this is what is refered as connector by all config guides or CUP and RAR)
    regards,
    Surpreet

  • Weblogic Tuxedo Connector on 10gR3 - Where are the Classes?

    Hi everybody,
    I need some help developing an application using WTC. I am trying to build an application using Weblogic Workshop, but I am not able to find the class TuxedoConnection or TuxedoConnectionFactory that was mentioned on the documentation.
    I imported all jar files from \bea\wlserver_10.3\server\lib and still don't find this class. Do you have any idea where I find the correct jar or what is happening?
    Thanks,
    Rafael

    Hi Todd,
    thanks for your answer, but not all classes are there. TuxedoConnection and TuxedoConnectionFactory are examples of classes that are not inside weblogic.jar.
    I found where these classes are:
    <BEA_HOME>\module\com.bea.core.jatmi_1.2.0.3.jar
    Regards,
    Rafael

  • [Forum FAQ] Introduce the Windows Essentials Connector software and checklist for its configuration issues

    Introduction
    The Connector software for the Windows Server Essentials OS connects the computers in your network to the Windows Server Essentials server. When you connect computers to the server via Connector
    software, it will help you to automatically back up the computers and monitor their health. Meanwhile, you will be able to configure and remotely administer the Windows Server Essentials server. The Connector software is installed when you connect a client
    computer to the server. You can start by typing http://<your_server_name>/connect
    Example: Windows 8.1 connects to Windows Server 2012 R2 Essentials
    1. Open the Dashboard on Windows Server 2012 Essentials, navigate to USERS tab. Right click and select Add a user account (Figure 1). Then follow the Add a User Account wizard to configure
    and add the user account (Figure 2).
    Figure 1: Add a user account -1
    Figure 2: Add a user account -2
    2. Logon the client computer, type the http://<your_server_name>/connect in IE. Then you will see the download page for Connector software (Figure 3).
    Figure 3:Download the
    Connector software
    3. Click Download software for Windows and download the Connect software (ComputerConnector), then run it.
    After restart automatically, please follow the Windows Server Essentials Connector Configuration Wizard (Figure 4 – Figure 7).
    Figure 4: Windows Server Essentials Connector Configuration Wizard -1
    Figure 5: Windows Server Essentials Connector Configuration Wizard -2
    Figure 6: Windows Server Essentials Connector Configuration Wizard -3
    Figure 7: Windows Server Essentials Connector Configuration Wizard -4
    4. When complete the configuration wizard and logon the client computer, you will be able to use the Launchpad (Figure 8).
    Figure 8: Launchpad
    5. Meanwhile, when you open Dashboard, will be able to find that the Windows 8.1 is listed under DEVICES. It will help administrators to manage the client computer (Figure 9).
    Figure 9: Clients listed in the Devices panel
    For Windows XP
    You can type http://<your_server_name>/connect in IE. Then the download page will appear (Figure 10).
    Figure 10: Download page
    However, it will encounter the error: “xxx.exe is not a valid Win32 application” (Figure 11).
    Figure 11: Error message on Windows XP
    Windows XP is not a supported OS for client computer. For more details, please refer to
    Get Connected in Windows Server Essentials.
    In addition, please note:
    Microsoft ended support for Windows XP on April 8, 2014. This change has affected your software updates and security options.

    Checklist for the configuration issues
    First of all, when we want to connect the client computers to Windows Server Essentials, please check if the date and time settings for the client computer is consistent with the server.
    Meanwhile, please also check the Regional and Language settings.
    Issue 1: Installation did not succeed
    When accept the license terms to continue in the configuration wizard, you may encounter the error (Figure 12).
    Installation did not succeed
    Windows Server Essentials Connector has not been installed because:
    Cannot download the package.
    Verify that your device is connected to the Internet, and then install the Windows Server Essentials Connector.
    Figure 12: Installation did not succeed
    Checklist:
    1. Verify the DNS client settings.
    2. Check the communication between DNS server and the client.
    3. Check if you can ping server via IP address and server name successfully
    Issue 2: Cannot connect this computer to the network (Network related)
    This computer is already connected to another Windows Server network. Before connecting this computer to the Windows Server Essentials network, you must remove this computer from the
    current network.
    To resolve this issue, contact the person responsible for your network.
    Figure 13: Cannot connect this computer to the network (Network related)
    Checklist:
    1. Check if the client computer is a member of another server network.
    2. Change the client computer to Workgroup via administrator. Then check if you can connect it to the new Windows Server Essentials network.
    Issue 3:
    Cannot connect this computer to the network (Account related)
    The computer cannot be connected to the server using the user name and password credentials provided. This may be because an existing computer account having name “ComputerName” was previously
    created using a different set of credentials. Rename this computer and then try to connect this computer to the server again, or contact your administrator to remove any old conflicting account.
    When you connect the client computer to server essentials with a new user account, please check if the client computer has been connected to the server essentials, and didn’t remove from
    Dashboard. You may encounter the following error.
    Figure 14: Cannot connect this computer to the network (Account related)
    Checklist:
    1. Check if the client computer has been connected to the server essentials, and didn’t remove from Dashboard.
    2. Remove the client computer from the Dashboard, then try again.
    Additional resource:
    Troubleshoot connecting computers to the server in Windows Server Essentials
    Windows 2012 Server Essentials ConnectComputer
    Troubleshooting

  • Error in GTC when trying to modify connector configuration

    Hi ,
    I'm getting the following error when I'm trying to perform step 3: Modify Connector Configuration.Earlier it was working fine.Now only the error started coming..
    [2012-01-17T15:20:40.761+05:30] [oim_server1] [ERROR] [] [XELLERATE.WEBAPP] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 0000JJf4p0OFw000jzwkno1F5K6v00001K,0] [APP: oim#11.1.1.3.0] [dcid: 11d1def534ea1be0:79391581:134eb0b17ff:-7ffd-000000000000005d] Class/Method: CreateGenConnectorAction/imageScreen encounter some problems: An error occurred while generating the image representing the OIM datasets[[
    com.thortech.xl.gc.exception.ImageGenerationException: An error occurred while generating the image representing the OIM datasets
         at com.thortech.xl.gc.util.ImageGenerator.generateImage(ImageGenerator.java:769)
         at com.thortech.xl.webclient.util.UIFacade.getImage(UIFacade.java:2299)
         at com.thortech.xl.webclient.actions.CreateConnectorAction.imageScreen(CreateConnectorAction.java:1250)
         at com.thortech.xl.webclient.actions.CreateConnectorAction.goNext(CreateConnectorAction.java:521)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:269)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(tcLookupDispatchAction.java:133)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(tcActionBase.java:894)
         at com.thortech.xl.webclient.actions.tcAction.execute(tcAction.java:213)
         at com.thortech.xl.webclient.actions.CreateConnectorAction.execute(CreateConnectorAction.java:135)
         at org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
         at org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
         at org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
         at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
         at org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:305)
         at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
         at org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1914)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:463)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at com.thortech.xl.webclient.security.XSSFilter.doFilter(XSSFilter.java:103)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at com.thortech.xl.webclient.security.CSRFFilter.doFilter(CSRFFilter.java:63)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:116)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:101)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Please help me out with this issue.
    Thanks

    Hi ,
    I'm getting the following error when I'm trying to perform step 3: Modify Connector Configuration.Earlier it was working fine.Now only the error started coming..
    [2012-01-17T15:20:40.761+05:30] [oim_server1] [ERROR] [] [XELLERATE.WEBAPP] [tid: [ACTIVE].ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 0000JJf4p0OFw000jzwkno1F5K6v00001K,0] [APP: oim#11.1.1.3.0] [dcid: 11d1def534ea1be0:79391581:134eb0b17ff:-7ffd-000000000000005d] Class/Method: CreateGenConnectorAction/imageScreen encounter some problems: An error occurred while generating the image representing the OIM datasets[[
    com.thortech.xl.gc.exception.ImageGenerationException: An error occurred while generating the image representing the OIM datasets
         at com.thortech.xl.gc.util.ImageGenerator.generateImage(ImageGenerator.java:769)
         at com.thortech.xl.webclient.util.UIFacade.getImage(UIFacade.java:2299)
         at com.thortech.xl.webclient.actions.CreateConnectorAction.imageScreen(CreateConnectorAction.java:1250)
         at com.thortech.xl.webclient.actions.CreateConnectorAction.goNext(CreateConnectorAction.java:521)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:269)
         at com.thortech.xl.webclient.actions.tcLookupDispatchAction.execute(tcLookupDispatchAction.java:133)
         at com.thortech.xl.webclient.actions.tcActionBase.execute(tcActionBase.java:894)
         at com.thortech.xl.webclient.actions.tcAction.execute(tcAction.java:213)
         at com.thortech.xl.webclient.actions.CreateConnectorAction.execute(CreateConnectorAction.java:135)
         at org.apache.struts.chain.commands.servlet.ExecuteAction.execute(ExecuteAction.java:58)
         at org.apache.struts.chain.commands.AbstractExecuteAction.execute(AbstractExecuteAction.java:67)
         at org.apache.struts.chain.commands.ActionCommandBase.execute(ActionCommandBase.java:51)
         at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
         at org.apache.commons.chain.generic.LookupCommand.execute(LookupCommand.java:305)
         at org.apache.commons.chain.impl.ChainBase.execute(ChainBase.java:191)
         at org.apache.struts.chain.ComposableRequestProcessor.process(ComposableRequestProcessor.java:283)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1914)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:463)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at com.thortech.xl.webclient.security.XSSFilter.doFilter(XSSFilter.java:103)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at com.thortech.xl.webclient.security.CSRFFilter.doFilter(CSRFFilter.java:63)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:116)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:101)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Please help me out with this issue.
    Thanks

  • Configuration Issue in User Mapping ..

    Hi,
    Pls help resolve this issue..
    When i go to <b>" UserMapping "</b> option using the <b>"Personalize "</b> link , i get the following error msg..
    "There is a configuration issue which leads to problem when accessing user mapping data for the selected backend system"
    Also , if i go thru "User Administration -> User Mapping "
    then it says,
    --"There is a configuration issue which leads to problem when accessing user mapping data for the selected backend system  .
    Usually reason is user mapping being configured for Strong encryption, but necessary additional files might be missing.Check Security log file for information "--
    I am not able to solve this problem..Pls help
    Thanks in advance

    Hi Venkat,
    <b>Here the quick and dirty solution</b>:
    In your portal go to 'System Administration' -> 'System Configuration' -> 'UM Configuration' -> 'Direct Editing'.
    There locate the parameter 'ume.usermapping.unsecure', set it to 'TRUE' and restart your server.
    I would rather recommend to install the unlimited strength jurisdiction policy files.
    For more info on this, check this thread:
    JCE Jurisdiction does not allow Portal to start
    Hope this helps,
    Robert

  • Configuration issue of syslog.conf

    Dear All,
    My client is facing a configuration issue of syslog.conf.
    They have set a cacti on a Linux server for monitoring of all servers snmp & syslog.
    The part of snmp has set up successfully but cannot send the syslog to the cacti.
    My client want the syslog can keep on the localhost and send to cacti for monitoring
    we have tried to do the following things for make it work:
    Insert the information (*.* @10.251.99.74) in /etc/syslog.conf
    Restart service of system-log
    Deleted all word of loghost in the /etc/hosts file
    But still not work. Anyone can give me suggestion or idea about this?

    Thank you for your reply.
    It is tab. But I think the problem is solaris cannot use *.* to represent all logs.
    I have used the following is work
    *.err;ker.debug;daemon.notice;mail.crit @10.251.99.74
    If that is not the mail reason, please put me right.

  • Anti-relay filter configuration issues

    Configuration issues with the anti-relay filter in Messaging Server 4.1x.
    The following information addresses common questions about configuration issues
    with the anti-relay filter in Messaging Server 4.1x:<BR>
    <P>
    <OL>
    <LI><B>Question:</B><BR>
    What is the difference between the delivery
    and submission
    options?<BR>
    <P>
    <B>Answer:</B><BR>
    The submission option
    allows specified users to send email to any email address in the world.
    These users are typically internal users.
    <P>
    The delivery option
    allows specified users to receive email from anybody. These users
    are also typically internal users.
    <P>
    A standard filter will appear something as follows:<BR>
    <P>
    # This is the anti-relay config file written by Jay at iPlanet
    # The first section sets default conditions
    resolvehostnames:0
    useauthinfo:0
    advertiseauthinfo:1
    # This section sets domains to be delivered to by anybody
    delivery:*@my.domain.com
    # This section sets domains that can send any place
    submission:129.12.4.*
    <P>
    <P>
    <LI><B>Question:</B><BR>
    The delivery
    option works properly. However, why doesn't the
    submission option
    appear to be allowing emails from specified users to pass through?
    <P>
    <B>Answer:</B><BR>
    The problem with the submission behavior could be due to the setting of the
    the resolvehostnames
    parameter. If this parameter is turned on
    (resolvehostnames:1),
    then <I>all</I> entries in this configuration file must be fully qualified
    host names. Although wildcards will work, you cannot specify IP
    addresses with this configuration setting.
    <P>
    <P>
    <LI><B>Question:</B><BR>
    Is it possible to allow people outside of my network to connect to the server
    and send mail out?
    <P>
    <B>Answer:</B><BR>
    Yes. To allow outside users to connect to the server and send mail
    to any address, without granting the same privilege to the rest of the world,
    activate the authenticated SMTP portion of the filter via the
    useauthinfo option.
    Setting this parameter to "1" (i.e., useauthinfo:1
    ) will require a user who is not in a
    submission address and who is attempting to send email to an address not in
    the delivery range to authenticate with a user ID and password.
    </OL>
    <P>
    For additional information on the anti-relay filter, please refer to the
    Messaging Server 4.1 Administrator's Guide at<BR>
    <P>
    http://docs.iplanet.com/docs/manuals/messaging/nms41/ag/ubefiltr.htm#1073677

    Prashant:
    Are you using a UBE filter to configure domain-based anti-relayinging? We had better luck with the anti-relay plug-in. There is some info on this (for 4.15) at
    http://docs.sun.com/source/816-6044-10/ubefiltr.htm#1069973
    You have to enable the plug-in using configutil, per the above. The anti-relay plug-in is controlled by antirelay.conf. Be aware that the pattern matching rules are very limited, and not well documented. Fortunately, the source code to the plug-in is included, and you can see what it is doing. To pass the tests we had to add a hard-coded test for a "%" in the source and recompile:
    *** antirelay.c.orig Thu Oct 31 04:42:13 2002
    --- antirelay.c Thu Oct 31 04:22:07 2002
    *** 934,939 ****
    --- 934,940 ----
    * Weight must be non-zero to begin with so that matches on just "*"
    * will work.
    + if( strchr(text,'%') != NULL ) return ABORT;
    weight = TRUE;
    for ( ; *p; text++, p++) {
    if (*text == '\0' && p != '')
    Not a really elegant hack, but we didn't need a fully functional regex engine.

  • Help required in Weblogic 6 - Creation & Configuration of Web Application

    Forum Home > Enterprise JavaBeans[tm]
    Topic: Help required in Weblogic 6 - Creation & Configuration of Web Application
    Duke Dollars
    2 Duke Dollars assigned to this topic. Reward the best responses to your question
    using the icons below, or transfer additional Duke Dollars to this topic.
    Welcome moinshariff!
    Watching this topic.
    Previous Topic Next Topic
    This topic has 1 reply on 1 page (Most recent message: Jan 23, 2002 1:05 AM)
    Author: moinshariff Jan 22, 2002 4:55 AM
    Hi,
    I am using Weblogic 6. I have created a new Web
    Application called Web (I have not used the DefaultWebApp_myserver).
    And I have the following settings:
    Name : Web
    URI : Web
    and Path : C:\Web
    and placed my JSP files under c:\Web\
    I am able to access the first page, but after that I am not able to access the
    second page.
    I get "Error 404--Not Found" on the browser. Basically the class file is not getting
    created under /Web-inf/_tmp_war_myserver_myserver_Web/jsp_servlet/ folder .
    I tried a work around for this. I copied all my files under one more folder called
    web and placed this under C:\Web
    The it works. Now I have 2 copied off all the files, 1 copy under c:\web and another
    copy under c:\web\web\.
    If I have the files under DefaultWebApp_myserver and have the setting as
    Name: DefaultWebApp_myserver
    URI: DefaultWebApp_myserver
    Path: .\config\mydomain\applications
    everything works fine.
    Can any one please let me know if there is any configuration which has to be done
    so that I do not duplicate the code in 2 directories
    Thanks in advance.
    Regards,
    Moin

    Forum Home > Enterprise JavaBeans[tm]
    Topic: Help required in Weblogic 6 - Creation & Configuration of Web Application
    Duke Dollars
    2 Duke Dollars assigned to this topic. Reward the best responses to your question
    using the icons below, or transfer additional Duke Dollars to this topic.
    Welcome moinshariff!
    Watching this topic.
    Previous Topic Next Topic
    This topic has 1 reply on 1 page (Most recent message: Jan 23, 2002 1:05 AM)
    Author: moinshariff Jan 22, 2002 4:55 AM
    Hi,
    I am using Weblogic 6. I have created a new Web
    Application called Web (I have not used the DefaultWebApp_myserver).
    And I have the following settings:
    Name : Web
    URI : Web
    and Path : C:\Web
    and placed my JSP files under c:\Web\
    I am able to access the first page, but after that I am not able to access the
    second page.
    I get "Error 404--Not Found" on the browser. Basically the class file is not getting
    created under /Web-inf/_tmp_war_myserver_myserver_Web/jsp_servlet/ folder .
    I tried a work around for this. I copied all my files under one more folder called
    web and placed this under C:\Web
    The it works. Now I have 2 copied off all the files, 1 copy under c:\web and another
    copy under c:\web\web\.
    If I have the files under DefaultWebApp_myserver and have the setting as
    Name: DefaultWebApp_myserver
    URI: DefaultWebApp_myserver
    Path: .\config\mydomain\applications
    everything works fine.
    Can any one please let me know if there is any configuration which has to be done
    so that I do not duplicate the code in 2 directories
    Thanks in advance.
    Regards,
    Moin

  • Oracle 11g Fusion Middleware (11.1.1.3.0) Report Configuration Issue

    Oracle 11g Fusion Middleware (11.1.1.3.0) Report Configuration Issue
    =============================================
    Hi All,
    I have installed Oracle 11g Fusion Middleware (11.1.1.3.0) on Oracle Linux 5 and getting some issues while configuring. What's happening is that when I run my report, it looks for the library attached to it. If I define the REPORTS_PATH in reports.sh, it works fine.
    What I want to achieve is to push reports to use REPORTS_PATH environment variable from rwserver.conf instead of reports.sh
    Someone told me to remove the REPORTS_PATH from reports.sh and add the REPORTS_PATH from reports.sh to a default.env in rwserver.conf, but it didn't worked.
    What I know about the report server stuff in 11g Fusion Middleware is that it consists of two different servers (Standalone and In Process). Our application runs report using SRW.RUN_REPORT which basically use In Process report server setting in rwserver.conf to run the report.
    The heirarchy in which reports try to look for the REPORTS_PATH is
    1) REPORTS.sh
    2) rwserver.conf
    3) Settings as per Oracle Enterprise Manager Configuration Settings.
    My standalone report server name is ReportsServer_hostname_asinst_F and the In Process Server name is rep_wls_reports_hostname_asinst_frd. When I define rep_wls_reports_hostname_asinst_frd (In process Report Server Name) for the server name parameter, I do not get any results for the report run using srw.run_report. Also I can't see the reason behind the report executed because of the following issue
    http://hostname:8888/reports/rwservlet/showjobs?server=rep_wls_reports_hostname_asinst_frd
    REP-51019: System user authentication is missing.
    ** the Singlesignon in rwservlet.properties is defined as no
    But when I define ReportsServer_hostname_asinst_F (Standalone Report Server Name) as server parameter and ran the report using srw.run_report, I get result with the REPORTS_PATH defined in reports.sh not using rwserver.conf file.
    http://hostname:8888/reports/rwservlet/showjobs?server=ReportsServer_hostname_asinst_F
    (which shows the report just run).
    Can someone who did Report Server configuration using ENV files (changing rwserver.conf), pls. send me the screenshots. Want to make sure if I am changing the correct files under correct location.
    Pls. feel free to ask me questions related to the environment set up.
    Thanks

    Your question belongs in {forum:id=84}
    John

Maybe you are looking for

  • Windows 7 64bit has an MTP USB Device Failed error message when I attach my Ipad1

    I keep getting an MTP USB Device Failed error message when I plug in my USB cable into my Ipad1.  Can someone help?

  • IMac and HDCP movies

    I have a brand-new iMac (only 2 weeks old!) and downloaded some HD videos from the iTunes store to watch on my pretty new screen. However, they won't play now in iTunes, and instead give me the error "This movie cannot be played because a display tha

  • Help connect iPad to wi-fi after re-store

    Took my iPad to genius bar where they did a restore.  They told me to synch it as a new iPad and not as the original.  I got all my apps, but cannot reconnect to my wi-fi.  It is not getting the right ip address.  I disconnected my modem and router,

  • Disk Utility BUG SOLVED @@ COME AND READ @@.

    On some of the older imac and mac books some of your may have problems using the restore tab in disk utility. You are unable to drag the disk to the last slot. I figured it out today.You don't have to install any third party software or use any termi

  • I inserted a mini CD (3") and it will not eject, how can I get it out??

    I inserted a mini CD (3") and it will not eject, how can I get it out??  I tried a little shaking, and restarting and holding the mouse pad down.  I heard the spinning but still cannot eject or read the disc.