Difference in generated WSDL between Weblogic 10.3.3 and JBoss 5.1

Hi all,
We have developed an web service based application using JAX-WS with WS-Security enabled in it. We followed below link for the implementation of WS-Security,
[http://www.ibm.com/developerworks/java/library/j-jws10/index.html]
And we have deployed the application in JBoss 5.1, tested it using SOAP UI passing the request to the Core application. We got the expected result.
When I try to deploy the application in weblogic 10.3.3, it is getting deployed and we are unable to pass the user credentials to it and hence the core application rejects the request since the username/password is not supplied.
I want to know how the web service application with WS-Security enabled can be deploy in Weblogic 10.3.3? Any documentation would be a great help.
And also we found that the creation of WSDL from JBoss 5.1 & Weblogic differ. We have used a WS-policy also into this, the WSDL generated by JBoss contains the information of the WS-policy we added.
But the generated WSDL from Weblogic 10.3.3 is missing those information!
Any help would be greatly appreciated. Thanks in advance.
Only difference I see between the two generated WSDL is that,
For Weblogic,  RI's version is Oracle JAX-WS 2.1.5.
For JBoss 5.1, it is, RI's version is JAX-WS RI 2.2.3-b01-
Will this have an impact on the generated WSDL?
Generated WSDL from JBoss:
<Changed the company name/product name>
<?xml version="1.0" encoding="UTF-8" ?>
- <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.3-b01-.
-->
- <!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.2.3-b01-.
-->
- <definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://company.com/WARName" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://company.com/WARName" name="ProductWebServicesImplService">
- <wsp1_2:Policy xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702" wsu:Id="UsernameToken">
- <sp:SupportingTokens>
- <wsp1_2:Policy>
<sp:UsernameToken sp:IncludeToken=".../IncludeToken/AlwaysToRecipient" />
</wsp1_2:Policy>
</sp:SupportingTokens>
</wsp1_2:Policy>
- <types>
- <xsd:schema>
<xsd:import namespace="http://company.com/WARName" schemaLocation="http://localhost:8080/WARName/services?xsd=1" />
</xsd:schema>
- <xsd:schema>
<xsd:import namespace="http://jaxb.dev.java.net/array" schemaLocation="http://localhost:8080/WARName/services?xsd=2" />
</xsd:schema>
</types>
- <message name="CreateIndividualCustomer">
<part name="parameters" element="tns:CreateIndividualCustomer" />
</message>
- <message name="CreateIndividualCustomerResponse">
<part name="parameters" element="tns:CreateIndividualCustomerResponse" />
</message>
- <message name="CreateIndividualCustomer_Validate">
<part name="parameters" element="tns:CreateIndividualCustomer_Validate" />
</message>
- <message name="CreateIndividualCustomer_ValidateResponse">
<part name="parameters" element="tns:CreateIndividualCustomer_ValidateResponse" />
</message>
- <portType name="ProductWebServicesImpl">
- <operation name="CreateIndividualCustomer">
<input wsam:Action="http://company.com/WARName/ProductWebServicesImpl/CreateIndividualCustomerRequest" message="tns:CreateIndividualCustomer" />
<output wsam:Action="http://company.com/WARName/ProductWebServicesImpl/CreateIndividualCustomerResponse" message="tns:CreateIndividualCustomerResponse" />
</operation>
- <operation name="CreateIndividualCustomer_Validate">
<input wsam:Action="http://company.com/WARName/ProductWebServicesImpl/CreateIndividualCustomer_ValidateRequest" message="tns:CreateIndividualCustomer_Validate" />
<output wsam:Action="http://company.com/WARName/ProductWebServicesImpl/CreateIndividualCustomer_ValidateResponse" message="tns:CreateIndividualCustomer_ValidateResponse" />
</operation>
</portType>
- <binding name="ProductWebServicesImplPortBinding" type="tns:ProductWebServicesImpl">
<wsp1_2:PolicyReference URI="#UsernameToken" />
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
- <operation name="CreateIndividualCustomer">
<soap:operation soapAction="" />
- <input>
<soap:body use="literal" />
</input>
- <output>
<soap:body use="literal" />
</output>
</operation>
- <operation name="CreateIndividualCustomer_Validate">
<soap:operation soapAction="" />
- <input>
<soap:body use="literal" />
</input>
- <output>
<soap:body use="literal" />
</output>
</operation>
</binding>
- <service name="ProductWebServicesImplService">
- <port name="ProductWebServicesImplPort" binding="tns:ProductWebServicesImplPortBinding">
<soap:address location="http://localhost:8080/WARName/services" />
</port>
</service>
</definitions>
WSDL generated by Weblogic
<?xml version="1.0" encoding="UTF-8" ?>
- <!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.5.
-->
- <!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.5.
-->
- <definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://company.com/WARName" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://company.com/WARName" name="ProductWebServicesImplService">
- <types>
- <xsd:schema>
<xsd:import namespace="http://company.com/WARName" schemaLocation="http://machineIP:6601/WARNameSO/services?xsd=1" />
</xsd:schema>
- <xsd:schema>
<xsd:import namespace="http://jaxb.dev.java.net/array" schemaLocation="http://machineIP:6601/WARNameSO/services?xsd=2" />
</xsd:schema>
</types>
- <message name="CreateIndividualCustomer">
<part name="parameters" element="tns:CreateIndividualCustomer" />
</message>
- <message name="CreateIndividualCustomerResponse">
<part name="parameters" element="tns:CreateIndividualCustomerResponse" />
</message>
- <message name="CreateIndividualCustomer_Validate">
<part name="parameters" element="tns:CreateIndividualCustomer_Validate" />
</message>
- <message name="CreateIndividualCustomer_ValidateResponse">
<part name="parameters" element="tns:CreateIndividualCustomer_ValidateResponse" />
</message>
- <portType name="ProductWebServicesImpl">
- <operation name="CreateIndividualCustomer">
<input message="tns:CreateIndividualCustomer" />
<output message="tns:CreateIndividualCustomerResponse" />
</operation>
- <operation name="CreateIndividualCustomer_Validate">
<input message="tns:CreateIndividualCustomer_Validate" />
<output message="tns:CreateIndividualCustomer_ValidateResponse" />
</operation>
</portType>
- <binding name="ProductWebServicesImplPortBinding" type="tns:ProductWebServicesImpl">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
- <operation name="CreateIndividualCustomer">
<soap:operation soapAction="" />
- <input>
<soap:body use="literal" />
</input>
- <output>
<soap:body use="literal" />
</output>
</operation>
- <operation name="CreateIndividualCustomer_Validate">
<soap:operation soapAction="" />
- <input>
<soap:body use="literal" />
</input>
- <output>
<soap:body use="literal" />
</output>
</operation>
</binding>
- <service name="ProductWebServicesImplService">
- <port name="ProductWebServicesImplPort" binding="tns:ProductWebServicesImplPortBinding">
<soap:address location="http://machineIP:6601/WARNameSO/services" />
</port>
</service>
</definitions>
Edited by: 943018 on Jun 26, 2012 9:44 PM

Sadly you're correct about the previous developers not fully using the skinning framework. Some of it has been done correctly using a skin - such as the icon shown when required=true has been set (.AFRequiredIconStyle). Unfortunately the label width is being set from our custom CSS file, rather than from a skin. It looks like I'll have to remove our custom CSS and try to recreate the appearance using the skin from scratch.

Similar Messages

  • Difference between WebLogic 6.1 Domain and WebLogic 7.0 Domain

    What is most reliable way of differentiating WebLogic 6.1 Domain with WebLogic
    7.0 domain? WebLogic 6.1 Domain meaning interrelated set of WebLogic 6.1 servers.
    A server in a domain listed within config.xml when started with WebLogic 6.1 binaries
    become WebLogic 6.1 server and when started with WebLogic 7.0 binaries become
    WebLogic 7.0 server.
    Is there any thing in config.xml file that differentiate the domain affront?

    I think in ur classpath /weblogic classpath ,u have the jar file of weblogic5.1. make sure to remove all classpath setting of weblogic5.1

  • What is the difference in the features between Cisco prime 1.2 and Cisco prime 1.4 ?

    Dears,
    Please i need to know what is the difference in the features between Cisco prime infrastructure 1.2 and Cisco prime 1.4.
    Already i see the release note for each one but the release indicate only the New feature for every one. so i need to know the difference between them not new features.
    Wait your kind feedback plz
    Regards,

    Hi,
    New Features and Enhancements
    The following topics describe new features and enhancements in Cisco Prime Infrastructure 1.4.
    Management Support for WLC Release 7.5
    Support for 802.11ac Module
    Support for Cisco AP 700
    Policy Classification Engine
    FlexConnect Audit Support
    Autonomous AP Support
    Client Stateful Switchover
    Cable Modem Monitoring
    Support for Secure File Transfer Protocol
    and please go through the link and check the data sheet for further clearance.
    http://www.cisco.com/c/en/us/products/collateral/cloud-systems-management/prime-infrastructure/datasheet-c78-729879.html

  • Weblogic.jar 9.2 and jboss

    why when i put weblogic.jar in the jboss classpath or in my .war classpath = web-inf/lib all of its classes are class not found exception
    is there a problem with this jar being inside jboss
    if i take the same jar and run my application on eclipse everything works fine
    but when i debug this problem and try to loader classes, they are not found
    its like it being ignored and not loaded like the rest of my jars in the classpath.
    is this got anything to do with security?
    Edited by: user8709596 on Sep 6, 2009 4:23 AM

    found a fix to this problem
    weblogic.jar is a standalone jar
    remove all javax folder from this jar and this solves the problem
    and jboss will load the jar successfuly

  • Difference in GL Balances between two Standard Report fbl3n and fagll03

    Hi ,
    Mismatch of balances between two standard report ie.fbl3n and fagll03 . We are giving the complete example of what we are facing right now ... please go through the examples .
    ENTRY NO. 1
    We have posted one MIRO , Accounting Posting is as below : -
    PK         Description    Amount       
    86         GR/IR             1000.00               
    31         Vendor           -800.00
    50          TDS               -200.00
    ENTRY NO. 2
    We have Reversed the MIRO through MR8M , Accounting Posting was as below : -
    PK         Description     Amount       
    21         Vendor             800.00
    40          TDS                 200.00
    96          GR/IR            -1000.00
    But in Standard report FAGLL03 , .The line items of above twoi entries under GL " TDS " are showing in this way  : -
    Doc No.      PK      Ammount
    Entry 1       50          -200.00
    Entry 2       40          -200.00 -
    > ?????
    *OPEN ITEMS          - 400.00----
    > ?????
    Although in other Standard report FBL3N , the same are showing correctly as shown below
    Doc No.      PK      Ammount
    Entry 1       50          -200.00
    Entry 2       40          +200.00
    *OPEN ITEMS                0.00
    PLEASE HELP
    Regards
    Soumitra Bhattacharya

    Hi
    FAGLL03 - Display/Change Items (New)  - this report is related to ledger reporting purpose.  this reports is available after ECC 5.0.
    FBL3N - is line item display - this is only GL reports (not in ledger reporting)
    if you find any difference is values please check the report variant you are using and ledger you are activated.
    hope this will help you.
    Regards
    Ram

  • Difference of profit center between ledger 0 (FI-GL) and other ledgers

    Hello all,
    I have a problem of discrepency between FI-GL and other ledgers (8A and specific ledgers) on profit center data.
    My case :
    I post an incoming invoice with MIRO, this generates a FI posting Vendor to Expenses :
    Account                Profit center               Origin of profit center
    Expense                3630                           coming from the cost center
    Vendor                  3630                         FI substitution rule that puts the expense line profit center on the vendor line profit center
    Postings on other ledgers are also created automatically in real time :
    - a posting in ledger 8A for profit center accounting
    - postings in specific special ledgers we have
    In these postings we find this
    Account                Profit center               Origin of profit center
    Expense                3630                           coming from the cost center
    Vendor                  3637                        ?
    This problem appears only on Vendor or Customer line items.
    My questions :
    Why is the Vendor line item profit center is different between FI-GL and other ledger ? In my GCF3 customization, I have asked to transfer my profit center form FI-GL to my specific ledgers directly, so why isn't this happening ?
    If the profit center is not coming from the FI-GL posting, where is it coming from ?
    Thanks all for your answers !
    Edited by: O_HAFSA on Apr 29, 2010 5:23 PM

    Check the following SAP Note :
    Note 122008 - Activate transfer prices/mult.valuation approaches (https://service.sap.com/sap/support/notes/122008)
    Also check the related notes.
    You may also take a look at the following links :
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/eb/13736a43c411d1896f0000e8322d00/content.htm
    http://help.sap.com/saphelp_erp60/helpdata/en/e2/49e4a52a4a47eea82ffc2d5932cd1c/content.htm
    Ravi

  • Difference for OAG Standards between OAGIS 9.5.1 and 7.2.1

    Hi,
    I was looking for any document which can show the difference between the OAGIS 9.5.1 standard for BOD - 'Process Invoices' as compared to OAGIS 7.2.1 ?
    Please let us know or give pointers as to where can I get this information.
    Regards,
    Megha

    Hi Megha,
    The differences are significant between OAGIS 7.2 and anything greater than OAGIS 8.0. In 8.0, they switched from DTD based schemas to XML Schema (XSD's). All of the elements were renamed to take advantage of the XSD capability to support more than 8 character names, and component based structures were introduced, so that things like Address could be re-used across multiple documents and multiple address types (Bill-To, Ship-To, etc..). They did keep USERAREA extensions, but also introduced overlay extensions and use some of the most complex features of XML Schema. In OAGIS 9.0, they started merging in the ISO standard definitions for components, which provides more standardization across different applications. The differences between 7.2 and 9.5 are significant.
    R,
    Scott

  • How to find the difference in BI Content between SAP ERP 4.7 and ECC 6.0

    We are looking at upgrading our SAP system from 4.71 to ECC 6.0, and I have been tasked with determining what new data may become available in our BW system after the upgrade.  I was wondering if there was a site that would tell me what new datasources/infoproviders are made available after an upgrade to ECC 6.0.
    I do not need to see the list of all Business Content in ECC 6.0, just what has changed.
    Also, the type of upgrade we are looking at performing is a "Technical Upgrade", which presumably just upgrades the SAP back end without affecting the front end.  Can someone confirm that the new BW content will then be available after a technical upgrade?
    Thanks
    Michael
    PS - our BW system has been on version 2004s for two years now.
    Edited by: Michael Frank on Feb 3, 2010 3:07 PM

    Hi,
    http://service.sap.com/erp
    http://solutionbrowser.erp.sap.fmpmedia.com/ (Functional prespective)
    http://service.sap.com/instguides --> mySAP Business Suite Applications --> mySAP ERP --> mySAP ERP 2005 --> Upgrade
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/LOVC/LOVC.pdf
    For Functionality Differences pls refer to the below site -
    http://solutionbrowser.erp.sap.fmpmedia.com/
    After opening the site, please select the Source Release Version which is 4.6 b Then Select the Target Release Version which is "mySAP ERP 2005" or ECC 6.0
    Select the Solution Area like Financials, Human Capital Management, Sales....
    Select module like MM, PP, SD, QM.....
    Click on Search
    Then it displays the Release Version and the Delta Functionality. which can be downloaded to a word document if required.
    and also check the release notes of ECC 6.0 in service.sap.com.
    -Vikram

  • Difference Between Weblogic & Auqalogic

    Hi,
    I am new to application/data integration. I have a question what is the difference between Weblogic server 9.0 and aqualogic 9.0 from application/data integration point of view.
    Could you please also point out difference between Aqualogic and similar tools/products available in market

    hi,
    Please check at http://www.oracle.com/appserver/weblogic/enterprise-edition.html and in the same page click and see Oracle WebLogic Server 10g Standard Edition.

  • How to create and use Webservice controls using WSDL in weblogic portal10.3

    Hi All,
    I have WSDL , How to create webservice controls using the WSDL in weblogic portal 10.3 and use those controls to invoke those webservice methods?
    please give me the documents links for this.
    Thanks
    Venkata Sarvabatla

    As far as I remember, Controls can be called only from Pageflows, BackingFiles, Another Control (Like control calling another control) etc. In pageflow we use annotation @Control and give control classname and a varialbe for that. I am pretty sure this annotation may not work from normal java class and in your case a JAVA JSR Class.
    If you installed the samples, refer the samples from WLS: C:\beawlp103\wlserver_10.3\samples\server\examples\src\examples\webservices. They have lot of fully ready to work samples with instructions. I used clientgen ant task. But you can use standard SUN JDK Command "wsimport" also to generate the java files from the WSDL. Open any command prompt. If java is in classpath, just run wsimport and that should give an idea.
    Goud

  • Differences between  WL Server 6.0 and 6.1

    Are there any differences between Weblogic Server 6.0 and 6.1 . Also what is new in Weblogic 6.1

    Maria wrote:
    >
    Are there any differences between Weblogic Server 6.0 and 6.1 .yes.
    Also what is new in Weblogic 6.1Please see the documentation.

  • Re: How to generate wsdl using JDeveloper11.5...

    Hi ,
    How to generate wsdl file using schema(ie: Drag and drop process).
    please help me.
    Regards,
    venkatesh.

    In Composite editor When you drag "Web Service" service component in editor, it gives option to create new service and create WSDL form XML schema.
    Jayesh
    http://www.yagnasys.com

  • Weblogic 10gR3 standard edition and enterprise edition

    Difference between weblogic 10gR3 standard edition and enterprise edition ??

    WebLogic Server software is the same in all of the various download distributions available that vary on platform and 32/64 bit architecture. However, which features are licensed for use vary by the edition customers license, which is covered here:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14860/products.htm#i1041725
    That link is for WLS 11g, but it applies generally to WLS 10.3.0 as well.

  • Delta between ORACLE 8.0.5 and ORACLE 8.0.6

    I am looking for information that outlines the major differences (bug fixes, enhancements) between ORACLE 8.0.5 and 8.0.6.
    THanks Joerg
    null

    We are running oracle 8.0.5 on a thru64 unix system. Now one of
    our software suppliers demands us to install oracle 8.1.5. Not a
    big problem, but i want to know the difference between oracle
    8.0.5 and 8.1.5. The difference between 8.0.5 and 8.1.5 ?
    For this I had to write a whole a book,
    there are a lot of new features and enhancements.
    But why to do you need to install 8.1.5 ?
    Is there no 8.1.7 on thru64, because 8.1.5 is the first of 8i and
    there are some important bugs.
    So do yourself a favour and use the latest version.
    Regards,
    Thomas

  • WebLogic Enterprise 6.0 and Tuxedo 8.0

    hi folks,
    I have to propose a customer an BEA back-end processing solution with their
    web services, but I've got confused in choosing between WebLogic Enterprise
    6.0 and Tuxedo 8.0. So I need to know what is the different things during
    these products. And, are they an identical product and license ?
    Thanks in advance,
    Apichai H.

    Peter,
    Thank you so much.
    Apichai H.
    "Peter Holditch" <[email protected]> wrote in message
    news:[email protected]..
    Apichai,
    The latest release of WebLogic Enterprise is a bundle of the WebLogicServer
    product (for java programming) and the Tuxedo 8.0 product (for COBOL/C/C++
    XATMI programming and C++/ CORBA programming) with a connector betweenthe
    two.
    Regards,
    Peter.
    Got a Question? Ask BEA at http://askbea.bea.com
    The views expressed in this posting are solely those of the author, andBEA
    Systems, Inc. does not endorse any of these views.
    BEA Systems, Inc. is not responsible for the accuracy or completeness ofthe
    information provided
    and assumes no duty to correct, expand upon, delete or update any of the
    information contained in this posting.
    Apichai Homrossukhon wrote:
    hi folks,
    I have to propose a customer an BEA back-end processing solution with
    their
    web services, but I've got confused in choosing between WebLogicEnterprise
    6.0 and Tuxedo 8.0. So I need to know what is the different thingsduring
    these products. And, are they an identical product and license ?
    Thanks in advance,
    Apichai H.

Maybe you are looking for

  • ITunes 10.3.1 stopped importing artwork, how do I fix it?

    It was working fine until I imported some CDs I had ripped before but converted to a higher Bitrate.  I have tried checking and unchecking the box to automatically import, and have tried to manually import.  Now it won't import for anything ripped or

  • Remote Debugging (Jdev 10.1.3 to AS 10.1.3)

    Hi, I have been trying to do a remote debugging by connecting Jdeveloper (version 10.1.3 production) to AS 10.1.3 mid-tier but the OC4J instance seems to be crashing the moment the jdeveloper makes the connection. However, before the crash, jdevelope

  • NmConnect() error when SSL enabled

    Hello, I am on welogic 10.3.2 and I am trying to create my domain to use SSL. I created a domain and Admin server with SSL enabled. Before starting the admin server. I start the nodemanager and then try the nmConnect as below and i see this error. Pl

  • I lost my files - How to get them back?

    HI GUYS, Recently I realized that some videos and picture's files simply disappear from my HD. I need a Disaster Recovery Software, Quick file recovery I think it was an accident file deletion or a hardware failure, but not a virus attack! What shoul

  • What is the latest version and updates available of Firefox for Mac system 10.3.9? Can you provide a link of this for downloading.

    What is the latest version and updates available of Firefox for Mac system 10.3.9? Can you provide a link of this for downloading. I am currently using Firefox 2.0.0.20 but need to upgrade to use Bell.net email. == URL of affected sites == http://