No Port classes are generated?

Hello,
Nothing I do causes the Port classes to be generated.
Therefore I'm unable to follow any of the webservice examples.
All other client code/stubs/XmlBeans are all created and available. The
web-based "generate client" generates 2 jar files and neither of them have
any Port classes. None of the taskdefs in my build.xml <xmlbean>,
<clientgen> generate Port classes either.
does anyone know how to generate Port classes so I can make a client soap
call?
Thank you.

Hi Mark
If you are trying to use XMLBean classes (i.e. classes in the JAR generated by
the <xmlbean> Ant task), in conjunction with classes generated by the <clientgen>
Ant task (i.e. the JAR file the <clientgen> Ant task creates), this won't be doable
OOTB.
The classes in the JAR produced by the <clientgen> Ant task are for JAX-RPC client
writing. This classes use the JAX-RPC API to create the stubs, port and serializer/deserializer
classes, which you use to write a JAX-RPC stub or DII client. These serializer/deserializer
classes are not XMLBeans, and you cannot substitute XMLBean classes for them.
You can however use XMLBeans with a JAX-RPC DII client, if you are will to use
a couple of WebLogic-specific classes in your client.
Only the <clientgen> Ant task can produce the Port classes. The <xmlbean> Ant
task does not produce Port classes, or serializer/deserializer classes that use
the JAX-RPC API.
Regards,
Mike Wooten
Mark Swanson <[email protected]> wrote:
Hello,
Nothing I do causes the Port classes to be generated.
Therefore I'm unable to follow any of the webservice examples.
All other client code/stubs/XmlBeans are all created and available. The
web-based "generate client" generates 2 jar files and neither of them
have
any Port classes. None of the taskdefs in my build.xml <xmlbean>,
<clientgen> generate Port classes either.
does anyone know how to generate Port classes so I can make a client
soap
call?
Thank you.

