JSP doesn't produce any output

6.1sp1
          What am I doing wrong? This JSP page:
          <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2">
          <html>
          <body>
          Hello, World!
          </body>
          </html>
          </jsp:root>
          compiles into :
          public void _jspService(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws java.io.IOException, javax.servlet.ServletException
          // declare and set well-known variables:
          javax.servlet.ServletConfig config = getServletConfig();
          javax.servlet.ServletContext application = config.getServletContext();
          javax.servlet.jsp.tagext.Tag _activeTag = null;
          // variables for Tag extension protocol
          Object page = this;
          javax.servlet.jsp.JspWriter out;
          javax.servlet.jsp.PageContext pageContext =
          javax.servlet.jsp.JspFactory.getDefaultFactory().getPageContext(this, request, response, null, true, 8192, true);
          out = pageContext.getOut();
          JspWriter _originalOut = out;
          javax.servlet.http.HttpSession session = request.getSession(true);
          try { // error page try block
          } catch (Throwable __ee) {
          while (out != null && out != _originalOut) out = pageContext.popBody();
          ((weblogic.servlet.jsp.PageContextImpl)pageContext).handlePageException((Throwable)__ee);
          //before final close brace...
          Dimitri
          

I am confused now.
          [5.3.12] says:
          All text that is uninterpreted by the JSP translator is converted
          into the body for a jsp:text element. As a consequence no XML elements
          of the form described in Section JSP.5.2.11 will appear in the XML view
          of a JSP page written in JSP syntax.
          and [5.2.11] says:
          The XML syntax for JSP pages also allows an XML element that does
          not rep-resent neither a standard action nor a custom actionto appear
          anywhere where a jsp:text may appear. The interpretation of such an XML
          element is to pass its textual representation to the current value of out,
          after the whitespace processing described in Section JSP.5.2.1.
          which means that page like this:
          <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2">
          <html>
          <body>
          Hello, World!
          </body>
          </html>
          </jsp:root>
          should work - "...The interpretation of such an XML element is to pass its textual
          representation to the current value of out...", right?
          And the schema appear to allow this (B.2):
          <xsd:group name = "Bodygroup">
          <xsd:choice>
          <xsd:element ref = "directive.page"/>
          <xsd:element ref = "directive.include"/>
          <xsd:element ref = "scriptlet"/>
          <xsd:element ref = "declaration"/>
          <xsd:element ref = "expression"/>
          <xsd:element ref = "useBean"/>
          <xsd:element ref = "setProperty"/>
          <xsd:element ref = "getProperty"/>
          <xsd:element ref = "include"/>
          <xsd:element ref = "forward"/>
          <xsd:element ref = "plugin"/>
          <xsd:element ref = "text"/>
          <xsd:any namespace="##other" processContents = "lax"/>
          </xsd:choice>
          </xsd:group>
          newsgroups.bea.com <[email protected]> wrote:
          > As per JSP1.2 section 5.3.12 you have to put any template text into
          > <jsp:text>...</jsp:text> blocks. There are also some examples further along
          > in the specification.
          > Sam
          > "Dimitri Rakitine" <[email protected]> wrote in message
          > news:[email protected]...
          >> 6.1sp1
          >>
          >> What am I doing wrong? This JSP page:
          >>
          >> ---
          >> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2">
          >> <html>
          >> <body>
          >> Hello, World!
          >> </body>
          >> </html>
          >> </jsp:root>
          >> ---
          >>
          >> compiles into :
          >>
          >> public void _jspService(javax.servlet.http.HttpServletRequest request,
          > javax.servlet.http.HttpServletResponse response) throws java.io.IOException,
          > javax.servlet.ServletException
          >> {
          >>
          >> // declare and set well-known variables:
          >> javax.servlet.ServletConfig config = getServletConfig();
          >> javax.servlet.ServletContext application =
          > config.getServletContext();
          >> javax.servlet.jsp.tagext.Tag _activeTag = null;
          >> // variables for Tag extension protocol
          >>
          >> Object page = this;
          >> javax.servlet.jsp.JspWriter out;
          >> javax.servlet.jsp.PageContext pageContext =
          >>
          > javax.servlet.jsp.JspFactory.getDefaultFactory().getPageContext(this,
          > request, response, null, true, 8192, true);
          >>
          >> out = pageContext.getOut();
          >> JspWriter _originalOut = out;
          >>
          >> javax.servlet.http.HttpSession session = request.getSession(true);
          >>
          >>
          >>
          >> try { // error page try block
          >>
          >> } catch (Throwable __ee) {
          >> while (out != null && out != _originalOut) out =
          > pageContext.popBody();
          >>
          > ((weblogic.servlet.jsp.PageContextImpl)pageContext).handlePageException((Thr
          > owable)__ee);
          >> }
          >>
          >>
          >> //before final close brace...
          >> }
          >>
          >> ???
          >>
          >> --
          >> Dimitri
          Dimitri
          

Similar Messages

  • Server Core 2008 R2 SP1 - AD DS Best Practice Analyzer Scans Don't Produce Any Output

    Hi,
    This is a re-post moving this discussion to the recommended forum "Server Core" from here:
    http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/cc33d429-88e0-4450-a73c-361e395fd217.
    I am having problems producing any output for any AD DS Best Practice Analyzer Scans on a Windows Server Core 2008 R2 SP1 Domain Controller.
    I have imported the "ServerManager" and "BestPractices" PS modules on that Server by running the following commands:
    Import-Module ServerManager
    Import-Module BestPractices
    I've then run
    get-BPAModel, to find out what best practice scan models are availale, this returns the following output:
    Id                                                       
    LastScanTime
    Microsoft/Windows/DirectoryServices     Never
    Microsoft/Windows/DNSServer               Never
    I then run all the BPA scans on that box:
    Get-BPAModel | Invoke-BPAModel
    This returns the following output:
    ModelId                                          
    Success  Detail
    Microsoft/Windows/DirectoryServices True       (InvokeBpaModelOutputDetail)
    Microsoft/Windows/DNSServer          True       (InvokeBpaModelOutputDetail)
    Since the BPA invocation results weren’t displayed automatically, I entered the following command to see them:
    Get-BPAModel | Get-BPAResult | Out-File "D:\Source\BPA.txt"
    This command will create a text file with the scan results but I only see the results of the DNSServer scan, not the DirectoryServices scan.
    I have also tried to view the results in a HTML format by running the following command but still only see the DNSServer scan results:
    Get-BPAModel | Get-BPAResult | ConvertTo-Html | Set-Content d:\Source\BPA.htm
    I have also tried exeucuting the scan ONLY for the "Microsoft/Windows/DirectoryServices" model but can't get any results to be returned.  I have also connected using server manager from a Full install of Server 2008 R2 SP1 but that
    doesn't seem to show any results under the "Best Practices Analyzer" section when the "Active Directory Domain Services" node is selected, all 4 tabs ("Noncompliant", "Excluded", "Compliant" and "All") show zero (0).  However, the summary text above the
    tabs does show when the last scan was performed. which seems to be correct.
    Is there something special that needs to be done to produce the BPA results for the "Microsoft/Windows/DirectoryServices" BPA model on Server Core 2008 R2 SP1?
    BTW: The Forest/Domain is W2K3R2 Native, this is the first W2K8R2 DC in the environment and I have installed .NET 4 framework (Server Core) to support Powershell 3, also installed.
    Thanks, Paul.
    belpad

    Hi Diana,
    OK, pretty sure I've now found the root cause of the issue I've described above.
    I was also looking into Windows Update Agent issues for these W2K8R2 Server Core DC's, where no updates would be applied via WSUS (configured via GPO) and would fail with "FATAL: CBS called Error with 0x8000ffff windows update agent server
    core". 
    Yesterday, I managed to get one of the W2K8R2 Server Core DC's (WSUS updates) working again by removing one of the .NET 4 Framework security updates (KB2600211) which was manually applied when the server was initially setup.  .NET 4 (Server Core Edition
    http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=22833) was installed as a pre-requisitie for Powershell 3.  Once this update was removed, the affected server core DC was restarted and WSUS updates started to get applied.
    So I followed the same procedure on the other server core DC but this did not resolve the WSUS issue this time.  Next, I did further investigation into the Windows Update Agent problem.  This led me to the following article:
    http://blogs.technet.com/b/brad_rutkowski/archive/2008/07/03/windows-update-fails-with-8000ffff-e-unexpected.aspx which described an issue with NTFS permissions being set incorrectly on C: drive, with the "BUILTIN\Users" group completely
    missing on the C: drive.
    I found the affected Server Core DC also had this issue and when the "BUILTIN\Users" was assigned permissions on the C: drive as described above, and the Windows Update Agent re-started, the Server Core DC started to install all required updates
    configured via WSUS.
    Next, I ran the Directory Service BPA, which now produces the desired output either locally or remotely via Server Manager.
    Therefore, I can only assume that the Directory Service BPA also uses "Network Service" much like WUAUSERV (Windows Update Agent), which requires access to the C: drive via the "BUILTIN\Users" assignment.
    So this has subsequently led me to check the C: drive (%systemdrive%) permissions across multiple W2K8R2 machines, all of which showed differing assigned permissions, as follows:
    1. W2K8R2 Server Core DC - With Directory Services BPA and Windows Update Agent Not Working
    C:\>icacls c:\
    c:\ BUILTIN\Administrators:(OI)(CI)(F)
        CREATOR OWNER:(OI)(CI)(IO)(F)
        NT AUTHORITY\INTERACTIVE:(OI)(CI)(RX)
        NT AUTHORITY\SYSTEM:(OI)(CI)(F)
    2. W2K8R2 Server Core DC - With Directory Services BPA and Windows Update Agent Working OK
    C:\>icacls c:\
    c:\ NT AUTHORITY\SYSTEM:(OI)(CI)(F)
        BUILTIN\Administrators:(OI)(CI)(F)
        BUILTIN\Users:(OI)(CI)(RX)
        BUILTIN\Users:(CI)(AD)
        BUILTIN\Users:(CI)(IO)(WD)
        CREATOR OWNER:(OI)(CI)(IO)(F)
    3. W2K8R2 Full DC - With Directory Services BPA and Windows Update Agent Working OK
    C:\>icacls c:
    c: NT SERVICE\TrustedInstaller:(F)
       NT SERVICE\TrustedInstaller:(CI)(IO)(F)
       NT AUTHORITY\SYSTEM:(M)
       NT AUTHORITY\SYSTEM:(OI)(CI)(IO)(F)
       BUILTIN\Administrators:(M)
       BUILTIN\Administrators:(OI)(CI)(IO)(F)
       BUILTIN\Users:(RX)
       BUILTIN\Users:(OI)(CI)(IO)(GR,GE)
       CREATOR OWNER:(OI)(CI)(IO)(F)
    4. W2K8R2 Server Core DHCP Server (Migrated from W2K3 with Server Migration Tools) - With DHCP BPA and Windows Update Agent Working OK
    C:\>icacls c:
    c: NT AUTHORITY\SYSTEM:(OI)(CI)(F)
       BUILTIN\Administrators:(OI)(CI)(F)
    5. W2K8R2 Server Core DHCP Server (Migrated from W2K3 with netsh) - With DHCP BPA and Windows Update Agent Working OK
    C:\>icacls c:
    c: NT AUTHORITY\SYSTEM:(OI)(CI)(F)
       BUILTIN\Administrators:(OI)(CI)(F)
       BUILTIN\Users:(OI)(CI)(RX)
       BUILTIN\Users:(CI)(AD)
       BUILTIN\Users:(CI)(IO)(WD)
       CREATOR OWNER:(OI)(CI)(IO)(F)
    None of the above servers have a Group Policy or any in-house scripts defined that configure C: drive permissions.  It seems odd that there should be such a variance in the C: (%systemdrive%) drive permissions across the above servers, with only
    scenarios 2 and 5 above have matching permissions.  I can only imagine that maybe some software or software update might be causing this.
    By reviewing the above output, it seems there is also a difference between the C: drive permissions of W2K8R2 Server Core and W2K8R2 Full.  Not sure if this is by design? 
    Is there any Microsoft Documentation describing what the default %systemdrive% NTFS permissions should be for W2K8R2 Server Core and Full.  Furthermore, do these permissions change when the various infrastructure roles are installed and enabled i.e.
    Domain Controller, DHCP etc.  I ask, since I would like to use the correct set of permissions for %systemroot% in each scenario. Please advise if I should be asking this question in a different forum?
    belpad

  • Robohelp 9 WebHelp - Searching doesn't produce any results.

    Hi, I upgraded to RoboHelp 9 last week and now searching in Webhelp doesn't produce any results. I've created a new project, used the sample project, tried generating it to a new folder and results remain the same.
    When I select the search tab, the status bar flutters with the "Waiting for file...." displayed indefinetly with the occassion display of the javascript: (void);
    Screens shots are from the RH 9 sample project. Results are the same with my projects.  CHMs generated work fine!
    Any suggestions?

    Mary
    You added the problem to another thread that was not related as the issue there is the use of HTTPS. I have deleted that post.
    You also started a second thread with a the same question. I don't understand how asking the question twice will help so I have locked that thread but created a link to this thread so that anyone with an answer can help you. If there is a reason for starting a second thread, please let me know.
    Please just ask once and wait for a reply as this wastes moderator's time that is better used trying to answer questions.
    Now to the problem. Searching with Chrome installed works just fine for most people so the problem seems to be local to you. If I have read you correctly, after installing Chrome, the search breaks no matter what browser is used.
    Was that checked on other machines or just yours?
    IGNORE THIS QUESTION - The answer is YES and that was in the post.
    Did you also check that search was broken with the supplied sample projects? I know that works with the three browsers being discussed here?
    Where was the help installed when tested by you both standalone and from the application?
    Questions 2 and 3 are really only related to problems with Chrome. I have not seen anyone report Chrome also breaking the search in the other browsers. There's more to this than meets the eye as Chrome has not caused that problem for anyone else, or at least, no one has reported it.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • "Cannot evaluate parameter 'NewName' because its argument input did not produce any output." error received

    I need to rename a set of files with a subset of the files' original name. I wrote this script:
    dir | rename-item -newname {if ($_.name -match '\d{4,5}\-\d{5}\s\-\s(.+)\s\-\s.+\s\-\s.+'){$name=$matches[1]; -replace '.+', "$name";}}
    This works in that the file and/or directory names are changed, but it also gives me the error:
    Rename-Item : Cannot evaluate parameter 'NewName' because its argument input did not produce any output.
    At C:\...\FileStrip.ps1:1 char:28
    + dir | rename-item -newname {if ($_.name -match '\d{4,5}\-\d{5}\s\-\s(.+)\s\-\s.+ ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidArgument: (Vivek Shyam:PSObject) [Rename-Item], ParameterBindingException
        + FullyQualifiedErrorId : ScriptBlockArgumentNoOutput,Microsoft.PowerShell.Commands.RenameItemCommand
    I'm not sure how to fix this. Any assistance would be appreciated.

    ok, thanks.
    You've avoided the whole 'use the piped data implicitly' thing by the explicit ForEach. I'm ok with that, but I'm still curious how to get the non-ForEach version to not error.
    Anyway, what you provided almost worked. I modified to be this:
    dir -file |
       Where{$_.name -match '\d{4,5}\-\d{5}\s\-\s(.+)\s\-\s.+\s\-\s.+'} |
       ForEach-Object{
            $match=$matches[1]
            $newname=$_.Name -replace '.+', "$match"
            Rename-item $_ $newname
    to get it working properly.
    But it looks like the simplest form is:
    dir -file |
       Where{$_.name -match '\d{4,5}\-\d{5}\s\-\s(.+)\s\-\s.+\s\-\s.+'} |
       ForEach-Object{
            Rename-item $_ $matches[1]

  • Send Seperate Remittance Advices doesn't generate any output

    Hello,
    In the payment process profile in the reporting tab I have given the Format "Separate Remittance Advice" and choosed the option to "Automatically Submit at Payment Completion Point"
    Once the Format Payment Instruction is completed this one is submitted. Format Payment Instruction has the output and " Send Seperate Remittance Advices" doesn't have any output generated.
    Should I have to do any additional setup for the same?
    I'm working on R12.
    Thanks
    GM

    I found the following:
    https://bugs.archlinux.org/task/7021?opened=834&status[0]=
    It's not very clear to me if this is an Arch or Thunar or Exo bug, anyway installing 'perl-uri' works for me.
    Marking as SOLVED

  • Multipath -ll command doesn't give any output

    Hi all,
    I am new to configure storage in multipath. I have configured multipath in a newly installed oracle Linux 6.0 following Linux documentation; however, when I tried to list the multipath using the commands, it doesn’t show any output. I have stop and restart services, reboot the server to no fix. I have also check the LUNs that I can see the storage array's FC target ports from the server as well as the storage admin confirm that they are properly connected. Blew is the output when I used the commands. Please help and let me know if you need more info...
    root@server1 ~]# multipath -ll
    [root@server1 ~]# <-- no output
    [root@server1 ~]# ps -ef |grep multipath
    root 2563 2437 0 16:10 pts/0 00:00:00 grep multipath
    root 20831 1 0 Jan09 ? 00:00:01 /sbin/multipathd
    [root@server1 ~]# multipath -d
    create: mpatha (3600508b10010414d5155594e56360008) undef HP,LOGICAL VOLUME
    size=137G features='0' hwhandler='0' wp=undef
    `-+- policy='round-robin 0' prio=1 status=undef
    `- 0:0:0:0 cciss!c0d0 104:0 undef ready running
    thank you,
    Lou

    Hi All,
    Here is the output that you have requested… thank you for the help
    Lou
    reply to: Dude
    Q: What device names are you expecting to see?
    A: Simmilar to the below output:
    [root@oldServer ~]# multipath -ll
    ocr_vote_1 (36001438005decdd10006e00003b30000) dm-0 HP,HSV450
    size=1.0G features='1 queue_if_no_path' hwhandler='0' wp=rw
    |-+- policy='round-robin 0' prio=50 status=active
    | |- 0:0:0:3 sdc 8:32 active ready running
    | |- 0:0:1:3 sdq 65:0 active ready running
    | |- 1:0:0:3 sdbg 67:160 active ready running
    | `- 1:0:1:3 sdbu 68:128 active ready running
    Reply to: Billy Verreynne
    Here is the output. I didn't post the repetitive output for the 'sd*'s
    [root@server1 ~]# multipath -v3
    Jan 14 10:23:24 | ram0: device node name blacklisted
    Jan 14 10:23:24 | ram1: device node name blacklisted
    Jan 14 10:23:24 | ram2: device node name blacklisted
    Jan 14 10:23:24 | ram3: device node name blacklisted
    Jan 14 10:23:24 | ram4: device node name blacklisted
    Jan 14 10:23:24 | ram5: device node name blacklisted
    Jan 14 10:23:24 | ram6: device node name blacklisted
    Jan 14 10:23:24 | ram7: device node name blacklisted
    Jan 14 10:23:24 | ram8: device node name blacklisted
    Jan 14 10:23:24 | ram9: device node name blacklisted
    Jan 14 10:23:24 | ram10: device node name blacklisted
    Jan 14 10:23:24 | ram11: device node name blacklisted
    Jan 14 10:23:24 | ram12: device node name blacklisted
    Jan 14 10:23:24 | ram13: device node name blacklisted
    Jan 14 10:23:24 | ram14: device node name blacklisted
    Jan 14 10:23:24 | ram15: device node name blacklisted
    Jan 14 10:23:24 | loop0: device node name blacklisted
    Jan 14 10:23:24 | loop1: device node name blacklisted
    Jan 14 10:23:24 | loop2: device node name blacklisted
    Jan 14 10:23:24 | loop3: device node name blacklisted
    Jan 14 10:23:24 | loop4: device node name blacklisted
    Jan 14 10:23:24 | loop5: device node name blacklisted
    Jan 14 10:23:24 | loop6: device node name blacklisted
    Jan 14 10:23:24 | loop7: device node name blacklisted
    Jan 14 10:23:24 | cciss!c0d0: not found in pathvec
    Jan 14 10:23:24 | cciss!c0d0: mask = 0x1f
    Jan 14 10:23:24 | cciss!c0d0: dev_t = 104:0
    Jan 14 10:23:24 | cciss!c0d0: size = 286677120
    Jan 14 10:23:24 | cciss!c0d0: subsystem = cciss
    Jan 14 10:23:24 | cciss!c0d0: h:b:t:l = 0:0:0:0
    Jan 14 10:23:24 | cciss!c0d0: vendor = HP
    Jan 14 10:23:24 | cciss!c0d0: product = LOGICAL VOLUME
    Jan 14 10:23:24 | cciss!c0d0: revision = 1.86
    Jan 14 10:23:24 | cciss!c0d0: get_state
    Jan 14 10:23:24 | loading /lib64/multipath/libchecktur.so checker
    Jan 14 10:23:24 | cciss!c0d0: path checker = tur (controller setting)
    Jan 14 10:23:24 | cciss!c0d0: checker timeout = 300000 ms (internal default)
    Jan 14 10:23:24 | cciss!c0d0: state = 3
    Jan 14 10:23:24 | cciss!c0d0: getuid = /lib/udev/scsi_id whitelisted device=/dev/%n (controller setting)
    Jan 14 10:23:24 | cciss!c0d0: uid = 3600508b10010414d5155594e56360008 (callout)
    Jan 14 10:23:24 | cciss!c0d0: prio = const (controller setting)
    Jan 14 10:23:24 | cciss!c0d0: const prio = 1
    Jan 14 10:23:24 | sda: not found in pathvec
    Jan 14 10:23:24 | sda: mask = 0x1f
    Jan 14 10:23:24 | sda: dev_t = 8:0
    Jan 14 10:23:24 | sda: size = 104857600
    Jan 14 10:23:24 | sda: subsystem = scsi
    Jan 14 10:23:24 | sda: vendor = HP
    Jan 14 10:23:24 | sda: product = HSV450
    Jan 14 10:23:24 | sda: rev = 0953
    Jan 14 10:23:24 | sda: h:b:t:l = 0:0:0:1
    Jan 14 10:23:24 | sda: tgt_node_name = 0x50001fe1501ec830
    Jan 14 10:23:24 | sda: serial = PAFURC19SYZ0AB
    Jan 14 10:23:24 | sda: get_state
    Jan 14 10:23:24 | sda: path checker = tur (controller setting)
    Jan 14 10:23:24 | sda: checker timeout = 30000 ms (sysfs setting)
    Jan 14 10:23:24 | sda: state = running
    Jan 14 10:23:24 | sda: state = 3
    Jan 14 10:23:24 | sda: getuid = /sbin/scsi_id -g -u -s /block/%n (controller setting)
    Jan 14 10:23:24 | /sbin/scsi_id exitted with 1
    Jan 14 10:23:24 | error calling out /sbin/scsi_id -g -u -s /block/sda
    Jan 14 10:23:24 | sda: state = running
    Jan 14 10:23:24 | /sbin/scsi_id exitted with 1
    Jan 14 10:23:24 | error calling out /sbin/scsi_id -g -u -s /block/sda
    Jan 14 10:23:24 | loading /lib64/multipath/libprioalua.so prioritizer
    Jan 14 10:23:24 | sda: prio = alua (controller setting)
    Jan 14 10:23:24 | reported target port group is 2
    Jan 14 10:23:24 | aas = 01 [active/non-optimized]
    Jan 14 10:23:24 | sda: alua prio = 10
    Jan 14 10:23:24 | sdb: not found in pathvec
    Jan 14 10:23:24 | sdb: mask = 0x1f
    Jan 14 10:23:24 | sdb: dev_t = 8:16
    Jan 14 10:23:24 | sdb: size = 209715200
    Jan 14 10:23:24 | sdb: subsystem = scsi
    Jan 14 10:23:24 | sdb: vendor = HP
    Jan 14 10:23:26 | sdav: not found in pathvec
    Jan 14 10:23:26 | sdav: mask = 0x1f
    Jan 14 10:23:26 | sdav: dev_t = 66:240
    Jan 14 10:23:26 | sdav: size = 2097152
    Jan 14 10:23:26 | sdav: subsystem = scsi
    Jan 14 10:23:26 | sdav: vendor = HP
    Jan 14 10:23:26 | sdav: product = HSV450
    Jan 14 10:23:26 | sdav: rev = 0953
    Jan 14 10:23:26 | sdav: h:b:t:l = 1:0:3:6
    Jan 14 10:23:26 | sdav: tgt_node_name = 0x50001fe1501ec830
    Jan 14 10:23:26 | sdav: serial = PAFURC19SYZ0AB
    Jan 14 10:23:26 | sdav: get_state
    Jan 14 10:23:26 | sdav: path checker = tur (controller setting)
    Jan 14 10:23:26 | sdav: checker timeout = 30000 ms (sysfs setting)
    Jan 14 10:23:26 | sdav: state = running
    Jan 14 10:23:26 | sdav: state = 3
    Jan 14 10:23:26 | sdav: getuid = /sbin/scsi_id -g -u -s /block/%n (controller setting)
    Jan 14 10:23:26 | /sbin/scsi_id exitted with 1
    Jan 14 10:23:26 | error calling out /sbin/scsi_id -g -u -s /block/sdav
    Jan 14 10:23:26 | sdav: state = running
    Jan 14 10:23:26 | /sbin/scsi_id exitted with 1
    Jan 14 10:23:26 | error calling out /sbin/scsi_id -g -u -s /block/sdav
    Jan 14 10:23:26 | sdav: prio = alua (controller setting)
    Jan 14 10:23:26 | reported target port group is 2
    Jan 14 10:23:26 | aas = 01 [active/non-optimized]
    Jan 14 10:23:26 | sdav: alua prio = 10
    ===== paths list =====
    uuid hcil dev dev_t pri dm_st chk_st v
    3600508b10010414d5155594e56360008 0:0:0:0 cciss!c0d0 104:0 1 undef ready H
    0:0:0:1 sda 8:0 10 undef ready H
    0:0:0:2 sdb 8:16 50 undef ready H
    0:0:0:3 sdc 8:32 10 undef ready H
    0:0:0:4 sdd 8:48 10 undef ready H
    0:0:0:5 sde 8:64 50 undef ready H
    0:0:0:6 sdf 8:80 10 undef ready H
    Jan 14 10:23:26 | Found matching wwid [3600508b10010414d5155594e56360008] in bindings file. Setting alias to mpatha
    Jan 14 10:23:26 | cciss!c0d0: ownership set to mpatha
    Jan 14 10:23:26 | cciss!c0d0: not found in pathvec
    Jan 14 10:23:26 | cciss!c0d0: mask = 0xc
    Jan 14 10:23:26 | cciss!c0d0: get_state
    Jan 14 10:23:26 | cciss!c0d0: state = 3
    Jan 14 10:23:26 | cciss!c0d0: const prio = 1
    Jan 14 10:23:26 | mpatha: pgfailback = -2 (config file default)
    Jan 14 10:23:26 | mpatha: pgpolicy = multibus (controller setting)
    Jan 14 10:23:26 | mpatha: selector = round-robin 0 (controller setting)
    Jan 14 10:23:26 | mpatha: features = 0 (controller setting)
    Jan 14 10:23:26 | mpatha: hwhandler = 0 (controller setting)
    Jan 14 10:23:26 | mpatha: rr_weight = 1 (controller setting)
    Jan 14 10:23:26 | mpatha: minio = 1 rq (controller setting)
    Jan 14 10:23:26 | mpatha: no_path_retry = 12 (controller setting)
    Jan 14 10:23:26 | pg_timeout = NONE (internal default)
    Jan 14 10:23:26 | mpatha: set ACT_CREATE (map does not exist)
    Jan 14 10:23:26 | mpatha: domap (0) failure for create/reload map
    Jan 14 10:23:26 | mpatha: ignoring map
    reply for: Theanswriz42:
    Here is part of the output from the scipt...
    sdaa 36001438005decdd10006e000051c0000
    sdab 36001438005decdd10006e000052c0000
    sdz 36001438005decdd10006e00005200000

  • HP probook 6450b running windows 8 display port to HDMI doesn't give any output

    Hi,
    My laptop HP probook 6450b running windows 8, display port to HDMI doesn't give any output. I gave windows+P and tried selecting duplicate/extend but no output. I even tried to change the DP to HDMI converter and the HDMI cable as well but no luck. Any help would be much appreciated.

    Dear Customer,
    Welcome and Thank you for posting your query on HP Support Forum
    It looks like you are using the Display Port on the Notebook get HDMI Ouput for better Audio and Video
    We will surely assist you with this issue
    Firstly I would like to keep you informed that the Display Port supports resolutions up to 2560 x 1600, 30-bit color depth at 60 Hz, and full HD (1920 x 1080) monitors, 24-bit color depth at 120 Hz
    NOTE: Resolutions are dependent upon monitor capability, and resolution and color depth settings.
    Please use an HP DisplayPort to HDMI Adapter for this setup. Please make sure that you are using HP Cable/Converter with the Product Number BP937AA.
    1. Please let me know if you have additional graphics card installed on your Notebook
    2. You can try download and installing the latest BIOS Update for your Notebook from the HP Website
    3. Make sure VGA Port on the Notebook is not in use when you are testing the Display Port
    Hope this helps, for any further queries reply to the post and feel free to join us again
     **Click the KUDOS star on left to say Thanks**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Thank You,
    K N R K
    Although I am an HP employee, I am speaking for myself and not for HP

  • Adding an item to Po doesn't trigger any output

    Hi gurus,
    I need some help from you as we have an issue on changes on PO don't trigger any output.
    I explain the process :
    - user creates an SHC and then a PO is generated in approval status.
    - PO is released and then a mail is sent to vendor (there is an entry in tx SPPFP). That works fine.
    - a new item is added to PO and delivery date is changed. So it must be approved again by someone.
    - PO is released but no mail is sent to vendor. No entry in transaction SPPFP.
    I read a lot of messages on this forum about problems on triggering purchase orders. As I've seen, the usual problem is to avoid outputs when po is changed. My issue is the opposite.
    I checked table BBPD_PO_METAOUT and there is an entry for BBP_PDIGP-DELIVED_DATE is output relevant.
    We have condition-dependent document output customizing:
    - Automatically scheduled
    - Max. 1 Action for Each Action Definition
    - Time of processing : when saving document
    This is a ECS scenario, SRM server 550, support package SAPKIBKT08.
    How can I fix this problem?  I guest standard behaviour must be to trigger output when changing purchase order.
    Thanks for any help.
    Regards.
    Teresa Martinez
    Edited by: Teresa Martinez Alonso on Aug 5, 2008 5:14 PM

    Hello
    Please check the follow
    1)Please follow the instruction in the attached note 564826.
    2)ANY change in the PO after it has been sent to vendor will generate
    an automatic output.
    You might want to either:
    - Change your customizing settings so the PO output is not automatically
      sent to vendor.
    - Or apply the following note so the system does not generarte an output
      when a PO is changed:
    820344 Preventing output of changes to purchase orders
    Please also try the settings below
    Processing Time:               Processing When Saving document
    Processing Time Not Permitted: Immediate Processing
    "Partner Determination for Action" Frame
    Determination Technique :      Simple Determination of Procurement Docu
                                   ment (PO).
    Regards
    Summer

  • Apt printwriter doesn't produce compiler output

    I'm invoking apt within an application. If the compile phase fails I cannot see the output from the printwriter submitted for that purpose.
    apt is invoked as:
              ByteArrayOutputStream baos= new ByteArrayOutputStream();
              PrintWriter pw = new PrintWriter(baos);
              CVAnnotationProcessor lc = new CVAnnotationProcessor();
              int aptReturnCode = com.sun.tools.apt.Main.process(lc, pw, files);Any thoughts?

    Hi Ingo,
    Thanks for your clarification. But why filters are not applicable if we have only master data objects in the result objects. Why webi doesn't show only shipped project numbers?
    Regards,
    Preetham..

  • Mapping executes fine but does not produce any output

    I created a mapping to copy values from one table to another for a particular condition. I have data for thsi particular condition in the input table.
    The Mapping validated fine and was deployed successfully.
    The OWB Mapping is run from Unix.
    The mapping executes fine without any issues but it does practically nothing. The target table has no data.
    Need any more details on this? Please help.

    Generate the code at Mapping Editor and execute it manually. Probably you have to modify the where clause.

  • Money converter doesn't show any output...

    Hi, I have the following source :
    package euros;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class converter extends Applet
    double beginWaarde, franceuro, guldeneuro, uitkomst;
         Button knop1, knop2, knop3, knop4, knop5, knop6;
         TextField invoer, uitvoer;
         public void init()
         {   setLayout(null);
         knop1 = new Button( "gulden => euro" );
         knop2 = new Button( "franc => euro" );
    knop3 = new Button( "euro => francs" );
    knop4 = new Button( "franc => gulden" );
    knop5 = new Button( "gulden => franc" );
    knop6 = new Button( "euro => gulden" );
    knop1.setBounds(0,25,100,25);
    knop2.setBounds(100,25,100,25);
    knop3.setBounds(200,25,100,25);
    knop4.setBounds(300,25,100,25);
    knop5.setBounds(400,25,100,25);
    knop6.setBounds(500,25,100,25);
    invoer = new TextField( "0" );
    uitvoer = new TextField();
    String invoer1 = invoer.getText();
    Double menno = Double.valueOf( invoer1 );
    beginWaarde = menno.doubleValue();
    invoer.setBounds(50,100,100,25);
         uitvoer.setBounds(150,100,300,25);
    add( knop1 );
              add( knop2 );
    add( knop3 );
    add( knop4 );
    add( knop5 );
    add( knop6 );
    add(uitvoer);
    add(invoer);
         public boolean action( Event e, Object o )
              if( e.target == knop1 )
              {       uitkomst = beginWaarde/2.20371;
    uitvoer.setText( "Het aantal Euro's is : " + uitkomst );
                   repaint();
    return true;
              if( e.target == knop2 )
    uitkomst = beginWaarde/6.3;
    uitvoer.setText( "Het aantal Euro's is : " + uitkomst );
    repaint();
                   return true;
              if( e.target == knop3 )
    uitkomst = beginWaarde*6.3;
                   uitvoer.setText( "Het aantal Francs is : " + uitkomst );
    repaint();
                   return true;
    if( e.target == knop4 )
    uitkomst = beginWaarde/2.86;
                   uitvoer.setText( "Het aantal Guldens is : " + uitkomst );
    repaint();
                   return true;
    if( e.target == knop5 )
    uitkomst = beginWaarde/2.86;
                   uitvoer.setText( "Het aantal Francs is : " + uitkomst );
    repaint();
                   return true;
    if( e.target == knop6 )
    uitkomst = beginWaarde*2.2037;
                   uitvoer.setText( "Het aantal Guldens is : " + uitkomst );
    repaint();
                   return true;
              return false;
    and don't get any awnsers in the textfield called 'uitvoer'
    It just shows 0.0 all the time instead of one of the calqulations specified...
    I can't find out what's wrong with it.
    Can someone help me ??
    Thanks in advance,
    Menno.

    your code can be changed as below.
    package euros;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class converter extends Applet
         double beginWaarde, franceuro, guldeneuro, uitkomst;
         Button knop1, knop2, knop3, knop4, knop5, knop6;
         TextField invoer, uitvoer;
         public void init()
              setLayout(null);
              knop1 = new Button( "gulden => euro" );
              knop2 = new Button( "franc => euro" );
              knop3 = new Button( "euro => francs" );
              knop4 = new Button( "franc => gulden" );
              knop5 = new Button( "gulden => franc" );
              knop6 = new Button( "euro => gulden" );
              knop1.setBounds(0,25,100,25);
              knop2.setBounds(100,25,100,25);
              knop3.setBounds(200,25,100,25);
              knop4.setBounds(300,25,100,25);
              knop5.setBounds(400,25,100,25);
              knop6.setBounds(500,25,100,25);
              invoer = new TextField( "0" );
              uitvoer = new TextField();
    //          String invoer1 = invoer.getText();
    //          Double menno = Double.valueOf( invoer1 );
    //          beginWaarde = menno.doubleValue();
    // This part should be moved to the method action(...)
              invoer.setBounds(50,100,100,25);
              uitvoer.setBounds(150,100,300,25);
              add( knop1 );
              add( knop2 );
              add( knop3 );
              add( knop4 );
              add( knop5 );
              add( knop6 );
              add(uitvoer);
              add(invoer);
         public boolean action( Event e, Object o )
              if( e.target == knop1 )
    // getting the value in invoer
                   String invoer1 = invoer.getText();
                   Double menno = Double.valueOf( invoer1 );
                   beginWaarde = menno.doubleValue();
                   uitkomst = beginWaarde/2.20371;
                   uitvoer.setText( "Het aantal Euro's is : " + uitkomst );
                   repaint();
                   return true;
    }

  • SAP 6.40 patch 17 - Script Recorder Doesn't produce any VBScript

    Hi!
    I'm REALLY new into this stuff, and it can be I'm asking silly question but.
    When I try to record use case thru Script Recorder on my SAP Logon 6.40 patch level 17 no script is generated in C:\Documents and Settings\<user>\SapWorkDir.
    I've previousley managed to record the same thing on SAP Logon 6.20 rel 15.
    the trace file looks as follows:
    (Error)(12.03.07 18:03:24.127): MyThrowOleDispatchException: 633
    (Error)                       : RecordScript failed with code 633, Error description not available
    (Error)(12.03.07 18:03:26.911): MyThrowOleDispatchException: 633
    (Error)                       : MyThrowOleDispatchException: 633
    (Error)                       : MyThrowOleDispatchException: 633
    (Error)(12.03.07 18:03:26.921): MyThrowOleDispatchException: 633
    (Error)(12.03.07 18:03:33.333): MyThrowOleDispatchException: 633
    (Error)(12.03.07 18:03:41.346): MyThrowOleDispatchException: 633
    (Error)                       : MyThrowOleDispatchException: 633
    (Error)                       : MyThrowOleDispatchException: 633
    (Error)                       : MyThrowOleDispatchException: 633
    (Error)(12.03.07 18:03:42.368): MyThrowOleDispatchException: 633
    (Error)(12.03.07 18:03:45.403): MyThrowOleDispatchException: 633
    (Error)                       : StopRecording failed with code 633, Error description not available
    I'm pretty sure this is minor issue and that my parameter perhaps are set wrong.
    System WinXP (SP2)
    Any ideas??

    Hi Jude,
    thanks for the reply. We are using SAP gui 7.30 Patch 10 . It does not create the script.vbs file when we perform the recording
    Please find the below error trace we are getting:
    Scriptiog(Error): MyThrowOleDispatchException: 633
    Scripting(Error): RecordScript failed with code 633, Error description not available
    Regards,
    Sharyu

  • I cannot seem to download the Firefox browser because the download screen doesn't produce any window for me to click on to run or save.

    When attempting to download the Firefox browser, I click on the big green button to download, then I am taken to the next page which says it should begin in a few seconds. Nothing happens. I click where it says to click if nothing happens and nothing happens. I tried this using both Google Chrome and IE. I have an internet connection, but cannot get it to work. HELP!!! And yes, I did turn off my pop-up blocker just to be sure.

    http://www.apple.com/support/mac/app-store/contact.html?form=account

  • Label report doesn't produce output

    Hi all,
    I have a problem with formular and label report.Exactly when i run label report in the browser using desformat(htmlcss or pdf), it does not produce any output.But in report builder it produces an output.I don't think that it's a problem of parameter because i use the same parameter in report builder and browser.
    what's the matter, thanks!
    TYAG

    now try it
    you should get
    D:\Temp\telnet' is not recognized as an internal or external command,
    operable program or batch file.
    as an output
    import java.io.*;
    public class Main{
      public static void main(String[] args)
        String[] command = new String[3];
        command[0] = "cmd.exe";
        command[1] = "/C";
        command[2] = "D:\\Temp\\telnet\telnet.exe";
        try
          Process p = Runtime.getRuntime().exec(command);
          BufferedReader stdin = new BufferedReader(new InputStreamReader
                                                   (p.getInputStream()));
          BufferedReader stderr = new BufferedReader(new InputStreamReader
                                                   (p.getErrorStream()));
          PrintStream stdout = new PrintStream(p.getOutputStream());
          String line = "";
          while((line = stderr.readLine()) != null)
            System.out.println(line);
          System.out.println();
          while((line = stdin.readLine()) != null)
            System.out.println(line);
          p.destroy();
        catch(Exception ex)
          System.out.println("Exception: " + ex.getMessage());
          System.exit(-1);
    }

  • Ize any Output from my Avid Minibox.  Worked fine before the upgrade...anyone?  Thank you!

    I use Pro Tools 10 on my iMac and after installing Mavericks it doesn't recognize any Output from my Avid Minibox to play audio through my monitors.  I used to be able to play iTunes or work I did on Pro Tools.  Worked fine before the upgrade...anyone? Also, my clock on my desktop before logging in keeps loosing time...weird.  Thank you!

    Wyodor,
    Thank you for taking a gander. I mistyped: www.rosiejohnsonphotography.com. Must have not had enough coffee at that point....
    So I checked my website from our other computer (not the one I use to update it) and all images loaded and looked fine. I then tried it from this computer (the only one used to update the website) and no pictures! Why is this?! I think it has something to do with this "comment widgets" statement at the bottom of each web page and the RSS box at the end of the web address bar. Any ideas how to fix this and get it back to where it was working would be appreciated!
    Thank you.

Maybe you are looking for

  • Airport Extreme, Time Capsule and N and G

    Hi, A quick background. I can't have wires, other than from my iMac to my Airport. So I use wireless. I like the N speed from my mac to my fileserver and even though it is slow compared to ethernet a chronosync job is just fine over night. The proble

  • Need help in installing the SAP Jco

    Hi All, I'm installing HP Change Impact analysis on Quality center and bring SAP in Sync later.One of the installtion step isto install the SAP JCo(Java connector ).I have installed the SAP Jco and on starting the CIT Server..I get a exception messsa

  • I can't read some pdf documents on my computer

    I can't read some pdf documents on my computer with the Adobe Reader X programme. Sometimes i can read old documents, but in the last months sometimes is possible and sometimes it's impossible. My OS is a windows 7. I just disinstalled and reinstalle

  • Iweb not showing 'Gallery pages' on new Safari 5

    I just updated my Safari on my imac to the new 5 version, and suddenly when I view my iweb sites... all pages are ok apart from the gallery pages which are blank! No gallery images show at all.... Anyone have any idea..i went to the mac store and it

  • 127.0.0.1 Connection refused

    For some reason, I am unable to send or receive messages. The senders and receivers get no error messages, but the messages get stuck in the mail queue with the error "delivery temporarily suspended: connect to 127.0.0.1[127.0.0.1]: Connection refuse