Maximize IR Web Client container window

Has anybody here found a way to control the size of the browser window that displays the IR Web Client 9.3.3? Setting the value of Application.WindowState only works in Studio.

This problem I cannot sovle. Can anybody help?
Thanks
Tan

Similar Messages

  • Deployment of JavaFX Web application on client machine(Windows OS.)

    Problem Statement:
    Deployment of JavaFX Web application on client machine(Windows OS.)
    Error: unable to load the native libarary(JNI Windows dll) i.e. throws java.lang.UnsatisfiedLinkError exception.
    Problem Description:
    I have create the JavaFX application which have dependency on Native library written in Java Native Interface(JNI).
    When the application is deployed on Apache 6.0 Tomcat Server(Copied .html file *.jnlp file and .jar file) and when client machine hit the html page in internet explorer version 8.0 its throws the following error(java.lang.UnsatisfiedLinkError: no JNIHelloWorld in java.library.path)
    Note:
    I have created the jar file which have my "JNIHelloWorld' native library dll in root directory. I have signed the jar with same signature which i have used for signing for my application Jar file.
    I have mentioned the native library jar in JNLP file resource keyword as follows:
    <resources os=Windows>
    <nativelib href="JNIHelloWorld.jar" download="eager" />
    </resources>
    The complete jnlp file content is in "JavaFXApplication.jnlp file:" section below.
    The description of error is as follows:
    Match: beginTraversal
    Match: digest selected JREDesc: JREDesc[version 1.6+, heap=-1--1, args=null, href=http://java.sun.com/products/autodl/j2se, sel=false, null, null], JREInfo: JREInfo for index 0:
    platform is: 1.7
    product is: 1.7.0_07
    location is: http://java.sun.com/products/autodl/j2se
    path is: C:\Program Files\Java\jre7\bin\javaw.exe
    args is: null
    native platform is: Windows, x86 [ x86, 32bit ]
    JavaFX runtime is: JavaFX 2.2.1 found at C:\Program Files\Java\jre7\
    enabled is: true
    registered is: true
    system is: true
         Match: ignoring maxHeap: -1
         Match: ignoring InitHeap: -1
         Match: digesting vmargs: null
         Match: digested vmargs: [JVMParameters: isSecure: true, args: ]
         Match: JVM args after accumulation: [JVMParameters: isSecure: true, args: ]
         Match: digest LaunchDesc: http://10.187.143.68:8282/KPIT/JavaFXApplication20.jnlp
         Match: digest properties: []
         Match: JVM args: [JVMParameters: isSecure: true, args: ]
         Match: endTraversal ..
         Match: JVM args final:
         Match: Running JREInfo Version match: 1.7.0.07 == 1.7.0.07
         *Match: Running JVM args match: have:<> satisfy want:<>*
    *java.lang.UnsatisfiedLinkError: no JNIHelloWorld in java.library.path*
    *     at java.lang.ClassLoader.loadLibrary(Unknown Source)*
    *     at java.lang.Runtime.loadLibrary0(Unknown Source)*
    *     at java.lang.System.loadLibrary(Unknown Source)*     at javafxapplication20.JavaFXApplication20.<clinit>(JavaFXApplication20.java:41)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at com.sun.javafx.applet.FXApplet2.init(FXApplet2.java:63)
         at com.sun.deploy.uitoolkit.impl.fx.FXApplet2Adapter.init(FXApplet2Adapter.java:207)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Java Plug-in 10.7.2.11
    Using JRE version 1.7.0_07-b11 Java HotSpot(TM) Client VM
    User home directory = C:\Users\io839
    Please find my native library code and JavaFX application code:
    Native library JNI Code:
    JavaFXApplication.java:
    JNIEXPORT jstring JNICALL Java_javafxapplication_SampleController_printString(JNIEnv *env, jobject envObject)
         string str = "hello JNI";
         jstring jniStr = env->NewStringUTF(str.c_str());
         return jniStr;
    JavaFX Application code:
    JavaFXApplication.java:
    package javafxapplication;
    import javafx.application.Application;
    import javafx.fxml.FXMLLoader;
    import javafx.scene.Parent;
    import javafx.scene.Scene;
    import javafx.stage.Stage;
    public class JavaFXApplication extends Application {
    @Override
    public void start(Stage stage) throws Exception {
    Parent root = FXMLLoader.load(getClass().getResource("Sample.fxml"));
    Scene scene = new Scene(root);
    stage.setScene(scene);
    stage.show();
    * The main() method is ignored in correctly deployed JavaFX application.
    * main() serves only as fallback in case the application can not be
    * launched through deployment artifacts, e.g., in IDEs with limited FX
    * support. NetBeans ignores main().
    * @param args the command line arguments
    public static void main(String[] args) {
    launch(args);
    static{
    System.loadLibrary("JNIHelloWorld");
    SampleController.java file:
    package javafxapplication;
    import java.net.URL;
    import java.util.ResourceBundle;
    import javafx.event.ActionEvent;
    import javafx.fxml.FXML;
    import javafx.fxml.Initializable;
    import javafx.scene.control.Label;
    public class SampleController implements Initializable {
    @FXML
    private Label label;
    private native String printString();
    @FXML
    private void handleButtonAction(ActionEvent event) {
    System.out.println("You clicked me!");
    String str = printString();
    label.setText(str);
    @Override
    public void initialize(URL url, ResourceBundle rb) {
    // TODO
    //String str = printString();
    JavaFXApplication.jnlp file:
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="JavaFXApplication.jnlp">
    <information>
    <title>JavaFXApplication20</title>
    <vendor>io839</vendor>
    <description>Sample JavaFX 2.0 application.</description>
    <offline-allowed/>
    </information>
    <resources>
    <jfx:javafx-runtime version="2.2+" href="http://javadl.sun.com/webapps/download/GetFile/javafx-latest/windows-i586/javafx2.jnlp"/>
    </resources>
    <resources>
    <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
    <jar href="JavaFXApplication.jar" size="20918" download="eager" />
    </resources>
    <resources os=Windows>
    <nativelib href="JNIHelloWorld.jar" download="eager" />
    </resources>
    <security>
    <all-permissions/>
    </security>
    <applet-desc width="800" height="600" main-class="com.javafx.main.NoJavaFXFallback" name="JavaFXApplication" >
    <param name="requiredFXVersion" value="2.2+"/>
    </applet-desc>
    <jfx:javafx-desc width="800" height="600" main-class="javafxapplication.JavaFXApplication" name="JavaFXApplication" />
    <update check="always"/>
    </jnlp>

    No problem.
    Make sure your resources are set at the proper location. Could be that tje jni.jar is under a 'lib' folder?
    Normally you don't have to worry about deployment a lot if you are using like Netbeans 7.2 or higher.
    When you press 'Clean and build' it creates your deployed files in the 'dist' folder.
    You can change specification by adapting the build.xml file.
    Of course lot of different possibilities are available for deployment!
    You can find lot of info here:
    [http://docs.oracle.com/javafx/2/deployment/jfxpub-deployment.htm|http://docs.oracle.com/javafx/2/deployment/jfxpub-deployment.htm]
    Important to know is if you want to work with
    - a standalone application (self-contained or not)
    - with webstart
    - or with applets
    (In my case I'm using webstart, but also Self-Contained Application Packaging (jre is also installed!)

  • 32-bit Siebel 7.7 and 7.8 Web Client on 64-bit Windows Vista

    Hello all,
    do you think it is possible to successfully install the 32-bit Siebel Web Client (version 7.7 and 7.8) on Windows Vista 64-bit ?
    I'm running Siebel client software against an Oracle 9i database. In fact, my Oracle client is version 10g (32-bit). But it works fine. Even with non-Oracle software.
    I succeeded in installing the 32-bit Siebel Tools (7.7/7.8) on my 64-bit Vista. Just had to prevent the installer from putting the software into the default folder which is "C:\Program Files (x86)". Using the default folder resulted in the Tools being not able to locate the Oracle tnsnames.ora file. I created my own C:\PRG folder instead. So for example, I now have "C:\PRG\Siebel\7.7\Tools" for Siebel Tools 7.7.
    I hoped this method would work for Siebel Web/Developer client 7.7/7.8 as well. But it didn't. In the middle of the installation process, the installer told me it could not locate MDAC and rolled the whole thing back.
    I googled a bit around and found that Windows Vista do not use MDAC any more. It uses "Windows Data Access Components" (Windows DAC) instead. But I also checked my "C:\Program Files" and "C:\Program Files (x86)" folders and found that, for example, msado15.dll and msadoXY.tlb (which is a part of that MDAC/DAC stuff) is there, both 32-bit and 64-bit versions.
    So my question is:
    How can you make the Siebel Web Client installer think that MDAC is in place and find it there (in the 32-bit folder, of course)?
    I'll welcome any help.
    Thanks,
    Pavel Foltyn

    First of you need to make sure you have the right versions of Siebel installed. Only the newest versions work in high interactivity mode with IE 7.0 and Windows Vista.
    Have a look at:
    Support for Microsoft Internet Explorer 7 (IE7) (Doc ID 475275.1)
    on Metalink 3.
    Geting that to work with the Vista 64-bit, is more then pushing it.
    Just my 2 cent.
    Axel

  • Accessing client using Windows 2008 Terminal Service - Web Access?

    Dear experts,
    We are developing a network infrastructure solution for our new customer's B1 8.8 implementation.
    Our customer would like to utilize Windows Server 2008 Terminal Service to connect B1 client in remote branch with server in head office area. And they want to use Terminal Service - WEB ACCESS. Base on our experience, we successfully implement B1 using Remote Desktop Connection or Citrix to support B1 client in the remote area.
    My question is, Has SAP already support to utilize windows "Terminal Service - Web Access" to access B1 client?
    If Yes then what are possible issues and solutions?
    Thanks,
    Indra

    Hi,
    when we said to customer that it is better to use citrix, they will see some concerns as follows:
    1. Investment to buy citrix server
    2. License of citrix
    3. installation time for ICA client
    4. maintenance cost for citrix and its server
    The benefits are as follows:
    1. Reduce cost to purchase B1 license. Remote and LAN users can access B1 through citrix
    2. The connection speed. Citrix is more faster than RDC or terminal services either web access or not
    3. The security reason. Check this link:
    http://www.virtualizationadmin.com/articles-tutorials/terminal-services/management-tools/terminal-services-internet-information-server.html
    In the support platform, there is no windows terminal services web access info. You may check it here:
    http://service.sap.com/smb/sbo/platforms
    The supported hosted environments are using citrix or windows terminal service. For remote users, the citrix is used for web access and windows terminal services are using IP and the connection is using internet (do not use VPN).
    The citrix is not very expensive. We must make them realize the benefit.
    Kita harus pastikan citrix itu bagus dan tidak mahal2 amat kok. Beli dari reseller citrix yang diauthorized  tetapi tidak big company agar tidak mahal sekali. SAP AG menyarankan menggunakan citrix karena memang sangat bagus.
    (in english : we must convince the customer about the citrixs benefit. it is not too expensive. The citrix could be buy from small reseller company so that its price is acceptable. SAP AG suggested to use citrix because it is very best web access).
    I know bhs because I am from Indonesia hehehe....
    JimM

  • DRM Web Client 500.19 issue on windows 2008(x64)  ERROR

    Hi,
    I installed DRM version 11.1.2 on windows server 2008(x64), according to the documents, I pre-installed .Net 3.5.1 and modified the applicationHost.conf file.
    I found this in epm_install_troubleshooting
    Web Client Access Failure
    Issue: After installing Data Relationship Management on Windows 2008 64-bit platform, you
    get this error message when attempting to access the Web client:
    HTTP Error 500.19 - Internal Server Error The requested page cannot be
    accessed because the related configuration data for the page is invalid.
    Solution: In the IIS configuration file (C:/Windows/System32/inetsrv/config/
    applicationHost.config), replace the two occurrences of Deny in the following section with
    Allow:
    <configuration>
    <configSections>
    <sectionGroup name="system.webServer">
    <section name="handlers" overrideModeDefault="Deny" />
    <name="modules" allowDefinition="MachineToApplication"
    overrideModeDefault="Deny" />
    However when I access the web client I got the 500.19 error, can't find C:\inetpub\wwwroot\drm-web-client\web.config, the web.config file do not exist.
    Config File \\?\C:\inetpub\wwwroot\drm-web-client\web.config

    Might be too late, but the problem is that IIS is pointing to the incorrect path. Should not be pointing to C:\Inetpub\wwwrooot\.... it should be pointing to Oracle\Middleware\EPMSystem11R1\products\DataRelationshipManagement\client\web-client same thing with the migration-client IIS app. To fix use the IIS Manager click the drm-web-client virtual directory and select "Advanced Settings" and update the "Physical Path" property.
    Pablo

  • DRM Web Client 500.19 issue on windows 2008(x64)

    Hi guys,
    I installed DRM version 11.1.2 on windows server 2008(x64), according to the documents, I pre-installed .Net 3.5.1 and modified the applicationHost.conf file. The installation is successful without error. However when I access the web client I got the 500.19 error, can't find C:\inetpub\wwwroot\drm-web-client\web.config, the web.config file do not exist.
    I guess this is something about IIS configuration but I'm not familiar with IIS, can anybody give me some suggestion?
    Thanks

    I found this in epm_install_troubleshooting
    Web Client Access Failure
    Issue: After installing Data Relationship Management on Windows 2008 64-bit platform, you
    get this error message when attempting to access the Web client:
    HTTP Error 500.19 - Internal Server Error The requested page cannot be
    accessed because the related configuration data for the page is invalid.
    Solution: In the IIS configuration file (C:/Windows/System32/inetsrv/config/
    applicationHost.config), replace the two occurrences of Deny in the following section with
    Allow:
    <configuration>
    <configSections>
    <sectionGroup name="system.webServer">
    <section name="handlers" overrideModeDefault="Deny" />
    <name="modules" allowDefinition="MachineToApplication"
    overrideModeDefault="Deny" />

  • Hyperian Interactive Web Client install error - Is it supported for Windows 7 ?

    Hi
    I have not been able to install 'Hyperian Interactive Web Client'. Please find attached the screenshots when I trigger the report from a web app.
    Would appreciate a quick reply

    yes, IR WebClient is supported on Windows 7. it just depends on the version of EPM and Browser.

  • [E2013][EWS][Windows] retreive outlook userproperties in web client.

    Hi,
    We've built an outlook plugin that requires setting user properties to associate client & custom information with a particular mailItem. Currently we are creating an email web client and want to transfer and access those user properties on the web client.
     Are these properties bundled into the message header or stored on exchange and retrieved through a saved key. How can I access these properties, on another mail server, do I have to transfer these to MAPI fields? 
    Thanks,
    Milton C.
    Milton Cody

    You can access any user properties you create in your Outlook plugin in EWS using the Extended property interfaces see
    https://msdn.microsoft.com/en-us/library/office/dn467898%28v=exchg.150%29.aspx . The only thing you can't do with EWS is read or write the userproperty definition blob (which just means you can't enumerate what properties a user has created). That should
    really be issue however all you need to do is use a MAPI editor like MFCMapi or Outlook Spy to look at an existing item where the properties have set you should then be able to use them like
    ExtendedPropertyDefinition UserProperty = new ExtendedPropertyDefinition(DefaultExtendedPropertySet.PublicStrings, "MyCustomProperty", MapiPropertyType.String);
    Cheers
    Glen

  • How To Stop Lookout Web Client Crashing IE Web Browser

    Hi,
    I am using Web Client with Lookout. My problem is I can only load a panel within Internet Explorer once. If I reload the URL within the same session then Internet Explorer crashes.
    Can anyone offer me advice to fix this problem please?
    Software is as follows:
    - Lookout V 6.0 (build 5)
    - Browser: Internet Explorer 6.0.28
    - Web Server: Tomcat 5.5.7
    The steps I took are as follows:
    1. Created Process
    2. Set up File-> Web Server Options->Export Directory to:
    c:\telemetrysms\webapps\root\user\fishfarmlive\
    (where “c:\telemetrysms\webapps” is Tomcat webapps folder)
    Set up server URL to:
    http://HOSTNAME/user/fishfarmlive/
    (where “HOSTNAME” is the server name)
    3. Export Web Server Files
    4. Start IE and open web page. My panel displays correctly (with live data), although the only alarm Lookout displays is “The remote position source is not writable”.
    5. HOWEVER, when I reload the page in IE the browser will always go blank for several seconds and then crash (with no error message).
    Furthermore…
    As a test I created a simple test process with nothing but one panel containing a single line of static text. This simple project also crashes.
    This computer also has Lookout 5.1 installed. And projects created in 5.1 only crash the browser very occasionally.
    Any suggestions (about the crashes or the missing alarms) would be greatly appreciated?
    Thanks.
    Regards Brett Sheeran

    Brett,
    I have some info for you regarding the web client. I am including links to two documents that have information that will help you with your problem. The first document is good info about developing a web client application and the second has information directly pertaining to the IE crash that is occurring. It also has other troubleshooting information. I would also recommend checking the firewall on the computer. It windows security settings also have to be set to low in order for web client to communicate correctly.
    Deploying a Lookout Application
    Lookout Web Client Troubleshooting
    Regards,
    Danny G
    Applications Engineer
    National Instruments

  • Faxeditor view in IC web client

    Hi,
    I am working in IC web client 5.0. The requirement is to display texts from interaction record in fax editor. In standard navigation bar, you will find Fax icon and if you click you will see the view "faxeditor" of crm_ic application. The view contains an editor for creating and changing the data.
    The current requirement is to get the data from interaction record and go to the fax view, and editor needs to display details like contact person no etc of interaction record.
    Would you please suggest, what class or methods need to be look at for this requirement or what will be the better approach.
    Thanks in advance.
    With regards,
    ravi

    Hi Eyal,
    I have followed these steps to get the result.
    1. In MS word, I put the place holders like <BUS1006-LINE0> and in properties of the field - selected as merge field.
    2. Then implemented BADI and put break point in BADI.
    3. When in FAX view, I selected word doc template with check box, at this point, the process stops in BADI and here i am seeing value for this variable.
    4. Then after clicking on the word document, one more window opens with template information , but it is showing <BUS1006-LINE0>.
    Would you please suggest, why the values are not passed to MS word.
    Or would you please explain briefly what you have done to send contact person information to MS word
    Thanks a lot for your help  in  advance.
    With regards,
    Ravi

  • Drill Through in Analyzer 5.0.3 Web Client

    I have an EIS created Essbase cube with drill through reports. I can access the reports using the Excel add-in and via the Analyzer Windows client and they work as expected. In the Analyzer Web client, I see the LRO indicator, but when I click on the cell I get "Cell ___ cannot be drilled on". Does the Web client support drill through, and is there additional configuration necessary to make it work?Thanks,Jim Burnham

    I didn't have the Essbase setting of "Use Grid API" turned on for the user I was testing with.Jim

  • Http 404 error while opening Siebel Public Sector Web Client

    Hello Experts
    I recently migrated to siebel web client and tools 8.2.2 from 8.2. However the issue that i have been facing now is that when i open my client i get HTTP 404 Not Found- The Web Page cannot be found.
    Things that i have done to configure:
    1. Enabled ActiveX settings-Settings as given in http://www.siebeloracle.com/accessing-oracle-siebel-8-1-using-windows-7-ie8-works-on-32-bit-os/
    2. EnableFQDN: FALSE, FQDN: Commented.
    3. My ODBC and public sector cfg have been configured as per need.
    Strangely what i have encountered is that: sometimes of 1 out 30 trials, when my client opens up [P(opening client)->0 i.e. Probability is close to 0] the port number is 8081 whereas in other instances it is 8080 which i guess is by default.
    URL: http://localhost:8080/start.swe
    I have tried reinstalling the client but still i face the same issue.
    Kindly help me out with this issue.
    Regards
    KT

    Hi,
    I see that its not a problem with the installation but some problem with the port 8080. I feel some other application is running by default on that port. So, everytime whenever I have to launch Siebel Web client, I have to launch 2 instances. (8080 and 8081). So, the instance which launches on port 8081 + works fine.
    I see this process to be time consuming as I have to wait for 2 instances to open up. Hence, is there any way to define the default launch of the port when the client opens up?
    Thanks and Regards
    KT
    Edited by: 1005486 on May 13, 2013 12:01 AM

  • Error while installing HFM 9.3.1 Client on windows 7.

    Hello,
    I am trying to install and configure HFM 9.3.1 client on windows 7 x64 machine, but getting following two errors while configuring with shared service, in random manner.
    1. An Unknown CSS error occurred. Please check that information entered is correct.
    2. Registration parameters cannot be validated successfully. Please check that information entered is correct.
    I found these entries in configtool_err.log:
    (Feb 01, 2013, 05:02:35 AM), com.hyperion.cis.config.CmsRegistrationUtil, ERROR, Failed to initialize CSS API
    (Feb 01, 2013, 05:02:35 AM), com.hyperion.cis.config.CmsRegistrationUtil, ERROR, Failed to authenticate user = admin
    (Feb 05, 2013, 09:16:41 AM), com.hyperion.cis.config.CmsRegistrationUtil, ERROR, Error:
    Error Code: -1
    com.hyperion.css.common.configuration.CSSConfigurationException: Cannot configure the system. Please check the configuration.     Error Code: 9
    NestedException:
    java.io.IOException: Property data cannot be loaded from cache.
    I am using default admin and password to configure,
    I can ping server from windows 7 machine.
    I checked and all services are running on servers.
    Did i miss something?
    What should I do to configure it successfully?
    Thanks in advance,

    Hi Vivek,
    I tried following steps in local POC:
    1. Install 9.3.1,
    2. Upgrade it to 9.3.3,
    3. configure it.
    but getting issue with "Server and cluster registration" I am getting error as, "An error occurred while adding Cluster to the list."
    Any idea how to resolve it? I am not able to configure HFM 9.3.3 client.
    and also I can see *"Web server, Related Content & Smart view provider tabs in configuration utility"*, along with error while opening two of these three tabs *"Failed to obtain IIS version. Please check the IIS installation"*
    I found one document on support but it was not much helpful.
    *Server Configuration Tabs in the Server and Web Configuration Utility Are Available on Windows 7 Machines with Only Desktop Client Installed. [ID 1367553.1]*
    Thanks,

  • Siebel Web Client  crashes when clicking a certain view (Income).

    We are using Siebel Public Sector and I am encountering a recurring issue with our Siebel Web Client. For most part it works but something strange occurs when I execute a series of steps. Whenever I go to the Contacts Screen > Income View then click on another screen tab (i.e. Contacts, Cases, Calendar, Home, Households, etc.) the web client stops responding and throws out an error saying: Session Warning: The server you are trying to access is either busy or experiencing difficulties. Please close the Web browser, open a new browser window, and try logging in again.
    I'm not really sure what is going on so I checked the logs. I'm not really sure what is going on. If someone could enlighten me on what this issue could be that would be awesome!
    ----------- Log FILES -----------
    The sweapp logs got updated with these messages.
    SisnapiLayerLog     Error     1     000000814c570f29:0     2010-08-03 09:54:43     1440934800: [SISNAPI] Async Thread: connection (0xb919828), error (1180682) while reading message
    GenericLog     GenericError     1     000000814c570f29:0     2010-08-03 09:54:43     (ssmsismgr.cpp (837) err=1180682 sys=0) SBL-NET-01034: The SISNAPI connection was closed by the peer.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     ( (0) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe ((null)) on process (null).
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (ssmsismgr.cpp (773) err=3670020 sys=0) SBL-SSM-00004: SISNAPI Hello failed. The server component could be down.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (ssmsismgr.cpp (1761) err=3670022 sys=0) SBL-SSM-00006: Error while sending message to server.
    ObjMgrSessionLog     Error     1     000000024c570e66:0     2010-08-03 09:54:43     CSSUModel::InvokeSrvcMethod - Failed with Error=10879179 for service=Web Engine Interface, method=Request
    ProcessPluginRequest     ProcessPluginRequestError     1     000000024c570e66:0     2010-08-03 09:54:43     -1742095472: [SWSE] Error invoking service method 10879179
    ProcessPluginRequest     ProcessPluginRequestError     1     000000024c570e66:0     2010-08-03 09:54:43     -1742095472: [SWSE] Error Message 0 : error 10879179 : Not connected to the server.
    SBL-SSM-00006: Error while sending message to server.
    ProcessPluginState     ProcessPluginStateError     1     000000024c570e66:0     2010-08-03 09:54:43     -1742095472: [SWSE] Invoke service method failed.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     ( (0) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe ((null)) on process (null).
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (ssmsismgr.cpp (773) err=3670020 sys=0) SBL-SSM-00004: SISNAPI Hello failed. The server component could be down.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (ssmsismgr.cpp (1761) err=3670022 sys=0) SBL-SSM-00006: Error while sending message to server.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     ( (0) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe ((null)) on process (null).
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (ssmsismgr.cpp (773) err=3670020 sys=0) SBL-SSM-00004: SISNAPI Hello failed. The server component could be down.
    ProcessPluginRequest     ProcessPluginRequestError     1     000000024c570e66:0     2010-08-03 09:54:43     -1742095472: [SWSE] Set Error Response (Session: Error: 10879179 Message: Not connected to the server.
    SBL-SSM-00006: Error while sending message to server.)
    The PSCcObjMgr_enu log file got these errors:
    ObjMgrLog     Error     1     000000a44c570f29:0     2010-08-03 09:55:00     (cscfg.cpp (165)) SBL-CSR-00418: Communication: User is not associated with any communication configuration in the database.
    The SCBroker log file got these errors:
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:51:01     (scbcomp.cpp (264) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_4565) on process 4565.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (scbcomp.cpp (851) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_10776) on process 10776.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (scbcomp.cpp (462) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_10776) on process 10776.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (scbcomp.cpp (264) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_10776) on process 10776.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (scbcomp.cpp (851) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_10776) on process 10776.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (scbcomp.cpp (462) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_10776) on process 10776.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (scbcomp.cpp (264) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_10776) on process 10776.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (scbcomp.cpp (851) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_10776) on process 10776.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (scbcomp.cpp (462) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_10776) on process 10776.
    GenericLog     GenericError     1     000000024c570e66:0     2010-08-03 09:54:43     (scbcomp.cpp (264) err=4653067 sys=0) SBL-SCB-00011: Failed to connect to pipe (SEBL_25_10776) on process 10776.
    The SRBroker log file got these errors:
    GenericLog     GenericError     1     000000814c570f29:0     2010-08-03 09:54:43     (srbroute.cpp (3089) err=3735554 sys=0) SBL-SRB-00002: Invalid argument provided.
    The <enterprise name>.<siebel server name> log got these errors:
    ServerLog     ProcessExit     1     000014a44c570e53:0     2010-08-03 09:54:43     PSCcObjMgr_enu      10776     SBL-OSD-02006 Process 10776 exited with error - Process exited because it received signal SIGABRT.
    ServerLog     ProcessCreate     1     000014a34c570e53:0     2010-08-03 09:54:43     Created server process (OS pid =      10838     ) for PSCcObjMgr_enu

    Dude - you definitely don't need any 3rd party software to figure this out. A bit of patience and research will help you solve it AND help you gain a better understanding of how Siebel works and how to debug problems such as this in the future.
    Setting the Log Level to 5 for all events in the Public Sector Object Manager is your first step. Log out then log back in and replicate the problem.
    Locate your log file and have a look at what's going on - chances are you'll see something in there that will immediately reveal the source of the problem.
    If there's a proper 'crash' involved, Siebel will generate a Flight Data Recorder (FDR) file - there are instructions on My Oracle Support on how to decode these. Really useful and very interesting to see how Siebel works at a low level.
    Debugging and fixing can definitely be arduous in Siebel - no two ways about it. However, researching, analysing and fixing issues yourself will prove both rewarding and educational! :)

  • Hyperion IR : Getting out of memory error while fetching data for whole year through web client (wrokspace)

    Hi,
    While fetching data though IR wen client from workspace for a year(all 12 months) I am getting error as ("Out of Memory .Advice : Close other applications or windows and try again").
    If I am trying same through IR studio it does not give any output and show me same repoting front page.
    If i am selecting periods till 8 months it is giving the required data in both IR web client and IR studio.
    Could you please suggest how can we resolve this issue.
    Thanks,
    D.N.Rana

    Issue Cause :
    Sometimes this is due to excessive data which brings the size of the BQY file up around one gigabyte uncompressed in size (for processing may take twice as actual RAM, plus the memory space space for the plugin, and the typical memory limit on a 32-bit system is 2 gigabytes).
    Solution :
    To avoid excessive BQY size exceeding memory availability:
    Ensure that your computer has at least 2Gb of free RAM before he runs IR Studio.
    Put a limit to the number of rows that can be pulled down: Right click on Request label of Query section and put a value in Return First xxx Rows (and check the check box).
    Do not pull down more than 750 MB of data (remember it may be duplicated while processing).
    Place limits or aggregations in Query section (as opposed to Result section) to limit data entering the BQY.

Maybe you are looking for

  • What are the steps and costs to publish a magazine on the App Store?

    I'm in the learning process in making digital magazines with InDesign CS5.5. Now everything is ok until the end of the file is ready to get on the AppStore. I know that the costs are intended for publishers and companies so they can have their "kiosk

  • Help required for storage management

    Hi, I want that for each and every distinct row the columns value of that particular row should be stored in specific variables. Eg: table 1: Name add telephone_number a qw123 2323423545 b vsdfv34 3454645645 c wew222 8888867675 Result: for row1: vari

  • Which Browser Is Best On Lion?

    Which browser do you find works best on Lion?  I like the backward/forward affects of Safari.  I've found that Chrome appears to be the fastest and has two-finger swipe.

  • To implement MB_MIGO_BADI.

    Hi Experts, I need to use this badi for the migo transaction enhancement ( getting the tabstrips on header and item level ) . Which would be the approriate method to activate a tabstrip . I also need to add 2 new fields on the item tab ( quantity and

  • IPhone dock with a message or notification front led

    Hello there, is there a chance to get the iPhone dock with a message led in front to signalize whether there are unread messages and mails, lost calls or any other notification, e.g. low battery? All docks I found so far are non-communicative as well