Problem building the service with jwsc task on bea 9.2

i am trying to build a web service from a wsdl file,
Firstly i generate the proper artifacts with the wsdlc task as described on bea 9.2 docs,then i run the wsdl task trying to build the service from the artifacts previously generated,
here is the wsdl file,and after there are the error i get trying to build the service.
<?xml version="1.0" encoding="utf-8" ?>
<wsdl:definitions xmlns:types="http://emcs.dgtaxud.ec/webservice/types"
xmlns:ref="http://ws-i.org/profiles/basic/1.1/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
targetNamespace="http://emcs.dgtaxud.ec/webservice"
xmlns:ws="http://emcs.dgtaxud.ec/webservice"
xmlns:conv="http://www.openuri.org/2002/04/soap/conversation/">
<wsdl:types>
<xsd:schema elementFormDefault="qualified" targetNamespace="http://emcs.dgtaxud.ec/webservice/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="startEntityAction">
<xsd:complexType>
<xsd:sequence/>
</xsd:complexType>
</xsd:element>
<xsd:element name="startEntityActionResponse">
<xsd:complexType>
<xsd:sequence/>
</xsd:complexType>
</xsd:element>
<xsd:element name="getEntityActionResult">
<xsd:complexType>
<xsd:sequence/>
</xsd:complexType>
</xsd:element>
<xsd:element name="getEntityActionResultResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="ActionSucceeded" type="xsd:boolean"/>
<xsd:element name="ActionResult" minOccurs="0" >
<xsd:simpleType>
<xsd:restriction base="xsd:token">
<xsd:enumeration value="Success" />
<xsd:enumeration value="Error" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="stopEntityAction">
<xsd:complexType>
<xsd:sequence/>
</xsd:complexType>
</xsd:element>
<xsd:element name="stopEntityActionResponse">
<xsd:complexType>
<xsd:sequence/>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<xsd:schema elementFormDefault="qualified"
targetNamespace="http://www.openuri.org/2002/04/soap/conversation/">
<xsd:element name="StartHeader" type="conv:StartHeader"/>
<xsd:element name="ContinueHeader" type="conv:ContinueHeader"/>
<xsd:element name="CallbackHeader" type="conv:CallbackHeader"/>
<xsd:complexType name="StartHeader">
<xsd:sequence>
<xsd:element name="conversationID" type="xsd:string" minOccurs="0"/>
<xsd:element name="callbackLocation" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ContinueHeader">
<xsd:sequence>
<xsd:element name="conversationID" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CallbackHeader">
<xsd:sequence>
<xsd:element name="conversationID" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
<wsdl:message name="StartHeader_literal">
<wsdl:part name="StartHeader" element="conv:StartHeader"/>
</wsdl:message>
<wsdl:message name="ContinueHeader_literal">
<wsdl:part name="ContinueHeader" element="conv:ContinueHeader"/>
</wsdl:message>
<wsdl:message name="startEntityActionSoapIn">
<wsdl:part name="startEntityActionParameters" element="types:startEntityAction"/>
<wsdl:part name="entities" type="xsd:base64Binary"/>
</wsdl:message>
<wsdl:message name="startEntityActionSoapOut">
<wsdl:part name="startEntityActionResponseParameters" element="types:startEntityActionResponse"/>
</wsdl:message>
<wsdl:message name="getEntityActionResultSoapIn">
<wsdl:part name="getEntityActionResultParameters" element="types:getEntityActionResult"/>
</wsdl:message>
<wsdl:message name="getEntityActionResultSoapOut">
<wsdl:part name="getEntityActionResultResponseParameters" element="types:getEntityActionResultResponse"/>
<wsdl:part name="report" type="xsd:base64Binary"/>
</wsdl:message>
<wsdl:message name="stopEntityActionSoapIn">
<wsdl:part name="stopEntityActionParameters" element="types:stopEntityAction"/>
</wsdl:message>
<wsdl:message name="stopEntityActionSoapOut">
<wsdl:part name="stopEntityActionResponseParameters" element="types:stopEntityActionResponse"/>
</wsdl:message>
<wsdl:portType name="MaintainEntitySoap">
<wsdl:operation name="startEntityAction">
<wsdl:input message="ws:startEntityActionSoapIn"/>
<wsdl:output message="ws:startEntityActionSoapOut"/>
</wsdl:operation>
<wsdl:operation name="getEntityActionResult">
<wsdl:input message="ws:getEntityActionResultSoapIn"/>
<wsdl:output message="ws:getEntityActionResultSoapOut"/>
</wsdl:operation>
<wsdl:operation name="stopEntityAction">
<wsdl:input message="ws:stopEntityActionSoapIn" />
<wsdl:output message="ws:stopEntityActionSoapOut" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="MaintainEntitySoap" type="ws:MaintainEntitySoap">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="startEntityAction">
<soap:operation soapAction="http://emcs.dgtaxud.ec/startEntityAction"/>
<conv:transition phase="start"/>
<wsdl:input>
<mime:multipartRelated>
<mime:part>
<soap:body parts="startEntityActionParameters" use="literal"/>
<soap:header wsdl:required="true" message="ws:StartHeader_literal"
part="StartHeader" use="literal" />
</mime:part>
<mime:part>
<mime:content part="entities" type="application/octet-stream"/>
</mime:part>
</mime:multipartRelated>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="getEntityActionResult">
<soap:operation soapAction="http://emcs.dgtaxud.ec/getEntityActionResult"/>
<conv:transition phase="continue"/>
<wsdl:input>
<soap:body use="literal"/>
<soap:header wsdl:required="true" message="ws:ContinueHeader_literal"
part="ContinueHeader" use="literal" />
</wsdl:input>
<wsdl:output>
<mime:multipartRelated>
<mime:part>
<soap:body parts="getEntityActionResultResponseParameters" use="literal"/>
</mime:part>
<mime:part>
<mime:content part="report" type="application/octet-stream"/>
</mime:part>
</mime:multipartRelated>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="stopEntityAction">
<soap:operation soapAction="http://emcs.dgtaxud.ec/stopEntityAction" style="document" />
<conv:transition phase="finish" />
<wsdl:input>
<soap:body use="literal" />
<soap:header wsdl:required="true" message="ws:ContinueHeader_literal"
part="ContinueHeader" use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="MaintainEntity">
<wsdl:documentation>Asynchronous web service for maintaining entities.</wsdl:documentation>
<wsdl:port name="MaintainEntitySoap" binding="ws:MaintainEntitySoap">
<soap:address location="https://seed.dgtaxud.ec:8443/SEEDWS/entity/MaintainEntity.jws"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
the errors i get:
build-service:
[jwsc] JWS: processing module /MaintainEntitySoapImpl
[jwsc] Parsing source files
[jwsc] Parsing source files
[jwsc] 1 JWS files being processed for module /MaintainEntitySoapImpl
[jwsc] C:\DOCUME~1\PAPAGE~1\LOCALS~1\Temp\_1mu7ug\seed\webservices\maintainecontract\MaintainEntitySoap.java 31:69
[jwsc] [ERROR] - A Document Bare style operation must have exactly one non header IN Parameter.
[jwsc] C:\DOCUME~1\PAPAGE~1\LOCALS~1\Temp\_1mu7ug\seed\webservices\maintainecontract\MaintainEntitySoap.java 41:15
[jwsc] [ERROR] - A Document Bare style operation must be declared Oneway if it returns void.
[jwsc] C:\Documents and Settings\papageorgopoulos\Desktop\emcs latest\MaintainEntityContractServ\webservicefiles\MaintainEntitySoa
pImpl.java 28:21
[jwsc] [ERROR] - A document style operation must not have a non header INOUT or OUT Parameter.
[jwsc] C:\DOCUME~1\PAPAGE~1\LOCALS~1\Temp\_1mu7ug\seed\webservices\maintainecontract\MaintainEntitySoap.java 41:15
[jwsc] [ERROR] - A Document Bare style operation must have exactly one non header IN Parameter.
[jwsc] C:\Documents and Settings\papageorgopoulos\Desktop\emcs latest\MaintainEntityContractServ\webservicefiles\MaintainEntitySoa
pImpl.java 13:8
[jwsc] [ERROR] - javax.jws.WebService.endpointInterface seed.webservices.maintainecontract.MaintainEntitySoap is invalid.
[AntUtil.deleteDir] Deleting directory C:\DOCUME~1\PAPAGE~1\LOCALS~1\Temp\_1mu7ug
for any ideas i would be grateful

