Solman parameters wrong

Hi,
I just installed a new solman 7.1 and trying to do solman_setup. But facing problem with the issue at profile parameters.
Already set the values and restarted the server also to take effect but the same errors pop up
But my service marketplace shows as connected, what am I doing wrong?

Hi,
Have you maintained router settings in your solman system,
Check the SM59 destination SAPOSS; check if thats fine.
Check below
https://service.sap.com/saprouter
Router should be in DMZ if you are using SNC, see below
http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000234692&_SCENARIO
Regards
Rishav

Similar Messages

  • Generated SOAP request parameters wrong?

    hello everybody,
    when you generate a WSDL out of the integration directory.
    Do you SOAP request parameters work correct or do you have to modify them.
    We have to modify them and have to insert strings like >&amp<
    Do we anything wrong?
    Regards Mario

    Hi,
    I had to modify the order of tags (when used with webdynpro)
    but I don't remember the SP, path...
    but never  >&<
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • XSQL command line parameters

    I have a situation where I am generating some XML from a query in an XSQL and I want to use some command line parameters. This ony seems to work inside queries, e.g. given the command line "xsql quote.xsql quotetype=carhire quotenum=123" this will substitute 123 for "{@quotenum}" given the command line and leave "{@quotetype}" untouched.
    <pre>
    <quote type="{@quotetype}">
    <xsql:query>
    select price from quotes where number={@quotenum}
    </xsql:query>
    </quote>
    </pre>
    Is there a way to substitute the {@quotetype} part in XSQL?

    I'm already using XSLT and I've put <xsl:param name="type"> in the stylesheet, but references to $type don't seem to get any result, e.g.
    <xsl:value-of select="$type"/> is blank
    and
    <xsl:if test="$type='carhire'">
    <xsl:text>car hire</xsl:text>
    </xsl:if>
    doesn't generate any output either, so either I've got my syntax for parameters wrong, or the parameters don't get passed from the XSQL front end to the XSLT back end.

  • [svn:fx-trunk] 7801: Submit on behalf of Pete - an update to the project settings for the flex4test project , the link type was wrong.

    Revision: 7801
    Author:   [email protected]
    Date:     2009-06-12 14:38:25 -0700 (Fri, 12 Jun 2009)
    Log Message:
    Submit on behalf of Pete - an update to the project settings for the flex4test project, the link type was wrong.
    Doc Notes: None
    Bugs: None
    Reviewer: none
    tests: compile & run
    Modified Paths:
        flex/sdk/trunk/development/eclipse/flex/flex4test/.actionScriptProperties

    Wait a second...there is more to that error message that I overlooked before.
    There might be something other than just the way I set the CODE and CODEBASE parameters wrong here
    Any ideas?
    Here is the entire messsage:
    load: class DisplayMonoApplet.class not found.
    java.lang.ClassNotFoundException: DisplayMonoApplet.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more

  • Exporting a MySQL table to Excel

    My users have asked for the ability to download a MySQL table to an Excel spreadsheet. Being an amateur at all this PHP stuff I googled around and found a script that is supposed to do this. It's failing with "Couldn't select database: Access denied for user 'holli10_tonybabb'@'%' to database '_admin' 1044"
    It seems to be picking up an extra "@%" from somewhere
    I used the same settings that I successfully used for a CRON backup job.. I'd really appreciate any insight you can suggest. The script is shown below,
    Thanks
    Tony
    <?php
    //EDIT YOUR MySQL Connection Info:
    $DB_Server = "209.200.244.80";  //your MySQL Server
    $DB_Username = "holli10_tonybabb";     //your MySQL User Name
    $DB_Password = "abcd1234";    //your MySQL Password
    $DB_DBName = "_admin";    //your MySQL Database Name
    $DB_TBLName = "volunteers";    //your MySQL Table Name
    //$DB_TBLName,  $DB_DBName, may also be commented out & passed to the browser
    //as parameters in a query string, so that this code may be easily reused for
    //any MySQL table or any MySQL database on your server
    //DEFINE SQL QUERY:
    //you can use just about ANY kind of select statement you want -
    //edit this to suit your needs!
    $sql = "Select * from $DB_TBLName";
    //Optional: print out title to top of Excel or Word file with Timestamp
    //for when file was generated:
    //set $Use_Titel = 1 to generate title, 0 not to use title
    $Use_Title = 1;
    //define date for title: EDIT this to create the time-format you need
    $now_date = date('m-d-Y H:i');
    //define title for .doc or .xls file: EDIT this if you want
    $title = "Dump For Table $DB_TBLName from Database $DB_DBName on $now_date";
    Leave the connection info below as it is:
    just edit the above.
    (Editing of code past this point recommended only for advanced users.)
    //create MySQL connection
    $Connect = @mysql_connect($DB_Server, $DB_Username, $DB_Password)
    or die("Couldn't connect to MySQL:<br>" . mysql_error() . "<br>" . mysql_errno());
    //select database
    $Db = @mysql_select_db($DB_DBName, $Connect)
    or die("Couldn't select database:<br>" . mysql_error(). "<br>" . mysql_errno());
    //execute query
    $result = @mysql_query($sql,$Connect)
    or die("Couldn't execute query:<br>" . mysql_error(). "<br>" . mysql_errno());
    //if this parameter is included ($w=1), file returned will be in word format ('.doc')
    //if parameter is not included, file returned will be in excel format ('.xls')
    if (isset($w) && ($w==1))
    $file_type = "msword";
    $file_ending = "doc";
    }else {
    $file_type = "vnd.ms-excel";
    $file_ending = "xls";
    //header info for browser: determines file type ('.doc' or '.xls')
    header("Content-Type: application/$file_type");
    header("Content-Disposition: attachment; filename=database_dump.$file_ending");
    header("Pragma: no-cache");
    header("Expires: 0");
    /* Start of Formatting for Word or Excel */
    if (isset($w) && ($w==1)) //check for $w again
    /* FORMATTING FOR WORD DOCUMENTS ('.doc')   */
    //create title with timestamp:
    if ($Use_Title == 1)
      echo("$title\n\n");
    //define separator (defines columns in excel & tabs in word)
    $sep = "\n"; //new line character
    while($row = mysql_fetch_row($result))
      //set_time_limit(60); // HaRa
      $schema_insert = "";
      for($j=0; $j<mysql_num_fields($result);$j++)
      //define field names
      $field_name = mysql_field_name($result,$j);
      //will show name of fields
      $schema_insert .= "$field_name:\t";
       if(!isset($row[$j])) {
        $schema_insert .= "NULL".$sep;
       elseif ($row[$j] != "") {
        $schema_insert .= "$row[$j]".$sep;
       else {
        $schema_insert .= "".$sep;
      $schema_insert = str_replace($sep."$", "", $schema_insert);
      $schema_insert .= "\t";
      print(trim($schema_insert));
      //end of each mysql row
      //creates line to separate data from each MySQL table row
      print "\n----------------------------------------------------\n";
    }else{
    /* FORMATTING FOR EXCEL DOCUMENTS ('.xls')   */
    //create title with timestamp:
    if ($Use_Title == 1)
      echo("$title\n");
    //define separator (defines columns in excel & tabs in word)
    $sep = "\t"; //tabbed character
    //start of printing column names as names of MySQL fields
    for ($i = 0; $i < mysql_num_fields($result); $i++)
      echo mysql_field_name($result,$i) . "\t";
    print("\n");
    //end of printing column names
    //start while loop to get data
    while($row = mysql_fetch_row($result))
      //set_time_limit(60); // HaRa
      $schema_insert = "";
      for($j=0; $j<mysql_num_fields($result);$j++)
       if(!isset($row[$j]))
        $schema_insert .= "NULL".$sep;
       elseif ($row[$j] != "")
        $schema_insert .= "$row[$j]".$sep;
       else
        $schema_insert .= "".$sep;
      $schema_insert = str_replace($sep."$", "", $schema_insert);
      //following fix suggested by Josue (thanks, Josue!)
      //this corrects output in excel when table fields contain \n or \r
      //these two characters are now replaced with a space
      $schema_insert = preg_replace("/\r\n|\n\r|\n|\r/", " ", $schema_insert);
      $schema_insert .= "\t";
      print(trim($schema_insert));
      print "\n";
    ?>
    <?php /*_____________________END___OF___THE___CODE______________________
    get more code from http://www.fundisom.com/phparadise/
    ___________________________________________________________________*/ ?>

    Never mind. The web hosting support people people told me I had my parameters wrong. It works fine now.

  • Calling to BPM via PI

    Basically I have already found a solution by trial and error, but I still don't understand what's going on, maybe someone can help me understand.
    I am trying to make a web service call
    from a CRM system (CRM 7.0 EhP3 SP 3), outbound interface {http://sap.com/xi/CRM/FS/Global2}NewLoanBoardingFSCreateRequest_Out
    via PI (double-stack, PI 7.31 SP 3)
    to a NW Java BPM system (NW 7.40 SP 4, inbound interface {http://sap.com/xi/FS-AO/Global}NewLoanBoardingProcessingNewLBrdngIn. The host name of the system is ilbnknw1 and the port is 50300.
    I created an EJB for the implementation of the service provider NewLoanBoardingProcessingNewLBrdngIn and a BPM process according to note 1891861 in NW Developer Studio and deployed all of it to the NW Java BPM server.
    There is a web service end point for NewLoanBoardingProcessingNewLBrdngIn on the NW Java BPM server the URL looks like this: http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start?wsdl&mode=ws_policy (visible in WS Administrator > Configuration > Connectivity > Single Service Administration > (stay on tab Service Definitions) > search for WSDL Port Type Name: NewLoanBoardingProcessingNewLBrdngIn ... I don't remember if it was created automatically during the deployment or I created it manually.)
    The security settings for the end point are set like this:
    Transport protocol: HTTP (not HTTPs)
    HTTP Authentication: Checkmarks for Login with User ID/Password and for Logon ticket are set. (X.509 is not set and also grayed out.)
    Message Authentication: No checkmarks are set.
    I can test the above WSDL URL (http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start?wsdl&mode=ws_policy) from WS Navigator and it works - I don't get an error message, and in WS Administrator I see that the process is started (at Operations > Processes and Tasks > Manage Processes).
    Now I wanted to test it from CRM. One possibility would be to go into SOAMANAGER and create a port that connects to the end point. But we prefer to go via PI. So I set up a receiver determination, interface determination and receiver agreement. The first two have no problems, the correct receiver (a business system referring to the NW Java BPM system) and the correct receiver interface are found. With the receiver agreement I was not so sure what to do and I tried different things.
    First I thought: It's a call to a web service, let me use a web service receiver channel, i.e. Adapter Type = WS of version SAP BASIS 7.31 (I tried 7.40 because the NW Java BPM server is 7.40, but the PI doesn't like that because it's only 7.31).
    I entered:
    WSDL Access URL: I used the complete URL (http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start?wsdl&mode=ws_policy).
    Authentication Method for WSDL Access: Basic Authentication using HTTP. (The other option No authentication and SSO using SAP Assertion ticket don't seem to fit.)
    User name for WSDL access: A user in the NW Java BPM system.
    Password for WSDL access: Password of the user
    Security
    Communication Security: None
    Authentication Method: User ID/Password (Transport Channel Authentication)
    Technical Transport Settings
    Target Host: ilbnknw1
    Service Name/Port: 50300
    URL Access Path: /bpm/testsapcom/polnlbv0/start (this can be selected with the value help button and that was the only choice int he value help)
    Then in the receiver agreement I chose this channel and entered the user and password on the NW Java system that should be used for the actual WS call (while the other one in the channel is only for accessing the WSDL) ... actually I used the same user and password for both, it has enough authorizations.
    Result: Didn't work at all, PI showed a red flag for the message with the error WS_ADAPTER_SYS_ERROR and text System error while calling Web service adapter: Error when initializing SOAP client application: &#39;Error when initializing SOAP client application: &quot;SRT: Unexpected failure in SOAP processing occurre&quot;&#39;
    Question: Is this totally the wrong adapter to call to a NW Java system, or were my parameters wrong?
    Then I found some things in the forum that said: Just use SOAP adapter, not WS adapter! And for communication between (newer releases of) PI and (new releases of) NW Java BPM it's best to use the SOAP adapter with the XI 3.0 protocol.
    So I tried a SOAP receiver channel with XI 3.0 protocol, i.e. Adapter type SOAP with version SAP BASIS 7.31,
    Transport Protocol: HTTP,
    Message Protocol: change from SOAP 1.1 to XI 3.0,
    Adressing Type: URL address (HTTP destination was the alternative),
    Target URL: I used the whole URL (http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start?wsdl&mode=ws_policy),
    Authentication Mode: Use Logon Data for Non-SAP system (because Logon Data for SAP system wanted a client and language, so I think it refers to ABAP systems only),
    User Name: A user in the NW Java BPM system,
    User Password: the matching password
    (No settings in receiver agreement, just chose the channel.)
    Result: The PI didn't show any error anymore, the flag was black-white. But on NW Administrator (Operations > Processes and Tasks > Manage Processes) I could not see the process starting!
    Question: How is this possible? Where else could the error be seen? Are my parameters wrong? Probably not, otherwise PI should already show the error.
    Next try: SOAP receiver channel with SOAP 1.1 protocol, i.e. Adapter type SOAP with version SAP BASIS 7.31,
    Transport Protocol: HTTP,
    Message Protocol: SOAP 1.1 (the default, instead of XI 3.0 in the previous attempt)
    Adressing Type: URL address (HTTP destination was the alternative),
    Target URL: I used the URL just up to the ? for the parameters, i.e. only http://ilbnknw1:50300/bpm/testsapcom/polnlbv0/start,
    Checkmark for Configure User Authentication,
    User Name: A user in the NW Java BPM system,
    User Password: the matching password
    At the bottom:
    Checkmark for Use Query String,
    SOAP Action: wsdl&mode=ws_policy
    (No settings in receiver agreement, just chose the channel.)
    Result: Success in PI (black-white flag) - and now two processes were started shortly after each other (within 15 seconds)!
    I tested again to see if it would always trigger two process starts, but now it only started one as expected.
    So it looks like the other process start "pushed out" a hanging previous process start? Is such a thing possible? Where could I monitor this? (Apparently not in NW Administrator > Operations > Processes and Tasks > Manage Processes).
    So now I have a solution, I use a SOAP receiver channel with SOAP 1.1 protocol, not with XI 3.0 protocol, and certainly not thw WS adapter. But I still wonder why it's not working with the XI 3.0 protocol, even though this seems to be the most recommended way for PI and BPM to communicate in recent releases that support this, and what exactly happened there, where the first process start was "hiding" in the meantime.

    Hi Monika,
    did you choose the URL
    http(s)://<hostname>:<port>/MessagingSystem/receive/JPR/XI
    in the XI 3.0 communication channel as described in the SAP Help? As far as I understand your description you didn't. Maybe this is the reason that it was not working with XI 3.0.
    Please check this link for proper setup:
    http://help.sap.com/saphelp_nw73ehp1/helpdata/en/99/0d45d39bb442bc96925f4a5db8b7ee/content.htm?frameset=/en/f1/24e6e6f548480b85197bde372d13c9/frameset.htm
    Best Regards
    Harald

  • Security Settings and Field Extraction

    Hello, I've run into a bit of a problem in .NET(C#) when trying to automate data extraction from a PDF. Specifically, I get an error stating "The document's security settings prohibit the operation being performed". The security method applied to the document is "No Security". However, the document restrictions summary says changing the document, document assembly and creation of template pages is not allowed. Below the restrictions is a paragraph that indicates that the document restricts some Acrobat features to allow for extended features in Adobe Reader. It says that I may create a copy of the document that is not restricted by using File > Save a Copy. Using the copy, I'm able to extract the data that I need.
    Is there a way that I can go about removing the restrictions from the document, either on the creation side, which is done manually, or on the programming side? I haven't found a way to duplicate the "Save a Copy" functionality with AcroAppClass.Save(). Exporting data is also disabled b/c of the restrictions. I noticed that I can extract pages manually and save them to a new document, which gets rid of the restrictions, but I couldn't find a way to do that via the PIAs.
    Any help or advice is appreciated.

    Ahh, I overlooked GetType(). Thanks.
    Calling the saveAs method works fine when just passing one parameter (a file name to save to), but when trying to pass multiple parameters I get an internal exception. I may be passing the parameters wrong, but I'm not sure.
    For example:
    object[] arguments = new object[] { @"c:\call\test.pdf"};
    mJSObject.GetType().InvokeMember("saveAs", BindingFlags.InvokeMethod, null, mJSObject, arguments);
    The documentation says there are 5 parameters:
    cPath, cConvID, cFS, bCopy, bPromptToOverwrite
    I tried using:
    object[] arguments = new object[] { @"c:\call\test.pdf", Missing.Value, Missing.Value, true, Missing.Value" };
    and this:
    object[] arguments = new object[] { @"c:\call\test.pdf", "com.adobe.acrobat.jpeg" };
    Unfortunately, I get "Exception has been thrown by the target of an invocation" when attempting to save using either of the above two methods.

  • Using tag OBJECT on a machine with multiple jre versions

    Dear friends,
    i guess that this question has been already answered, but i can't find the thread with all infos i need.
    So please excuse me if i'm redundant.
    This is my problem:
    i have a web application that runs an applet, embedded in an html page;
    by now the applet is loaded with the standard tag <APPLET>.
    I found many Sun's official pages talking about the use of OBJECT tag to specify the jre version that is supposed to run the applet.
    I tried many ways but i can't reach the way to avoid loading the applet with the latest jre installed on my pc.
    Here is the code of my OBJECT:
    <OBJECT NAME="client" CLASSID="clsid:CAFEEFAC-0014-0002-0009-ABCDEFFEDCBB" HEIGHT="38" WIDTH="335" >
                          <PARAM NAME="NAME" VALUE="client">
                          <PARAM name="type" value="application/x-java-applet;jpi-version=1.4.2_09">
                             <PARAM NAME="CODE" VALUE="it.fabio.client">
                             <PARAM NAME="CODEBASE" VALUE="/myapp">
                             <PARAM NAME="ARCHIVE" VALUE="mylib.jar">          
                   </OBJECT>The machines where the application is deployed have the 1.4.2_09 and the 1.5.0_03 jre versions, but my applet runs only on 1.4.2_09 version.
    So i have to find a way to tell the browser which jre has to be called.
    Thanks in advance for help.
    Regards

    Wait a second...there is more to that error message that I overlooked before.
    There might be something other than just the way I set the CODE and CODEBASE parameters wrong here
    Any ideas?
    Here is the entire messsage:
    load: class DisplayMonoApplet.class not found.
    java.lang.ClassNotFoundException: DisplayMonoApplet.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more

  • Using the import on a page with an applet.

    I imported an HTML page that loads an applet I wrote (which works fine locally), but after I imported it, I'm having trouble figuring out how to get it to load when I build it from JSC.
    Anyway, here is what I have in my JSP page that calls out to the applet (DisplayMonoApplet).
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
            <html lang="en-US" xml:lang="en-US">
                <head>
                    <title>Model Viewer</title>
                </head>
                <body>
                    <h1>Model Viewer</h1>
                    <hr/>
                    <!--"CONVERTED_APPLET"-->
                    <!-- http://surewebdev:18080/sureweb/ -->
                    <!-- HTML CONVERTER -->
                    <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
                        codebase="http://java.sun.com/update/1.5.0/jinstall-1_5-windows-i586.cab#Version=1,5,0,0" height="600" width="800">
                        <param name="CODE" value="DisplayMonoApplet.class"/>
                        <param name="type" value="application/x-java-applet;version=1.5"/>
                        <param name="scriptable" value="false"/>
                        <comment>
                            <embed code="DisplayMonoApplet.class" height="600" model="models/HyaluronicAcid.xyz"
                                pluginspage="http://java.sun.com/products/plugin/index.html#download" scriptable="false"
                                type="application/x-java-applet;version=1.5" width="800"></embed>
                            <noembed>alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason." Your browser is completely ignoring the <APPLET> tag!</noembed>
                        </comment>
                    </object>
                    <!--
    <APPLET CODE = XYZApp.class WIDTH = 300 HEIGHT = 300>
    alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason."
        Your browser is completely ignoring the <APPLET> tag!
    </APPLET>
    -->
                    <!--"END_CONVERTED_APPLET"-->
                    <hr/>
                    <a href="XYZApp.java">The source</a>.<script language="JavaScript" src="/js/omi/jsc/s_code_remote.js" type="text/javascript"></script>
                    <h:form binding="#{modelviewer.form1}" id="form1"/>
                </body>
            </html>
        </f:view>
    </jsp:root>The page loads fine but the applet will not load because it cannot find the DisplayMonoApplet.class.
    Here is the exact error:
    load: class DisplayMonoApplet.class not found.
    java.lang.ClassNotFoundException: DisplayMonoApplet.class
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadCode(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    What I did was add my applet in Project Navigator like this:
    Left clicked on my project name
    Right clicked to selectfile view
    Expanded src, then src again
    Right clicked on myapp and added a Java file named DisplayMonoApplet
    When I build this in JSC, the DisplayMonoApplet can be found in the WAR file in the following location:
    WEB-INF\classes\myapp\DisplayMonoApplet.class
    I have tried every configuration I can think of (myapp/DisplayMonoApplet, http://myserver:18080/myapp/.....etc.) but no luck.
    Do I need to add something to my web.xml file like you do for servlets (I can call servlets in this app just fine)?
    What am I doing wrong?
    THANKS!

    Wait a second...there is more to that error message that I overlooked before.
    There might be something other than just the way I set the CODE and CODEBASE parameters wrong here
    Any ideas?
    Here is the entire messsage:
    load: class DisplayMonoApplet.class not found.
    java.lang.ClassNotFoundException: DisplayMonoApplet.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more

  • How do I configure a counter to generate pulses using DAQmx?

    How do I configure a counter to generate pulses using DAQmx?
    Is says in the DAQmx C reference help
    "CtrnInternalOutput—The signal at this internal terminal is where the pulsed or toggled output of the counter appears. The output of a counter pulses or toggles when the counter reaches terminal count. When counting down, the counter reaches terminal count when the count reaches zero. When counting up, the counter reaches terminal count when the counter rolls over. To configure the counter to toggle or generate pulses, use the Export Signal function/VI with Counter Output Event as the signal name."
    I've tried this but can't get it to work, I may have the parameters wrong or something. The DAQmxExportSignal() function is very unintuitive to me. Here is my counter config code...
    int ret = 0;
    ret = DAQmxCreateTask("",&task_);
    errorMsg(ret);
    if (ret != 0)
    throw ret;
    // Configure the counter
    ret = DAQmxCreateCOPulseChanTicks( task_, "Dev1/ctr0", "", "/Dev1/PFI8", DAQmx_Val_Low, 0, divider, divider );
    errorMsg(ret);
    ret = DAQmxCfgImplicitTiming( task_, DAQmx_Val_ContSamps, 1000 );
    errorMsg(ret);
    // Change to pulse mode
    ret = DAQmxExportSignal( task_, DAQmx_Val_CounterOutputEvent, "/Dev1/Ctr0InternalOutput" );
    errorMsg(ret);
    // Start the counter
    ret = DAQmxStartTask(task_);
    errorMsg(ret);
    The above code works fine, in toggle mode, if I just comment out the DAQmxExportSignal() part.
    HELP!!!
    Stefan

    The problem is due to the DAQmxExportSignal call.  By default, when you create a counter output pulse train task, the driver will automatically set the output of the counter to toggle when the count for each high ticks and low ticks expire.  The driver also automatically routes the signal present at Ctr0InternalOutput terminal (the output of the counter internal to the device) to the Ctr0Out terminal (the I/O pin available externally).  Using the line
     ret = DAQmxExportSignal( task_, DAQmx_Val_CounterOutputEvent, "/Dev1/Ctr0InternalOutput" );
    will tell the driver to tristate the Ctr0Out terminal and not output the signal to the external I/O pin.  Using the DAQmxExportSignal function is generally only useful if you want to route the signal to some other terminal internal to the board without having the output show up on the external connector, route the signal to some other external pin other than the default pin, or if you want to have the output show up at multiple locations. 
    If you want to change the output behavior from toggle to pulse, you need to use the DAQmxSetExportedCtrOutEventOutputBehavior function.  However, this is generally only useful if all you care about are edges (not the duty cycle of the pulse train), and you want to generate higher frequency signals.  For example, with a 20 MHz timebase as the source of your counter, you can only generate a 5 MHz pulse train by default.  This is because the minimum value for the low and high ticks parameter is 2 (20 MHz / 4 = 5 MHz).  By changing the output behavior form toggle to pulse, you can generate a pulse train at 10 MHz since the output is now pulsing instead of toggling.  However, the width of each pulse is not programmable so you will no longer have a 50% duty cycle signal.  I don't remember exactly what the width of each pulse is, but I believe it's in the neighborhood of 50 - 100 nanoseconds in width.  I hope this information helps.

  • SDO_UTIL.AFFINETRANSFORMS

    I have the following parameters for 2D affine transformation:
    Two translation:
    tx=2754.3661 and ty = -237.0731
    and rotation in radians: -.001016214498072193185827329
    Is this specification correct:
    SDO_UTIL.TO_WKTGEOMETRY(SDO_UTIL.AffineTransforms (
    geometry =>myGeometry,
    translation => 'TRUE', tx => 2754.3661, ty => -237.0731, tz => 0.0,
    scaling => 'FALSE', psc1 => NULL, sx => 0.0, sy => 0.0, sz => 0.0,
    rotation => 'TRUE',
    p1 => MDSYS.SDO_GEOMETRY(2001, NULL, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL), line1 => NULL,
    angle => -.001016214498072193185827329,
    dir => -1,
    shearing => 'FALSE', shxy => 0.0, shyx => 0.0, shxz => 0.0, shzx => 0.0, shyz => 0.0, shzy => 0.0,
    reflection => 'FALSE', pref => NULL, lineR => NULL, dirR => -1, planeR => 'FALSE', n => NULL, bigD => NULL
    Thanks.
    BTW, in PostGIS it works correctly:
    ST_Affine (myGeometry, cos(rotation), sin(rotation), -sin(rotation), cos(rotation), tx, ty));
    Edited by: qwe14450 on 13-Jul-2012 15:03

    Qwe (for Qwe must be your name),
    It is tricky to get this function to work as the error message thrown when you get the parameters wrong is useless.
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.Exception: Invalid parameter for affine transform
    ORA-06512: at "MDSYS.SDO_UTIL", line 266
    29532. 00000 -  "Java call terminated by uncaught Java exception: %s"
    *Cause:    A Java exception or error was signaled and could not be
               resolved by the Java code.
    *Action:   Modify Java code, if this behavior is not intended.The thing I kept yelling at the screen was "what parameter is invalid"!!!!!
    But I got this to work:
    select mdsys.sdo_geometry(2002,NULL,NULL,SDO_ELEM_INFO_ARRAY(1,2,1),SDO_ORDINATE_ARRAY(2.0,2.0,2.0,4.0,8.0,4.0,12.0,4.0,12.0,10.0,8.0,10.0,5.0,14.0)) as geomm from dual;
    select SDO_UTIL.AffineTransforms (
            geometry => mdsys.sdo_geometry(2002,NULL,NULL,SDO_ELEM_INFO_ARRAY(1,2,1),SDO_ORDINATE_ARRAY(2.0,2.0,2.0,4.0,8.0,4.0,12.0,4.0,12.0,10.0,8.0,10.0,5.0,14.0)),
            translation => 'TRUE',
              tx => 2754.3661,
              ty => -237.0731,
              tz => 0.0,
            rotation => 'TRUE',
              p1 => MDSYS.SDO_GEOMETRY(2001, NULL, MDSYS.SDO_POINT_TYPE(0, 0, NULL), NULL, NULL),
              angle => -0.001016214498072193185827329, /*cogo.radians(45),*/
              dir => -1,
              line1 => NULL,
            scaling    => 'FALSE', psc1 => NULL, sx => 0.0, sy => 0.0, sz => 0.0,
            shearing   => 'FALSE', shxy => 0.0, shyx => 0.0, shxz => 0.0, shzx => 0.0, shyz => 0.0, shzy => 0.0,
            reflection => 'FALSE', pref => NULL, lineR => NULL, dirR => -1,
            planeR     => 'FALSE', n => null, bigD => null
      from dual;
    -- Result
    SDO_GEOMETRY(2002,NULL,NULL,SDO_ELEM_INFO_ARRAY(1,2,1),SDO_ORDINATE_ARRAY(2756.36813139595,-235.075133461338, 2756.3701638246,-233.07513449403, 2762.37016072653,-233.081231779969, 2766.37015866114,-233.085296637262, 2766.37625594708,-227.085299735337, 2762.37625801246,-227.081234878044, 2759.38032441879,-223.078188300459))Note the reference to /*cogo.radians(45),*/.... I have a function Radians in a package called Cogo that I use to convert from degrees (360) to radians:
    Create   Function radians(p_degrees in number)
        Return number
      Is
         c_PI  NUMBER(16,14) := 3.14159265358979;
      Begin
        Return p_degrees * (c_PI / 180.0);
      End radians;
    /If this helps, please award points.
    regards
    Simon

  • Handling internal table with more than 1 million record

    Hi All,
    We are facing dump for storage parameters wrongly set.
    Basically the dump is due to the internal table having more than 1 million records. We have increased the storage parameter size from 512 to 2048 , still the dump is happening.
    Please advice is there any other way to handle these kinds of internal table.
    P:S we have tried the option of using hashed table, this does not suits our scenario.
    Thanks and Regards,
    Vijay

    Hi
    your problem can be solved by populating the internal table in chunks. for that you have to use Database Cursor concept.
    hope this code helps.
    G_PACKAGE_SIZE = 50000.
      * Using DB Cursor to fetch data in batch.
      OPEN CURSOR WITH HOLD DB_CURSOR FOR
             SELECT *
               FROM ZTABLE.
        DO.
        FETCH NEXT CURSOR DB_CURSOR
           INTO CORRESPONDING FIELDS OF TABLE IT_ZTABLE
           PACKAGE SIZE G_PACKAGE_SIZE.
        IF SY-SUBRC NE 0.
          CLOSE CURSOR DB_CURSOR.
          EXIT.
        ENDIF.

  • FM error in smartform

    Hi,
    I am trying to execute my print program but i am getting error that "FM called wrongly" .
    My requirement is i want to display vendor details using smartforms.For this i took internal table with 5 fields.There is no syntactical errors in the program. Also form is in active state.

    Hi Swati,
       This error comes when you pass some parameters wrongly to the function module...
       Please try the following procedure
        1.  Determine the Function Module name dynamically,
        2.  Call the determined function module.
    Sample Code:
    call function <b>'SSF_FUNCTION_MODULE_NAME'</b>
             exporting  formname           =  lf_formname      " Smartform Name
             importing  fm_name            =  <b>fm_name </b> " Function module Name
             exceptions no_form            = 1
                        no_function_module = 2
                        others             = 3.
      if sy-subrc <> 0.
        case sy-subrc.
          when 1.
            MESSAGE e033 with text-003.
          when 2.
            MESSAGE e033 with text-004.
          when 3.
            MESSAGE e033 with text-005.
        endcase.
      endif.
    The below function module is generated by smartform.
      CALL FUNCTION  <b>fm_name </b>                " Calling determined function module
        EXPORTING
          WA_VBDKA                            = vbdka   
       IMPORTING
         DOCUMENT_OUTPUT_INFO       = wa_output_info
         JOB_OUTPUT_INFO                   = wa_output_info
         JOB_OUTPUT_OPTIONS            = wa_output_options
        TABLES
          T_VBDPA                                  = t_vbdpa
    Regards
    Ali S

  • WMS2012: Using web limiting on a site with a redirect.

    We are using Multipoint Server 2012 and have run into a situation we need assistance with. We have a website that users are required to go to and sign into. This site redirects to the login page, and then back to the original link. The only solution we have
    found is to have the main link, and the redirected link as "Allowed" Users are getting confused and clicking on the redirected link on the web limiting landing page, which will not work without first coming from the main link.
    Is there a way to edit this page so the users do not see the redirection link, but still allow them access to the main link and the ability to sign in?
    basically in short, users go to portal.adp.com and it redirects to agateway.adp.com then back to portal.adp.com. we only want users to see the portal.adp.com link, and still allow the passthrough of the redirect.

    Wait a second...there is more to that error message that I overlooked before.
    There might be something other than just the way I set the CODE and CODEBASE parameters wrong here
    Any ideas?
    Here is the entire messsage:
    load: class DisplayMonoApplet.class not found.
    java.lang.ClassNotFoundException: DisplayMonoApplet.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more

  • WebIOException on custom B2B vanilla

    Hi gurus,
    in order to create 2 custom B2B projects, we created another custom B2B, named B2B_xyz without sources' modifications, to evaluate the correct creation of track, import into NWDS and finally the deployment.
    Our CRM is a 7.02 and we followed all SAP documents that we found.
    Now we deployed B2B_xyz and we can see it with URL: http://<hostname>:<port>/PB2B5_xyz.
    The Administration Console (http://<hostname>:<port>/PB2B5_xyz/admin) works fine, but when we go on XCM page we have this message error:
    ISA Framework: com.sap.engine.services.servlets_jsp.server.exceptions.WebIOException: Internal error while parsing JSP page [/usr/sap/AJS/JC12/j2ee/cluster/server0/apps/sap.com/B2B_xyz/servlet_jsp/B2B_xyz/root/admin/xcm/MainConfig.jsp].
    We made the same operation also with the original B2B and it works fine, so we think that the custom B2B has some parameters wrong.
    Can someone help us?

    On reading the log I found this error:
    application [B2B_xyz] Runtime error in compiling of the JSP file </usr/sap/AJS/JC12/j2ee/cluster/server0/apps/sap.com/B2B_xyz/servlet_jsp/B2B_xyz/root/admin/xcm/MainConfig.jsp> !
    The error is: com.sap.engine.services.servlets_jsp.lib.jspparser.exceptions.JspParseException: Cannot parse custom tag with short name [encodeHiddenFormField].
    Caused by: java.lang.ClassNotFoundException: com.sap.isa.dependencies.xsrf.tags.EncodeHiddenFormFieldTag
    Some ideas?

Maybe you are looking for

  • "Error executing AppleScript in Display Set"

    Keep getting this message when opening a new window. I am running 10.8.4 on a an Intel iMac. Any ideas on how to fix?

  • I need to import raw images from canon Mark iii

    how can I do this in 4? Do I need additional software?

  • Windows local backup on external hard drive

    Hi, I have installed to new servers under Windows Server 2012 Std and now i'm trying to configure backup with the Windows service. On twice server I have the same result....event 519....Have you already see that ? Thanks

  • PNG images on IP Communicator

    I'm having problems getting a PNG image to appear on an IP Communicator. When you try to select the file via the settings button, it doesn't appear and you get a File Not Found Error. Any idea's? Dave

  • Installed/updated iTunes...now no sound

    Hello, new to the forum, looking for some help. I recently upgraded iTunes...ran in the Missing QTCF.dll file, finally got that resolved. Now that i can open Tunes, it says my audio device is not installed? Like it just dissappeared! What/How can i r