Similar Messages

  • Are there any Java classes  which generates UI Maps based on UI Hints

    Hi,
    I would like to know how UI Hints work and how UI Maps are generated based on UI Hints.
    Are there any java classes behind?

    Can someone help me on how to do this?

  • SD - Accounting document line items are generating for each item

    Hi all of you,
    We have done account determination for SD. Accounting documents are also generating, but with in the invoice accounting document, number of line items are generating for each item with in the sales order, standard invoice type is F2 like -
    Item 001 - X Material
    Item 002 - Y Material
    Item 003 - Z Material
    The accounting document is -
    Line Item 001 - Customer Ac Dr
    Line Item 002 - Discount A/c Dr
    Line Item 003 - Sales revenue
    Line Item 004 - Discount A/c Dr
    Line Item 005 - Sales Revenue
    Line Item 006 - Discount A/c Dr
    Line Item 007 - Sales revenue
    Line Item 008 - VAT
    Even, in my experience I did not find this type of entry and the sales revenue and discount accounts are same with in the COA and is posted with in the plant.
    Please give me your valuable suggestion to rectify the above issue.
    Regards,
    Ramki
    Edited by: Ramki on Nov 5, 2009 10:06 AM

    Dear Ramki,
    This is SAP Standard. System generates Accounting document line item for each Line items in Invoice.
    This is standard & also required bacuase say you have different Material types in single Invoice (e.g.Material & Service items, Trading Goods, etc). The valuation class assigned to these Material Types may be different & you might want to post revenues from these Line items in different GL Accounts.
    Hope this helps. .
    Thanks,
    Jignesh mehta

  • Logs are generating with owner and group as 'root'

    Hi,
    In our newly installed and configured Oracle application server(10.1.3.5), the logs are generating with owner and group as 'root'.
    Location: $ORACLE_HOME/Apache/Apache/logs
    -rw-r----- 1 root root 6700 Apr 3 02:03 access_log.1364947200
    -rw-r----- 1 root root 430 Apr 3 02:04 error_log.1364947200
    We have configured it on port 80. For this the '.apachectl' ownership and permissions are changed as below:
    -rwsr-s--- 1 root dba 1703780 Jul 21 2009 .apachectl
    Kindly let me know what are the changes to be made, for the logs to be generated with the group as 'dba' instead of 'root'.
    Thanks.
    Edited by: 985284 on Apr 3, 2013 3:14 AM
    Edited by: 985284 on Apr 3, 2013 4:22 AM

    Ok - that is quit weird then. If you want to run the HTTP Server on a privileged port, you basically change the ownership of the .apachectl executable :
    cd ORACLE_HOME/Apache/Apache/bin
    chown root .apachectl
    chmod 6750 .apachectlas per [url http://docs.oracle.com/cd/B25221_05/core.1013/b25209/ports.htm#CIHJEEJH]documentation.
    Your user and group directive should be set to :
    User oracle
    Group dbaUpon starting, the http server would start as root and then switch the effective userid of the process from root to oracle. In the process list (ps -ef | grep httpd), you should see oracle.
    Do you have the same configuration and what do you see in the process list?

  • Java Class not generated by jax-ws Weblogic 10.3 if empty xs:enumeration

    Hi everyone!
    I discovered tricky problem. I've defined
         <xs:simpleType name="MyType">
              <xs:restriction base="cm:ValidStringType">
                   <xs:enumeration value="TRG"/>
                   <xs:enumeration value="TRM"/>
                   <xs:enumeration value="TMP"/>
                   <xs:enumeration value="TMV"/>
                   <xs:enumeration value="SFL"/>
                   <xs:enumeration value="PRQ"/>
                   <xs:enumeration value=""/>               
              </xs:restriction>
         </xs:simpleType>
    in some.xsd where
    <xs:simpleType name="ValidStringType">
    <xs:restriction base="xs:token">
    <xs:pattern value="([A-Z\p{S}\p{P}\d\s]){0,255}"/>
    </xs:restriction>
    </xs:simpleType>
    Problem is MyType.java is not generated now at all.
    But if I remove last entry <xs:enumeration value=""/> when the class gets generated.
    We are migrating from Weblogic 9.2 Java 1.5_11 and jaxrpc into
    Weblogic 10.3 jdk 1.6_14 and jaxwc-2.0.jar.
    Is that a bug in weblogic.wsee.tools.anttasks.WsdlcTask? I use it to generate source code files.
    Or jax-ws 2.0 has some limitations that <xs:enumeration value=""/> is not supported?
    So any ideas how to fix my situation?
    Here is the part of my build.xml
    <taskdef name="wsdlc" classname="weblogic.wsee.tools.anttasks.WsdlcTask" classpath="${wl103.dir}/server/lib/weblogic.jar"/>     
              <wsdlc verbose="on"
                   srcWsdl="${basedir}/../definitions/wsdls/mywsdl.wsdl"
              destJwsDir="${comp_wsdl.dir}"
              destImplDir="${generated.sources.dir}"
                   type="JAXWS">
                   <binding dir="${basedir}" includes="${binding.files}"/>               
         </wsdlc>
    Note all paths are correct.
    Thanks a lot
    Igor
    Edited by: user461997 on Jun 19, 2009 1:54 PM

    That's a problem.
    Other classes just complain that MyType class was not found.
    MyType.java file simply was not generated by wsdlc ( classname="weblogic.wsee.tools.anttasks.WsdlcTask ).
    There is no direct messages giving clue why MyType.java file was not generated.
    Is any verbose, diagnostic to turn on etc. tricks to get more generation process info?
    Are anywhere good articles reviling in-depth the process of generating java source code files by WsdlcTask and using javax.jws_2.0.jar
    in my case?
    For me it's an emergency. So if anybody can give some ideas?
    Is that a bug in weblogic.wsee.tools.anttasks.WsdlcTask which does not like empty xs:enumeration value="" ? I use it to generate source code files.
    Or jax-ws 2.0 has some limitations that <xs:enumeration value=""/> is not supported?
    Thanks a lot
    Igor
    Edited by: user461997 on Jun 22, 2009 7:10 AM

  • Precompiled JSP classes are ignored on Solaris

    I'm using Weblogic 5.10 SP9, building on NT and deploying on Solaris. I
              precompile the JSP files but the classes are ignored on Solaris. I tried
              touching all of the classes to ensure that it is not a date issue but that
              didn't help. I also put the pageCheckSeconds to -1. I also use the
              weblogic.httpd.windows.caseSensitive flag and when the generated files are
              compiled they are placed in the same location with the same names and top
              level package.
              Thanks,
              Rob
              

              You must preserve the timestamps on the .jsp files between Solaris and NT. WL does
              not look at the timestamps on the .class files to decide whether or not to compile
              a jsp. It checks the date on the .jsp file against ... (the date on the .jsp file
              at the time it was compiled). Compile with -keepgenerated and look at the resulting
              .java file to see this.
              It also checks that it was compiled with the same version/service pack.
              Mike
              "Rob Murtha" <[email protected]> wrote:
              >I'm precompiling all of my jsps on NT and deploying them on Solaris.
              >The
              >classes seem to be ignored and the server always generates a new java
              >file
              >and compiles at runtime.
              >
              >I am using Weblogic 5.10 SP9. I have the following configuration
              >
              >case sensitivity is on during the compile, the correct case files are
              >generated and used on NT
              >the timestamps of the class files don't seem to matter
              >pageCheck is -1
              >
              >Thanks
              >Rob
              >
              >
              

  • 10g: Classes are missing in a package tree view

    I created a project from the existing source (3,000+ source classes). Initially all classes are shown in a tree view, but after restarting Jdeveloper I can see only part of the classes in a navigation window. At the same time I'm able to see all of them if I use package list view.
    Any ideas or similar experience?
    Noel.

    The latest internal build is 1493. Is it possible to reproduce the bug without getting your entire project? If so can you enumerate the steps? Thanks.

  • Multiple production orders  are generated for same requirement

    hello guru's
    For a MTO (make to Order) scenario, where the Material requirement quantities are generated from Sales Orders.
    Ex: Sales Order created for 500 Qty.
    I had run the MRP using MD03 with the following parameters
    Processing key              NETCH      Net Change in Total Horizon
    Create purchase req.     1                  Purchase requisitions in opening period
    Delivery schedules       3                  Schedule lines
    Create MRP list            1                  MRP list
    Planning mode              1                  Adapt planning data (normal mode)
    Scheduling                    1                  Determination of Basic Dates for Planned
    System had generated Planned Orders for Qty 500 and these are converted to Production order for Qty 500 for which the Purchase Order for 500 are created.
    Goods receipt of 480 has been made against the Purchase Order for the Ordered 500 Qty.
    When I re-run the MD03 the system is generating the new Production Order Qty 0f 20 which is not supposed to be as this 20 Qty was already part of the existing Purchase Order and yet to be delivered .
    Could you please explain me why this is happening?
    regards

    Dear,
    MRP will consider the firmed PR for the completion date contained in the PR. If the requirements date is different, then MRP will create a new proposal (PR).
    If you wish for MRP to RESCHEDULE the dates of existing firmed purchase reqs, instead of just creating new proposals, you have to set the Rescheduling horizon. OPPQ> Rescheduling (plant) or OPPR >Recheduling Horizon (MRP Groups). Start with a small horizon,  Also check the tick mark for firm reciept there.
    Are you getting any expection message in front of PR?
    MRP will 'assume' rescheduling by configuration, by managing the rescheduling horizon, and by setting the rescheduling tolerances. These config can be found in
    OPPQ select Rescheduling
    or, for MRP groups
    Please check and come back.
    http://help.sap.com/saphelp_erp60_sp/helpdata/EN/f4/7d2c9744af11d182b40000e829fbfe/frameset.htm
    Regards,
    R.Brahmankar

  • Outgoing payment & Incoming payment are generated negative docentry in new year

    After creating New  financial year , Outgoing Payment and Incoming Payment Docentries are generated from beginning (1) but in Negative  why?.  In all documents the same is generated continuous nos from last years. why in OP & IP generated in different way.  If we create in next financial year 15-16 how the they generate.

    Hi,
    As per Mr.Jitin's  reply, if any overlapping, document entry will be in negative.
    Why DOCENTRY is not continuing from last years no. like other documents like OINV?
    If you change document numbering, new document entries will be created.
    why docentry filed is not there in VPM1 & RCT1  like INV1 & others?
    Because incoming payment (ORCT) table is common to check, invoice, account, vouchers. These tables are linked with document number.
    ORCT.docentry = RCT1.Docnumber
    Hope you understand.
    Thanks & Regards,
    Nagarajan

  • Handling events in javascript which are generated by embedded applet

    I am having an tipical requirement , In my HTML page there is an embedded applet . This applet is going to generate custom events . I would like to handle that events in javascript which are generated from applet . I mean that javascript has to get a notification of the event that is generated from applet . I would appreciate if some one can send me the code .

    Hi look at my post further down about 5-6 posts. It's called: "For your information. Very interesting." It talks about Netscapes Live Wire.

  • Classes are not loading from WEB-INF/classes directory

    Hi All,
    I am in a deep troble because the class files in the WEB-INF/classes directory are not loading.
    I have deployed the application in Tomcat 6 server. And stored all class files under WEB-INF/classes dirctory. But when I execute a JSP page, I am getting following error:
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP:
    JSP FileName:/hello.jsp
    An error occurred at line: 1 in the jsp file: /hello.jsp
    com.flt.Test cannot be resolved to a type
    1: <%=new com.flt.Test().hello()%>
    Stacktrace:
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:98)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330)
         org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:435)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:298)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:277)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:265)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:564)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:302)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)The classes are available in the WEB-INF/classes directory and the folder name and package name of the classes are correct. I have also tried to execute the application by creating a jar file and put it in the WEB-INF/lib directory. But I am getting same result.
    Is it the problem with Tomcat configuration? When I gone through Tomcat documentation, I get to know that the WebAppX class loader in Tomcat, loads application specific classes for a web application. Is it possible to start/stop WebAppx classloader manually?
    Please help me to solve this issue.
    Many Thanks,
    Francis Lukose
    Edited by: francis_ on May 13, 2008 10:03 AM

    Thanks for your reply, Soultech2012.
    <%=new com.flt.Test().hello()%>is the only code in the JSP page. Just a single line. Nothing more than that.
    The code in Test.java is as follows:
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package com.flt;
    * @author Francis Lukose
    public class Test {
        public static String hello()    {
            return "hello";
    }Many Thanks,
    Francis
    Edited by: francis_ on May 13, 2008 6:45 PM

  • Images and js files within a deployed war file are generating 404 errors.

    Greetings,
    I have an odd situation in that image files and js files that are part of a deployed war file are generating 404 (not found) errors when accessed via https but ARE found when accessed via http.
    Unfortunately we are required to use https.
    I have verified via jar -tf that the files are indeed part of the war file. So, it is not that they are missing as is evident when accessed via http. (they appear as expected)
    A work around is to create the sub directories under the document root, on the ohs, and populate the sub directories with the images and js files that were used as part of the war file build. While this works, it doesn't explain why they would generate a 404 error when referenced from within the war via https.
    The war file works correctly on our 10g installation.
    I also have a very simple deployed war file and it too seems to have an issue finding direcotries/files that are part of the war file when referenced via https but not http.
    We are using Oracle 11g OHS and using the WLS Admin Console to do the deploying. We also are using the OSSO for the performing the required authentication.
    I have an SR in with oracle and have been working with them but I thought I would post here too.
    Suggestions?
    Thanks in advance.
    Edited by: emmett on Jan 5, 2011 2:47 PM

    Don't crosspost. Continue here: http://forum.java.sun.com/thread.jspa?threadID=5251627

  • Every time I sync my iCal computer with my iPhone 4 or iPad, duplicate entries are generated on both systems. What am I doing wrong or how can I avoid the duplications?

    Every time I sync my iCal on my computer through iTunes with my iPhone 4 or iPad, duplicate entries are generated on both systems. What am I doing wrong or how can I avoid the duplications? I have been doing this for several years and this problem is a more recent issue, like in the last 6 months. I have been deleting the duplicate entries, on both systems, but some duplicates reappear through "general" entries that are connected to the correct color for a Calendar, but not the name. I am going nuts and wasting tons of hours trying to get the 3 calendars to sync without generating duplicate entries.

    Choose one of the Calenders on ONE of the computers OR the MobileMe as the Master / correct account.
    The REINITAILISE the data of MobileMe within preferences on the computer defining the datatransfer correctly (in the advanced box of preferences). The synchronise iphone contacts and calender directly on-line to MobileMe.
    I posted a question on this today, and gave my own reply !
    Regards,
    Kevin

  • Billing docs are generated but not account docs

    Hi
    Today I got a ticket which says billing docs are generated but not accounting docs. I went to vf05 and found that it is indeed true. accounting doc was not generated for one of the billing doc. How can I what went wrong and how to solve this.
    Will reward suitably. Plz help.
    Thanks

    Hope SD-FI integration is not properly maintained.
    This can be one of the reason. if the problem is related to GL account determination maintain it in VKOA.
    Assign points if useful
    Regards
    Raghu Ram

  • Multiple excise invoices are generated

    Multiple excise invoices are generated from one billing document using transuction code J1iin. Suppose there is a billing document whose number is 123456, now when I am using t-code j1iin to create excise invoice i am able to create two excise invoices from the same billing document.
    Please help me to sort out this issue...

    Hi,
    I dont think it makes sense to have 2 excise invoices for 1 GR.  Can you please explain the scenario ?
    As per std. SAP you can capture multiple excise invoices against multiple GRs only.
    Thanks & Regards,

Maybe you are looking for

  • How do I fix? -iPod Touch Generation 4 frozen and jammed

    I have an iPod Touch Generation 4 and the sleep button/lock screen button is jammed. I can't fix the jam no matter what and I've tried everything said online and such. I got a notification from an app and slid open, tapped in correct code, and the ap

  • Reg., Quality Inspection at the time of Goods Receipt against the P.O.

    Hi Pls provide the procedure for the "Quality Inspection at the time of Goods Receipt against the P.O." Thanks in advance. Regards Ravi

  • How to generate an html file with tiles of my m3ps

    I am trying to build a small webpage that will point to about 1000 mp3s but I dont want to type the song title for all the 1000 mp3s. is there anyway of generating an html file instead? -thanks.

  • Additional pages not numbered

    I have noticed the additional pages I've added to a themed photobook are missing page numbers.  The original pages all show the numbers.  Is there any way to get the page number to show on the new pages? I'm using iPhoto '09.

  • HT201317 My photos aren't streaming

    My photos aren't streaming and I think everything is set up correctly. I recently restored my phone and now the photos from my iPad aren't streaming.