Ok, thanks Shay. It is ok when I use ' instead of " in my rendering condition, but the page also crashes when there is an ADF table with Empty text attribute value for example: #{bindings.TmetaformatMprogramView1.viewable ? 'No rows yet.' : 'Access Denied.'}. It crashes, says it cannot parse ? same as \ before.
Edited by: nermin on Oct 31, 2008 10:20 AM

Similar Messages

  • DO NOT Get The Service With This Company IF You Want to Receive a Good Customer Service

    It is really a pain, dissatisfaction, and a lot more when you have Verizon as your service provider. I have been having service for my cellphones with Verizon for over 3 years, and did not have any major problems, so when I moved to my new place I thought it’s better to get the Fios, and have one bill for my all Verizon services. I went online and started to order my products online. During ordering, the chat session opened and I started chatting with the Customer Service Rep in order to get help through the process. When we were in the step that I could order the home phone plan, I saw the International World Plan, and I asked the lady to give me some information about this plan. I asked her that I want to call to my country and I mentioned my country’s name to her as well. I asked her that if this service is available for my country, and she said “Yes” you can call to over 100 countries with this service and she encouraged me to get the 300 minutes service. Since the plan sounded good to me I decided to get the 500 minutes instead of 300 min, and after I ordered my plan, I started calling overseas, and happy that I am paying less than the Phone cards with this plan. On March 26 I received my bill, and saw that Verizon charged me 142 $ for the less than 200 minutes that I called to my country, and there was a Letter “N” in front of each phone calls. I checked the guide to see what does “N” mean, and I saw that it said N means “Denoted calls are NOT listed in World Plan”. Well, thanks to the lady who gave me the wrong information while I was ordering my plan online, but she or the Verizon company is not that much lucky because I printed my chat session the day I ordered my plan since I wanted to have the information of what I actually had ordered. That time I did not think that I may get in trouble like this. Since March 27th, I have been calling Verizon every other day, and I have explained my issue to more than 10 Customer Service Reps, and each of them asked me to fax my chat session to them. I have been faxing that to all the numbers that they gave me, and I am keep faxing them, but do not get any respond. One of the Verizon’s Supervisors, whose name is Mark, called twice on my home phone number during the daytime, around 3 pm, and he left massages. On his second massage, he said that he checked the plan and my country is not listed in the International World Plan. He just said this, and he said that he was going to call me back, but never happened. He also did not leave me any phone number that I could call back. Also, since my cellphones are listed in the same bill as my other products, he could easily see the other numbers that he could call and reach me, but he did not bother himself to do so. I have even changed my home voice mail greeting addressing to Verizon, and left my cellphone number in voice mail greeting. I am so sorry that I have to say this, but this seems a definite fraud to me. I did not know about this plan, and I asked the Customer Service Rep to help me. She was responsible to check my country, or at least let me know how I could find out about the coverage. This is ridiculous, and if Verizon cannot take over this problem, my lawyer will take the action over, and takes the issue to their corporate court. I am not going to give up about this, and I decide to give Verizon about a week or so to solve this issue, but I won’t wait more than that. Just a friendly advice to people who want to get the home service through Verizon: DO NOT Get The Service With This Company IF You Want to Receive a Good Customer Service. There is nothing about taking care of customer in this company, and you are going to be stuck with what you get.      

    Mahsa21,
    We are glad that we were able to resolve the international calling plan issue for you.  If you need assistance,please  reach out to us.
    thanks,
    Tonya D.

  • Problem building the Schema...

    Hi,
    I have two BPEL processes..Say 'BPELProcess1' and 'BPELProcess2'..I am trying to invoke the 'BPELProcess1' in 'BPELProcess2'..I am able to create the partner link..but the problem here is when I try to assign the values to the 'BPELProcess1' using an assign activity..It is not showing the variables of the 'BPELProcess1'....Instead it is displaying 'Exception:problem building the schema', Any how I am able to solve this by importing the schema of the 'BPELProcess1'...but Is there any way that we can overcome this problem with out importing the schema....
    Note: I am using the JDeveloper 10.1.3.3

    I have the same problem - Exception: Problem building schema! I assume something's wrong with the schema (:) but no clue as to how to fix it. Don't see anything helpful on the discussion forum so far, except previous post by Feroz without reply. Anyone?
    Thanks
    S (newbie)

  • Build web service with value types

    Hi,
    I am trying to build a web service that uses a value type as a parameter.
    I am using wscompile and wsdeploy to build the service.
    But I don't know how to include the value type in my service.
    This is what I do:
    First I compile all the java files and put them in my build directory (incuding the value type class)
    Then I use wscompile -define -d build -nd build -classpath build config-interface.xml -model build/model.gz
    Then I create the war file that contains the class files, model.gz, web.xml and jaxrpc-ri.xml.
    Then I run wsdeploy -o dist/generic-serv.war dist/generic-service.war
    How do I get my value type class included in the wsdl file? and does it need to be in the model.gz file aswell?

    Sorry I was a bit wrong describing my problem.
    I am trying to use an ArrayList containing value types as a parameter.

  • Problems building the sample Apps for JSF

    I m trying to build the sample Apps provided as part of the JWSDP 1.3 for jsp after making some changes.
    The JSF tutorial says to run tne "ant" command after making changes to the build.properties file.
    The problems i am facing are:
    1. It says to specify the username/passowrd . I do not see anything like that in build.properties.
    2. For building it says to excute "ant" command. But that comes back with errors just specifying the usage which is similar to java usage. I have set all the variables like JSF_HOME, ANT_HOME, JWSDP_HOME etc to the correct values..
    Can anyhelp me by pointing me to how to rebuild these samples..
    BTW i am using the Tomcat that cam bundled with JWSDP 1.4
    Thanks
    SJ

    I also had some problems building the examples. As I use WinXP, I can't really help unfortunately. But I would like to mention, that a stand-alone JSF EA Version wouldl be great and definitely make it easier for newbies to get contac to this technology.
    Another recommendation would be to have a jsf-blank.war, that contains all necessary libs, config files, etc. without references to other downloads. This way I am sure, that many people more would be fascinated.
    I guess that JSF will be available as such a standalone version in the end, but it would also be nice to have it right now, even as an EA.
    cu
    sven

  • There was a problem inserting the Service Request: null

    I am trying out service desk. When I try to create a request I get:
    There was a problem inserting the Service Request: null
    I can't see what the issues is. All fields marked in red are filled.
    Tom

    Thomas,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Many of my older ITunes downloads play perfectly well on my IMac but constantly skip to the next song or suddenly stop playing on my IPhone. The problem is the same with both my old 4s and my new 5s. I have tried deleting and re-downloading to the phones.

    Many of my older ITunes downloads play perfectly well on my IMac but constantly skip to the next song or suddenly stop playing on my IPhone. The problem is the same with both my old 4s and my new 5s  phones. I have tried deleting and re-downloading my music library to the phones, but the result is always the same.

    I'm adding more information:
    in Finder, my iMovie folders are all visible and accessible.  When I click on a clip from iMovie Events folder, Quicktime opens and plays the clip.  ALL my video is not missing - it just isn't showing up in the Event Library!
    This happened all of a sudden, while I was working on iMovie project (on both computers).
    All my Projects are intact, and play when I open them. 

  • How can i unlock the service with AT&T or other carrier? when i was in overseas ?how much does it cost to unlock?

    how can i unlock the service with AT&T or other carrier? when i was in overseas ?how much does it cost to unlock?

    The only way to unlock a locked device is through the carrier. If it is locked to AT&T, you will have to contact them to get it unlocked.
    Cheers,
    GB

  • Will AIR has any problems in the future with Android?

    Will AIR has any problems in the future with Android?
    If we are experienced in flash, is it better to do the mobile work with AIR or HTML5?
    But we are doing flash only so that we may face problems if we faced any bugs, is it expected to have any bugs or complexities, we can do flash with AS3 and we will depend on flash in publishing

    Do you mean you dropped the iPad Air?  Is it working properly?  Is the screen damaged?
    If it is working properly and has no signs of damage, it is probably ok.

  • My network symbol keeps working on my home page even when I'm not doing anything, I know there has been problems in the past with this so has it come back, help it's killing my battery!

    My network symbol keeps working on my home page even when I'm not doing anything, I know there has been problems in the past with this so has it come back, help it's killing my battery!

    Close all open apps by double-tapping the home button, then swiping up and off the screen with the app window (not the smaller icon).
    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • Hi, I have a problem on the ipod with this file "metadata_never_index". My PC doesn't recognise it. I need the program Apple Spotlight but I can't download it as well. Why? Any solution?

    Hi, I have a problem on the ipod with this file "metadata_never_index". My PC doesn't recognise it. I need the program Apple Spotlight but I can't download it as well. Why? Any solution?

    I am not doing it in ITunes, but i did down load the song from ITunes.  I loaded the song on to my Nano, but in my menu selections it doesn't show the song or the artist in any search format.  However, when i plug in my nano to my PC I see the Nano library on my PC drive listings and that song and artist are there.  I can click on the song and it will play in Windows media on my work PC.  I did notice that the format for most all the songs in my library on my Nano are MPEG - 4 audio Files. 
    Thanks for your help, Mel

  • Problem deploying web service with the deploy tool (J2EE)

    Hello,
    I am trying to deploy a sample Web Service on the Sun Java System Application Server Platform Edition 8.1 2005Q1.
    I run into a deployment problem ("jaxrpc compilation exception") when I have one of the web methods declared (in the endpoint interface) to throw a service-specific exception. The problem disappears when I change the declaration to throw an Exception.
    Here is the exception class:
    public class StockNotFoundException extends Exception {
    private String message;
    public StockNotFoundException(String message) {
    super(message);
    this.message = message;
    public String getMessage() {
    return message;
    the endpoint interface:
    public interface StockServiceIF extends Remote {
    // the service methods
    public boolean sellStocks(String ticker, int quantity)
    throws RemoteException, StockNotFoundException;
    and here are the error messages I am seeing:
    in the deploy tool dialog:
    distribute: C:\Beginning J2EE 1.4\Ch13\StockServiceApp\StockServiceApp.ear
    deployment started : 0%
    Deploying application in domain failed; Fatal Error from EJB Compiler -- jaxrpc compilation exception
    ; requested operation cannot be completed
    !!! Operation Failed !!!
    !!! With The Following Failure Messages !!!
    Deploying application in domain failed; Fatal Error from EJB Compiler -- jaxrpc compilation exception
    ; requested operation cannot be completed
    Fatal Error from EJB Compiler -- jaxrpc compilation exception
    and in the server log:
    [#|2005-02-01T18:30:47.856-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|DPL5109: EJBC - START of EJBC for [StockServiceApp]|#]
    [#|2005-02-01T18:30:47.856-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Processing beans ...|#]
    [#|2005-02-01T18:30:47.936-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.stream.out|_ThreadID=12;|
    error: incorrect fault part name for fault "StockNotFoundException" of operation "sellStocks": "StockNotFoundException"|#]
    [#|2005-02-01T18:30:47.966-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Total Deployment Time: 1001 msec, Total EJB Compiler Module Time: 0 msec, Portion spent EJB Compiling: 0%|#]
    [#|2005-02-01T18:30:47.966-0600|SEVERE|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Exception occured in J2EEC Phase
    com.sun.enterprise.deployment.backend.IASDeploymentException: Fatal Error from EJB Compiler -- jaxrpc compilation exception
         at com.sun.enterprise.webservice.codegen.JaxRpcRICodegen.accept(JaxRpcRICodegen.java:206)
         at com.sun.enterprise.deployment.EjbBundleDescriptor.visit(EjbBundleDescriptor.java:584)
         at com.sun.enterprise.deployment.Application.visit(Application.java:1333)
         at com.sun.enterprise.webservice.codegen.JaxRpcRICodegen.run(JaxRpcRICodegen.java:103)
         at com.sun.ejb.codegen.IASEJBC.doCompile(IASEJBC.java:785)
         at com.sun.ejb.codegen.IASEJBC.ejbc(IASEJBC.java:563)
         at com.sun.enterprise.deployment.backend.EJBCompiler.preDeployApp(EJBCompiler.java:340)
         at com.sun.enterprise.deployment.backend.EJBCompiler.compile(EJBCompiler.java:209)
         at com.sun.enterprise.deployment.backend.AppDeployer.runEJBC(AppDeployer.java:284)
         at com.sun.enterprise.deployment.backend.AppDeployer.deploy(AppDeployer.java:176)
         at com.sun.enterprise.deployment.backend.AppDeployer.doRequestFinish(AppDeployer.java:107)
         at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:146)
         at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:71)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:633)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:188)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:520)
         at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:143)
         at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:171)
    |#]
    I would appreciate any pointers to resolving this issue.
    Thanks,
    Satyen

    Can you post the WSDL that was generated by the tool
    for this interface ?I generate the WSDL using "wscompile -define -nd . -classpath ..\build\classes -f:wsi service-config.xml", and here it is:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="StockService" targetNamespace="urn:stockService" xmlns:tns="urn:stockService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <schema targetNamespace="urn:stockService" xmlns:tns="urn:stockService" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="StockNotFoundException">
    <sequence>
    <element name="message" type="string" nillable="true"/></sequence></complexType>
    <element name="StockNotFoundException" type="tns:StockNotFoundException"/></schema></types>
    <message name="StockServiceIF_sellStocks">
    <part name="String_1" type="xsd:string"/>
    <part name="int_2" type="xsd:int"/></message>
    <message name="StockServiceIF_sellStocksResponse">
    <part name="result" type="xsd:boolean"/></message>
    <message name="StockNotFoundException">
    <part name="StockNotFoundException" element="tns:StockNotFoundException"/></message>
    <portType name="StockServiceIF">
    <operation name="sellStocks" parameterOrder="String_1 int_2">
    <input message="tns:StockServiceIF_sellStocks"/>
    <output message="tns:StockServiceIF_sellStocksResponse"/>
    <fault name="StockNotFoundException" message="tns:StockNotFoundException"/></operation></portType>
    <binding name="StockServiceIFBinding" type="tns:StockServiceIF">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
    <operation name="sellStocks">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal" namespace="urn:stockService"/></input>
    <output>
    <soap:body use="literal" namespace="urn:stockService"/></output>
    <fault name="StockNotFoundException">
    <soap:fault name="StockNotFoundException" use="literal"/></fault></operation></binding>
    <service name="StockService">
    <port name="StockServiceIFPort" binding="tns:StockServiceIFBinding">
    <soap:address location="REPLACE_WITH_ACTUAL_URL"/></port></service></definitions>
    ---------------------------------------------------------------------------------------------------------

  • Daqmx read.vi timestamp incorrect problem (storing the timestamp from start task)

    Hello,
    I have a state machine with 1st state: configure DAQ where i have [daqmx create channel.vi --> daqmx timing sample clock--> DAQmx start trigger--> daqmx start trigger] connected in order
    sample clock in continuous mode, 10000 samples to read and sample rate 1000 Hz ,
    start trigger has rising edge selected with a dev1/PFI0 from a daq board.
    next state of SM is read channels which has daqmx read.vi set to 1d waveform  Nchan Nsamp.
    and the program first configures and goes to read channels state and is just waiting for the true value on PFI0,
    but the time stamp is not updated to current time/ when daqmx read starts instead it is getting the initial t0 from the time when it was in configure DAQ state of my SM in other words it stores the starting time when strart task.vi was run and then updates from then on.
    so in effect i am not getting the exact time stamp values while i am running the vi.
    i tried to build waveform by inputting the actual current time but the chart doesnot scroll and shows only few values each reading, when i tried to input the t0 from the waveform given out by read daqmx. vi, it then behaves normally..
    option #1 from this link says
    http://forums.ni.com/ni/board/message?board.id=250&thread.id=47648&view=by_date_ascending&page=2
    Try and do exactly what the driver does.  This
    will require you to do exactly what you are doing in the posted
    example.  Call the current system time immediately prior to calling the
    DAQmx Read and subtract dt * x where x is the number of samples already
    acquired.  This will require you to know exactly how many samples have
    been acquired.  This can be found by calling the Total Samples Per
    Channel Acquired property immediately prior to the DAQmx Read.  This
    introduces some points of innaccuracy.  For example, you're system time
    is already innaccurate to some amount.  In addition, it takes some time
    between calling system time, calling the total samples acquired, and
    calling the DAQmx read.  If 2 samples are acquired between calling the
    system time and total samples acquired, you could be off by a few
    samples.  For slower clock rates, you will have more accuracy. 
    but there are no samples that are acquired until the rising edge, so the number of samples is always zero before the read operation
    http://digital.ni.com/public.nsf/allkb/5D42CCB17A70A06686256DBA007C5EEA 
    this link says that
    and the number of samples in my waveform is constantly changing around 20-40, so i cannot really input the current time to build the waveform, thats what i can figure out for now..
    can somebody tell me why this is happening or is there any fix around this, how to get the current time into my daqmx read.viso it displays the currect time on my waveform chart
    Thanks,

    thanks,
    im using LV 8.6, daqmx driver 8.9.5.
    yes the program u posted get the currect time. but see attached program thats what i have in my program exactly
    if you took out the time to using the get waveform components using the waveform  from daqmx read. i still have the timestamp as the application start time. plz see attached code 8.2v and FP
    the waveform time x axis is not current, it is starting from the application start time.
    PS: samples to read = 10,000 and sample rate = 1000
    plz help..
    Attachments:
    daqmx read problemp.png ‏8 KB
    daqmx read problem.vi ‏36 KB

  • The problem about the interMedia with JMF

    I have done the following things:
    1. Add jmfordim.jar into my client computer's CLASSPATH
    2. Using JMFRegistry, Add "oracle.ord" into both my client's "protocol Prefix List" and "Content Prefix List" in PackageManager tab, commit on both.
    My computer is a client, and the Oracle 9i database and the intermedia are installed on another server with the service name "CAO". I use the JMStudio on my computer.
    But when I use the URL :"im://oci8/CAO/scott:tiger/SELECT t.aud.getcontent(), t.aud.getmimetype() FROM TAUD t WHERE n = 1 " and add into the JMStudio's OpenURL,
    it can't work correctly.
    Would you please tell me the reason? Thank you very much!

    Can you post the error message? Or print out a java stack dump with the exception text?
    There can be problems in different areas, without the error information, I cannot hope to tell you why it does not work. Perhaps you don't have the orcale JDBC driver in your path?
    Larry

  • Problem consuming web service with basic authentication

    Hello,
    I've set up a web service with basic authentication. Although I have to log in before being able to open the overview page of the web service in the Web Service Navigator, the response I get after sending a request is:
    Authority check failed
    I get this response in the Web Service Navigator as well as when consuming the web service via standalone proxy classes.
    The following is strange, too: It is not possible to change  authentication in the generated logical port. It is set to "none". I changed it via the XML file where I added the properties "AuthenticationMethod" (value "BasicAuth") and "AuthenticationMechanism" (value "HTTP"). But I got the above response anyway.
    Thanks for your help!
    Regards

    I used basic authentication for my web service.
    I was able to obtain a hardcopy of the logfiles in the meantime. The invocation of the web service is stored there with the following error messages:
    <i>SOAP Runtime: Exception message: Schwerer Prozessierungsfehler macht eine SOAP-Fault-Behandlung erforderlich
    SOAP Runtime: SOAP Fault exception occurred in program CL_SOAP_RUNTIME_SERVER========CP in include CL_SOAP_RU NTIME_SERVER... [the picture is cut here]</i>
    In addition to that I found a thread in SDN that dealt with exactly the same problem:
    Web Service Homepage: Authority check failed
    But I have the same problem like Kimberly Carmack (the last post on the second page). We do not have that role in our system.

Maybe you are looking for

  • MID 2011 Macbook Air  Wi-fi- No hardware installed

    It was just working earlier this morning and now I think some files got deleted by acciedent,  How do I go about fixing this issues?

  • How to access an EJB from a web application deployed in the same server

    Hey All, I deployed an EJB named EventServerBean to Sun Application Server 9.0, and put the client side jar file (named eventserver.jar which is generated by Sun Application Server) to C:\Sun\AppServer\lib. Now, I have a web application which is a si

  • Column in child query

    Hi, I have a master and a detail query. In my master query( with col a) I need to access column b from the child query. I need to calculate a-b in the master query. I'm getting an error trying to do that. Could someone pls help me. Thanks.

  • Referencing on several dynamically created JFrames

    Hi, I've developed an application for managing tour datas of bike computers. The loaded tours will shown in a JTable as rows. With double click on a row, the tour editor will opend (another JFrame class). The user can change some values ot the bike t

  • Not junk!

    When I checkin the 'sent' folder on any mail I have sent it always opens with 'you marked this mail as junk'. Does anyone know why this should be? Also, I often find mail in the junk folder from friends who are in my address book.I don't understand w