This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 129491 - CASA display does not scale for larger XSLT service units
Summary: CASA display does not scale for larger XSLT service units
Status: VERIFIED FIXED
Alias: None
Product: soa
Classification: Unclassified
Component: XSLT (show other bugs)
Version: 6.x
Hardware: All All
: P2 blocker (vote)
Assignee: Kirill Sorokin
URL:
Keywords:
Depends on:
Blocks: 124230
  Show dependency tree
 
Reported: 2008-03-07 01:12 UTC by Jun Qian
Modified: 2008-10-23 23:59 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
XSLT project used for verification (27.67 KB, application/x-compressed)
2008-10-23 23:59 UTC, rpoon
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jun Qian 2008-03-07 01:12:19 UTC
See umbrella ticket 124230.
Comment 1 Jun Qian 2008-03-25 19:48:58 UTC
Change the priority to P2 to match the umbrella ticket.
Comment 2 Kirill Sorokin 2008-03-27 15:41:36 UTC
I've added support for jbi.xml extensions to XML build process.

http://hg.netbeans.org/main/rev/740bdbf8db08
Comment 3 rpoon 2008-10-23 23:58:42 UTC
Verified with build: \\thumper\50builds\gfesb\v2\nightly\20081021-0703

Using an XSLT project, once built, inspected the resulting jbi.xml file, and verified with the proper 'display-
name', 'process-name' and 'file-path' as defined in the umbrella ticket 124230.

following is the resulting jbi.xml file from the attached XSDL project:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<jbi version="1.0"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns="http://java.sun.com/xml/ns/jbi"
        xsi:schemaLocation="http://java.sun.com/xml/ns/jbi jbi.xsd"
        xmlns:ns0="http://www.sun.com/jbi/descriptor/service-unit"
        xmlns:ns1="http://sun.com/processDescriptor/employeeXslt"
        xmlns:ns2="http://j2ee.netbeans.org/wsdl/CandidateEvaluation">
    <services binding-component="false">
        <provides interface-name="ns2:CandidateEvaluationPortType" service-name="ns1:xsltse" endpoint-
name="EvaluatorService">
            <ns0:display-name>CandidateEvaluationPortType</ns0:display-name>
            <ns0:process-name>CandidateEvaluationPortType</ns0:process-name>
            <ns0:file-path>EvalCandidate.xsl;null;InterviewCandidate.xsl;null;null;null</ns0:file-path>
        </provides>
        <consumes interface-name="ns2:CandidateEvaluationPortType" service-name="ns1:xsltse" endpoint-name="Invoke1">
            <ns0:display-name></ns0:display-name>
            <ns0:process-name></ns0:process-name>
            <ns0:file-path></ns0:file-path>
        </consumes>
        <consumes interface-name="ns2:CandidateEvaluationPortType" service-name="ns1:xsltse" endpoint-name="Invoke2">
            <ns0:display-name></ns0:display-name>
            <ns0:process-name></ns0:process-name>
            <ns0:file-path></ns0:file-path>
        </consumes>
    </services>
 </jbi>

(also see attached project)
Comment 4 rpoon 2008-10-23 23:59:26 UTC
Created attachment 72567 [details]
XSLT project used for verification