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 94834 - Connections tag is not getting created in the jbi.xml
Summary: Connections tag is not getting created in the jbi.xml
Status: CLOSED WORKSFORME
Alias: None
Product: soa
Classification: Unclassified
Component: XSLT (show other bugs)
Version: 5.x
Hardware: All Windows XP
: P1 blocker (vote)
Assignee: Alexey Yarmolenko
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-02-07 12:39 UTC by nrsunil
Modified: 2007-02-14 14:10 UTC (History)
3 users (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Service Assembly (15.97 KB, application/octet-stream)
2007-02-07 12:40 UTC, nrsunil
Details
Composite Applications (51.01 KB, application/octet-stream)
2007-02-07 12:41 UTC, nrsunil
Details

Note You need to log in before you can comment on or make changes to this bug.
Description nrsunil 2007-02-07 12:39:28 UTC
Steps to Reproduce :
1. Created the XSLT and Composite Application project.
2. Clean and build the project.
3. Deploy the project and later the start the Service Assembly.
4. Observe that connections tags are not getting created in the jbi.xml.

Attached the projects for your reference.
Also, Below is the appserver details and Build details.
App Server details:

  App Server version           = Sun Java System Application Server 9.1 (build b
34)
  App Server build date        = Sun Jan 28 23:48:48 GMT+05:30 2007

JBI details:
________________________________________________________________________________
_______

Running at 07 February 2007 05:48:53 PM on Windows XP 5.1 [x86] using Java 1.5.0
_09-b03 from c:\Progra~1\Java\jdk1.5.0_09\jre

  app server type              = GLASSFISH (sub-type = CLUSTER version = 91)
  app server domains           = 1 (instances = 0 cluster = )
  java.io.tmpdir               = C:\DOCUME~1\rn162588\LOCALS~1\Temp\
  jbi port                     = 17888 (secure = true)
  installed product build      = 070206_1 (release = unknown)
  installed product variant    = Kenai
  installed product kit type   = image


JBI build details:

  JBI Framework     build date = Tue Feb 06 11:17:10 GMT+05:30 2007 [source: d:/
space/gf91/jbi/lib/jbi_framework.jar]
  HTTP SOAP Binding build date = Mon Feb 05 10:28:42 GMT+05:30 2007 [source: d:/
space/gf91/jbi/components/com.sun.httpsoapbc-1.0-2/httpsoapbc.jar]
  BPEL Engine       build date = Mon Feb 05 10:29:36 GMT+05:30 2007 [source: d:/
space/gf91/addons/jbi-components/bpelserviceengine.jar]


NetBeans build details:

  Netbeans IDE      build      = 070206
  Netbeans IDE      version    = 200702050600                 [source: d:/space/
netbeans/5.5.1/build_info]
  Netbeans IDE      build date = Mon Feb 05 08:17:42 GMT+05:30 2007 [source: d:/
space/netbeans/5.5.1/platform6/core/core.jar]
  CAPS Modules      build date = Tue Feb 06 00:47:10 GMT+05:30 2007 [source: d:/
space/netbeans/5.5.1/soa1/ant/nblib/org-netbeans-modules-compapp-projects-jbi.ja
r]
Comment 1 nrsunil 2007-02-07 12:40:42 UTC
Created attachment 38167 [details]
Service Assembly
Comment 2 nrsunil 2007-02-07 12:41:13 UTC
Created attachment 38168 [details]
Composite Applications
Comment 3 Petr Jiricka 2007-02-13 14:05:46 UTC
Not sure why this was reassigned to j2eeserver, I don't see any connection to
j2eeserver. Hopefully enterprise is the right category.

Comment 4 Jun Qian 2007-02-13 20:18:43 UTC
The connection is not created in CompApp because the XSLT JBI module, in its
xsltmap.xml file, specifies a different portType namespace from the one defined
in WSDL.

The following is a xsltmap.xml with corrected namespace. With this file, the
connection can be created properly.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xsltmap>
    <requestReplyService>
        <!-- WRONG NAMESPACE FOR PORTTYPE, PARTERLINK AND OPERATION
        <input partnerLink="{http://sun.com/XsltRRTest}XsltRRPartner"
               roleName="XsltRRPortTypeRole"
               portType="{http://sun.com/XsltRRTest}XsltRRPortType"
               operation="XsltRROperation"
               messageType="{http://sun.com/XsltRRTest}XsltRROperationReply"
               file="Emp.xsl" /> 
        -->
        
        <input partnerLink="{http://j2ee.netbeans.org/wsdl/XsltRR}XsltRRPartner"
               roleName="XsltRRPortTypeRole"
               portType="{http://j2ee.netbeans.org/wsdl/XsltRR}XsltRRPortType"
               operation="XsltRROperation"
              
messageType="{http://j2ee.netbeans.org/wsdl/XsltRR}XsltRROperationReply"
               file="Emp.xsl" />
    </requestReplyService> 
</xsltmap>
Comment 5 Sergey Lunegov 2007-02-13 20:26:32 UTC
Need to investigate on XSLT side
Comment 6 Sergey Lunegov 2007-02-13 20:48:21 UTC
Sunil,

please specify the step how did you create the XSLT project. Was it created in
IDE? Looking at the IDE build number it's really old. Please try with the last
build.
Comment 7 nrsunil 2007-02-14 14:09:00 UTC
Verified in the latest build 020713_26 and it work's fine for me.
Comment 8 nrsunil 2007-02-14 14:10:29 UTC
Hence I am closing the bug.