Wscompile only generates classes for the first wsdl:portType encountered

Greetings.
When
compiling a WSDL with port types as follows below;
classes are generated for port type: AccountsManagement only.
  <portType name="AccountsManagement">
      <operation name="CreateAccount" parameterOrder="Account">
          <input message="tns:CreateAccountReq"/> <!-- name defaults to CreateAccountReqRequest -->
          <output message="tns:CreateAccountReqResponse"/>
      </operation>
      <operation name="CreateAccountForPerson" parameterOrder="Account UniqueId">
          <input message="tns:CreateAccountForPersonReq"/>
          <output message="tns:CreateAccountForPersonReqResponse"/>
      </operation>
  </portType>
  <portType name="PersonsManagement">
      <operation name="AddPerson" parameterOrder="Person">
          <input message="tns:AddPersonReq" name="AddPersonReq"/>
          <output message="tns:AddPersonReqResponse" name="AddPersonReqResponse"/>
      </operation>
      <operation name="AddPersonWithAccount" parameterOrder="Person Account">
          <input message="tns:AddPersonWithAccountReq" name="AddPersonWithAccountReq"/>
          <output message="tns:AddPersonWithAccountReqResponse" name="AddPersonWithAccountReqResponse"/>
      </operation>
  </portType>
  <portType name="TellersOperations">
      <operation name="ListAccountsForPerson" parameterOrder="UniqueId">
          <input message="tns:ListAccountsForPersonReq"/>
          <output message="tns:ListAccountsForPersonReqResponse"/>
      </operation>
  </portType>Netbeans output:
init:
wscompile-init:
Created dir: C:\PROJECTS\WSTest\build\generated\wsclient
Created dir: C:\PROJECTS\WSTest\build\generated\wsservice
Created dir: C:\PROJECTS\WSTest\build\generated\wsbinary
TestBankingService_wscompile:
command line: wscompile "C:\Program Files\Java\jdk1.5.0_03\jre\bin\java.exe" -classpath "C:\Program Files\Java\jdk1.5.0_03\lib\tools.jar;C:\Program Files\netbeans-4.1\SunAppServer8.1\lib\j2ee.jar;C:\Program Files\netbeans-4.1\SunAppServer8.1\lib\saaj-api.jar;C:\Program Files\netbeans-4.1\SunAppServer8.1\lib\saaj-impl.jar;C:\Program Files\netbeans-4.1\SunAppServer8.1\lib\jaxrpc-api.jar;C:\Program Files\netbeans-4.1\SunAppServer8.1\lib\jaxrpc-impl.jar" com.sun.xml.rpc.tools.wscompile.Main -d "C:\PROJECTS\WSTest\build\generated\wsbinary" -features:wsi,strict -import -keep -mapping "C:\PROJECTS\WSTest\web\WEB-INF\TestBankingService-mapping.xml" -nd "C:\PROJECTS\WSTest\build\web\WEB-INF\wsdl" -s "C:\PROJECTS\WSTest\src\java" -verbose -Xprintstacktrace "C:\PROJECTS\WSTest\src\java\bankers\server\TestBankingService-config.xml"
[ServiceInterfaceGenerator: creating service interface: bankers.server.TestBankingService]
[CustomClassGenerator: generating JavaClass for: Account]
BUILD SUCCESSFUL (total time: 2 seconds)There should be a class for Person as well. If I move port type:
PersonsManagement to the top no Account class will be generated, but
instead the Person class will be generated.
Loading up the WSDL in Netbeans (client) works and shows
all three Ports with their respective operations.
Is there a reason for only allowing more than one port type per WSDL?
Checked the man page for switches to "loop" though all portTypes but noluck.
A bug?
Thanks,
WSDL for reference
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="BankingService" targetNamespace="http://www.mycomp.org/schemas/MyWebService"
    xmlns:tns="http://www.mycomp.org/schemas/MyWebService"
    xmlns:ns1="urn:WS/types"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <!-- Type definitions -->
  <types>
    <xsd:schema targetNamespace="urn:WS/types">
        <xsd:element name="Person" type="ns1:Person"/>
        <xsd:element name="Account" type="ns1:Account"/>
        <xsd:element name="ListOfAccounts" type="ns1:ListOfAccounts"/>
        <xsd:element name="ResultCode" type="xsd:unsignedInt"/>
        <xsd:element name="AccountNumber" type="xsd:string"/>
        <xsd:element name="UniqueId" type="xsd:string"/>
        <xsd:complexType name="Person">
            <xsd:sequence>
                <xsd:element name="DisplayName" type="xsd:string"/>
                <xsd:element name="UniqueId" type="xsd:string"/>
            </xsd:sequence>
        </xsd:complexType>
        <xsd:complexType name="Account">
            <xsd:sequence>
                <xsd:element name="Number" type="xsd:string"/>
                <xsd:element name="Type" type="xsd:token"/>
                <xsd:element name="Amount" type="xsd:integer"/>
            </xsd:sequence>
        </xsd:complexType> 
      <xsd:complexType name="ListOfAccounts">
          <xsd:sequence>
              <xsd:element name="Account" type="ns1:Account" minOccurs="0" maxOccurs="unbounded"/>
          </xsd:sequence>
      </xsd:complexType>
    </xsd:schema>
  </types>
  <message name="AddPersonReq">
      <part name="Person" element="ns1:Person"/>
  </message>
  <message name="AddPersonReqResponse">
      <part name="ResultCode" element="ns1:ResultCode"/>
  </message>
  <message name="AddPersonWithAccountReq">
      <part name="Person" element="ns1:Person"/>
      <part name="Account" element="ns1:Account"/>
  </message>
  <message name="AddPersonWithAccountReqResponse">
      <part name="AccountNumber" element="ns1:AccountNumber"/>
  </message>
  <message name="CreateAccountReq">
      <part name="Account" element="ns1:Account"/>
  </message>
  <message name="CreateAccountReqResponse">
      <part name="AccountNumber" element="ns1:AccountNumber"/>
  </message>
  <message name="CreateAccountForPersonReq">
      <part name="Account" element="ns1:Account"/>
      <part name="UniqueId" element="ns1:UniqueId"/>
  </message>
  <message name="CreateAccountForPersonReqResponse">
      <part name="AccountNumber" element="ns1:AccountNumber"/>
  </message>
  <message name="ListAccountsForPersonReq">
      <part name="UniqueId" element="ns1:UniqueId"/>
  </message>
  <message name="ListAccountsForPersonReqResponse">
      <part name="Accounts" element="ns1:ListOfAccounts"/>
  </message>
  <!--
        NOTE THAT wscompile WILL PICK THE FIRST AND ONLY FIRST portType
        IS THIS A BUG OR A FEATURE?
  -->
  <portType name="AccountsManagement">
      <operation name="CreateAccount" parameterOrder="Account">
          <input message="tns:CreateAccountReq"/> <!-- name defaults to CreateAccountReqRequest -->
          <output message="tns:CreateAccountReqResponse"/>
      </operation>
      <operation name="CreateAccountForPerson" parameterOrder="Account UniqueId">
          <input message="tns:CreateAccountForPersonReq"/>
          <output message="tns:CreateAccountForPersonReqResponse"/>
      </operation>
  </portType>
  <portType name="PersonsManagement">
      <operation name="AddPerson" parameterOrder="Person">
          <input message="tns:AddPersonReq" name="AddPersonReq"/>
          <output message="tns:AddPersonReqResponse" name="AddPersonReqResponse"/>
      </operation>
      <operation name="AddPersonWithAccount" parameterOrder="Person Account">
          <input message="tns:AddPersonWithAccountReq" name="AddPersonWithAccountReq"/>
          <output message="tns:AddPersonWithAccountReqResponse" name="AddPersonWithAccountReqResponse"/>
      </operation>
  </portType>
  <portType name="TellersOperations">
      <operation name="ListAccountsForPerson" parameterOrder="UniqueId">
          <input message="tns:ListAccountsForPersonReq"/>
          <output message="tns:ListAccountsForPersonReqResponse"/>
      </operation>
  </portType>
  <binding name="AccountsManagementBinding" type="tns:AccountsManagement">
      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
      <operation name="CreateAccount">
          <soap:operation soapAction=""/>
          <input name="CreateAccountReq">
              <soap:body use="literal"/>
          </input>
          <output name="CreateAccountReqResponse">
              <soap:body use="literal"/>
          </output>
      </operation>
      <operation name="CreateAccountForPerson">
          <soap:operation soapAction=""/>
          <input name="CreateAccountForPersonReq">
              <soap:body use="literal"/>
          </input>
          <output name="CreateAccountForPersonReqResponse">
              <soap:body use="literal"/>
          </output>
      </operation>
  </binding>
  <binding name="PersonsManagementBinding" type="tns:PersonsManagement">
      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
      <operation name="AddPerson">
          <soap:operation soapAction=""/>
          <input name="AddPersonReq">
              <soap:body use="literal"/>
          </input>
          <output name="AddPersonReqResponse">
              <soap:body use="literal"/>
          </output>
      </operation>
      <operation name="AddPersonWithAccount">
          <soap:operation soapAction=""/>
          <input name="AddPersonWithAccountReq">
              <soap:body use="literal"/>
          </input>
          <output name="AddPersonWithAccountReqResponse">
              <soap:body use="literal"/>
          </output>
      </operation>
  </binding>
  <binding name="TellersOperationsBinding" type="tns:TellersOperations">
      <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
      <operation name="ListAccountsForPerson">
          <soap:operation soapAction=""/>
          <input name="ListAccountsForPersonReq">
              <soap:body use="literal"/>
          </input>
          <output name="ListAccountsForPersonReqResponse">
              <soap:body use="literal"/>
          </output>
      </operation>
  </binding>
  <service name="BankingService">
      <port name="AccountsManagementService" binding="tns:AccountsManagementBinding">
          <soap:address location="__URL__"/>
      </port>
      <port name="PersonsManagementService" binding="tns:PersonsManagementBinding">
          <soap:address location="__URL__"/>
      </port>
      <port name="TellersOperationsService" binding="tns:TellersOperationsBinding">
          <soap:address location="__URL__"/>
      </port>
  </service>
</definitions>

I saw this post elsewhere:
JAXRPC specification required support for only subset of schema types. Abstract schema type support was not required. For the schema types that are not supported, the spcification requires that they should be mapped to javax.xml.soap.SOAPElement.
This is what jaxrpc wscompile tool does. At tool time, the type in the sample code posted is extended frm an abstract type so it should be getting mapped to SOAPElement. SOAPElement extends Node and Element. You may like to see its javadoc.
-vivek.
This is basically the behavior I am seeing, but I don't see this as being extended from an abstract type. if someone can see that and explain that to me I would appreciate it....if this is even the right path to the answer to my problem.

Similar Messages

  • Generating classes for all types in WSDL

    Is there a way to get Flash Builder to generate classes for all the complex types found in a WSDL?
    The web service I am trying to connect to essentially has one method that takes a BaseRequest object and returns a BaseResponse object. If passed a DerivedRequest object (extending BaseRequest), it returns a DerivedResponse (extending BaseResponse). However, Flash Builder only generates classes for BaseRequest and BaseResponse, and not DerivedRequest or DerivedResponse.
    Thanks for any help

    The Web Service import wizard generates Value Object classes for all the associated data types required by the imported operations. Say you imported only 2 out of 10 operations mentioned in the WSDL, you will have classes generated for only those data typed required by the 2 imported operations, which may not result in generation of all data types.
    In the case mentioned by you, what I assume is that, the operations are mentioned in the WSDL to return the BaseResponse and take BaseRequest as param.
    Now using the above mentioned logic the introspector does not know that the derivedResponse may be required and does not import it. Had the operation pointed to the DerivedResponse directly it would have got imported.
    A suggested workaround can be that you implement the custom properties in the generated Is there a way to get Flash Builder to generate classes for all the complex types found in a WSDL?
    Currently there is no such switch in FB. You may log an enhancement request at http://bugs.adobe.com/jira for the same.
    Thanks,
    - Gaurav

  • The get messages function only works for the first account

    regardless of which account is listed in any order, the get messages button only gets messages for the first account in the list, thus if you are expecting one into another account you have to highlight that account and click the get messages....

    I have no idea what your talking about. Thunderbird has no apps.
    Perhaps your talking of add-ons. If you found an add-on perhaps you could mention what it is, so that I and other might know it exists.
    You appear to be under some misconceptions,
    !. Moderation is about answering questions. Wrong. Moderation is about deleting questions, editing comments that do not meet the guidelines for the forum and banning users.
    2. Searching add-on is someone elses job.
    3. Someone is getting paid to accept your criticism. I am not.
    If I as a fellow user an ignorant of an add-on then tough luck for those I advise. They should have been resourceful enough to search for add-ons before they asked the question. I can only tell people what I know.

  • Reusing JAXB generated classes for XSDs included in other XSDs

    Hi,
    I use xsds with jaxb in a number of related projects. To avoid duplication I've factored out commonly used elements into their own xsd in a separate project. I then include these in the xsds that need them.
    I generate classes with jaxb for each project. I'm now trying to get jaxb so far as to reuse the already generated classes for the common elements.
    For example: I have a general xsd Person.xsd for which I generate classes in common.xsd. I have another xsd Project.xsd that includes a reference to the Person element. When i let jaxb generate classes for Projects.xsd, it will also generate a project.xsd.PersonType and so on.
    Is there any way to tell JAXB to use the existing classes? I've played around with the <jxb:javaType> bindings, but I can't get it to work yet. It gives me a "bindings not used" warning and doesn't compile. Also, if this is in fact the way to go, what do I specify as the parseMethod and printMethod attributes for the javaType element?
    Thx for any help

    JAXB questions should be better directed to the users list of http://jaxb.dev.java.net/
    you should subscribe to the 'users' mailing list, then post a question there.
    Thank you!

  • Time Machine really toooo low for the first back up!

    I'm backing up my HD for the first time but after 8 hours it has backed up only 29GB out of 97GB of my Mac Book Pro: is it normal???

    What is system.log reporting for the TM backup process named "backupd" ?
    Some people don't recommend USB2 devices for backup but IMO they are AOK. The first backup of tens of GBs might be a bit slower than FW400 but this really is only an issue for the first backup. Subsequent backups/snapshots will go along just fine. USB2 is also a more common external device that is FW and normally cost less.
    Post back the system.log backupd messages and maybe we can get some clues from that.
    I agree that 8 hrs is too long and suspect there's a holdup somewhere.

  • CoCreateInstance returns 0x8007007e (Module could not be found) for the first call only at system startup on Windows 2008 Enterprise SP2

    Hi Guys,
    I'm experiencing a problem with CoCreateInstance, where it returns error 0x8007007e.
    The code is something like this:
    HRESULT hRes = S_OK;
    CComPtr<IMyInterface> spObj;
    if(FAILED(CoInitialize(NULL))) { /* quit */ }while(FAILED(hRes = spObj.CoCreateInstance(CLDIS_MyClass, NULL, CLSCTX_LOCAL_SERVER)))
    // LogFailure(hRes);
    Sleep(10);
    The problems occurs only on a single machine having Windows 2008 Enterprise SP2 installed (it works fine on other machines / OS versions). It happens only during the system startup (this is a Windows Service) and only for the first call of the CoCreateInstance.
    The second call always succeeds.
    The problem does not occurr when starting the service manually from Services.
    I did some investigation using Process Monitor and found that the HKCR\CLSID\[CLSID of MyClass]\LocalServer32!LocalServer32 registry value is accessed before the failure. The registry value exists - it is added by the Windows Installer during
    installation.
    If I remove the registry value then the CoCreateInstance always succeeds.
    I've been trying to lookup for some documentation on HKCR\CLSID\...\LocalServer32!LocalServer32 but haven't found anything useful other than it's a "Windows Installer Entrypoint". I assume that the Windows Installer does some integrity checks when
    calling CoCreateInstance for such class and this fails for some reason but currently I fail to find the reason.
    Can anyone help finding out what's the root cause of the 0x8007007e error here, please? Any help or tip is much appreciated.
    Many thanks!
    Marcin.

    Hi Marcin,
    This forum is mainly for talk about the product use related issue and not the best place to talk about the develop issue, for the develop issue we can post in MSDN forum for
    the further help and your issue may need capture a dump then for the further analysis it is not an efficient way to work in this community since we may need more resources which is not appropriate to handle in the community. I‘d like to suggest that you submit
    a service request to MS Professional tech support service so that a dedicated Support Professional can further assist with this request.
    MSDN forum
    https://social.msdn.microsoft.com/Forums/en-US/home
    Please visit the below link to see the various paid support options that are available to better meet your needs.
    http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone
    Thanks for your understanding and support.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Unable to Generating a proxy class for the Enterprise Service

    Hi ,
    I  am trying to consuming an SAP  XI Web
    Service in Visual Studio 2005. I followd this document <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3057b5a7-99d0-2910-8f8f-f357dc4b70b5">Consume ES Workplace Enterprise Services with Microsoft .Net 2.0 and Visual Studio .Net 2005:</a>.
    While try to create a Proxy Class for the WSDL  file(XI)  using wsdl.exe tool it shows the error  like this "There is an error in XML document -Value cannot be null Parameter name:name".
    If there  any way to pass the parameter  through wsdl.exe tool .
    Regards,
    Malini.V

    Check for unnecessary spaces in the WSDL file. Especially in xsd:union tags.
    I had the following problem:
    <xsd:union memberTypes=" xsd:time genericTime" ...
    Correct:
    <xsd:union memberTypes="xsd:time genericTime" ...
    and WSDL.exe was able to generate the proxy class code.
    Kind regards
    Holger

  • I am trying to run my registered CS6 Design Standard programs for the first time after install. InDesign runs OK, but Illustrator and Photoshop will only run in trail mode. How do I activate those two?

    I can't get my registered versions of CS6 Photoshop and Illustrator to run in full mode. I installed CS6 Design Standard online end of June (an upgrade from CS5.5), on my old MacBook Pro. I didn't run the programs then as I was waiting on arrival of new MacBook Pro. I migrated the programs from my old MacBook to the new, and today tried to run those programs for the first time. InDesign work OK (after an initial hiccup) but Illustrator and Photoshop will only run in trial mode, and won't let me save files. My CS6 Design Standard shows with it's registration in my Adobe Account. All seems in order, but Illustrator and Photoshop won't run in registered mode. Can you please help?

    Demons1 in the future please only migrate your documents and settings.
    Please use the uninstallers to remove your current installation.  They are located in the Applications/Utilities/Adobe Installers folder.  Once the uninstall is complete you will also want to run the CC Cleaner Tool.  You can find more details at Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.
    If you need to download a fresh copy of the installation files for Creative Suite 6 you can do so at Download CS6 products.

  • I got a new laptop and downloaded iTunes, when I put new music on it for the first time, my entire music library disappeared, leaving me with only newly downloaded music in my library. My iPod still has all my old music.

    Recently, I bought a new laptop (a Lenovo), so I downloaded iTunes to it. When I bought new music from iTunes for the first time on the new computer, I went to my music library and there was no music, except for the new songs I had just bought. I have no idea what happened, I've had hundreds of songs I've bought from iTunes or downloaded from bought CDs over the years, which are all still on my iPod (nano, from 2008), and suddenly they just didn't seem to exist. I have yet to access the iTunes account on my previous laptop to see if my music is still there, but I would assume yes. When I went to sync my iPod to my iTunes to at least get the new songs to the iPod (so that my complete library can be on at least one device), I realized that in order to sync my iPod to my iTunes, I would be deleting all my old music and replacing it with the new. So now, I only have a few new songs on my laptop's iTunes, and only my old songs on my iPod. In both cases I paid for all the music, so I don't want to just delete any of it. Is there any way to fix this?

    Also-I tried to use my backup hard drive, but I wasn't able to drag/transfer/send/move any of my muic files onto my iTouch when the iTouch was connected to my computer.  I can't figure out why it won't let me do that. 
    The only thing I can see when I open my iTouch on my computer is my file with photos.  I can't see videos, music, or anything else.  What's going on?

  • I live in Italy and I am trying to buy an App, for the first time with my iphone4...in the past only downloaded free apps free apps; I have a US Visa card and it is not accepted by italian Itunes...what can I do to do my purchases?

    I live in Italy and I am trying to buy an App, for the first time with my iphone4...in the past only downloaded free apps free apps; I have a US Visa card and it is not accepted by italian Itunes...what can I do to do my purchases?

    On the apple website that is correct i beleive.... but i have an italian american express and am able to purchase stuff here in the US.
    I mean, i dont think it really matters

  • I plugged my iphone in for the first time to my itunes account and it now reads that this device is already  associated with an apple id.  what does that mean.  i only have one apple id. and do i chose cancel or transfer?

    i plugged my iphone in for the first time to my itunes account and it now reads that this device is already  associated with an apple id.  what does that mean.  i only have one apple id. and do i chose cancel or transfer?

    Hello there, Shellywms09.
    The following Knowledge Base article points out why you are receiving that message on your iPad:
    iTunes Store: Associating a device or computer to your Apple ID
    http://support.apple.com/kb/ht4627
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro

  • Do I need a different apple id for each device? I have two iPads and an iPod but can only purchase things on the first one. When I go to verify the questions they say they are wrong.

    Do I need a different apple ID for each device I have? I have two iPads and an iPod but I can only make purchases with the first one I purchased. It tells me the security questions are wrong but I know they are not because I wrote them down. I have also reset them and my password once. Please help if you can

    You can not login into iTunes or the App Store using VPP credentials. You must purchase all apps/book/etc.  from the VPP website. Then you can redeem the codes thru itunes/app store or import the codes thru apple configurator. Here is the url for the VPP website: https://volume.itunes.apple.com/WebObjects/MZFinance.woa/wa/login?cc=us
    (It will not affect any of the apps you already have but the id can only be used for VPP.)
    Cheers,    
             Alec

  • Is there a way to create a fade only for the first loop?

    I have a loop (Modern Guitar Rock 04), which I've extended out so it repeats four times. I select the Fade Tool and X-Fade for drag. I then drag just in front of the loop and onto it, which creates a fade. However, this also creates fades at the beginning of the repeating loops. Is there a way to create a fade only for the first loop?

    The loop function always repeats the same region so of course the fade is also copied. So option+drag the original region to make a (non clone) copy, fade the first region and loop the second one (which you just copied).

  • I bought a MAC for the first time and plugged my Itouch into it to download my music on it, but is says The iPod "Rick's IPOD" is synced with another iTunes library. An iPod can be synced with only one iTunes library at a time. What should I do?

    I bought a MAC for the first time and plugged my Itouch into it to download my music on it, but is says The iPod “Rick's IPOD” is synced with another iTunes library. An iPod can be synced with only one iTunes library at a time. What should I do?

    Same as you would if you bought a pc; copy everything from your old computer to your new one.  Then you can just sync everything from the new computer, as you did with the old one.

  • Master Page: Alternatives (Subform Set) works only for the first page

    Hi everybody!
    I have bumped into a very weird problem with ADOBE Forms:
    When I create an 'Alternative' in a Context area and then place it on a Master Page, it works only for the first page. On the rest of pages it always show the 'TRUE' subform, regardless of the condition (which is not changed, of course). Absolutely the same Alternative works perfectly in a Content area for all pages.
    Has anybody seen something like this? Any ideas why?
    Thank you!

    This happens because of the processing of the form.
    You can see this here:
    LiveCycle ES2 * Adobe LiveCycle Designer ES2
    You have to put a own variable, which is set with the value you want in the very beginning.
    I know, it is not that logical in the first moment, but it makes sense.
    Regards
    Florian
    PS: This space SAP Interactive Forms by Adobe is the correct for questions like that

Maybe you are looking for

  • Creating a Custom SAPscript Editor

    I am trying to create a custom SAPscript editor and I'm having problems. We are on SAP 640. We use texts to store notes against invoices recording details of the dunning process. Our users have ask if we can tailor the notes so that users can insert

  • SetDataSource function taking too much time !

    Hi, We are using Crystal reports 2008 for developing our applications in Visual Studio .Net 2005 widows application.We are using Crystal viewer ActiveX control in our windows application for displaying the reports. The datasource we are using is stro

  • Not Reading ipod

    I have a problem with my mini ipod. I went to update it with songs so when i plugged to ipod in to update. i get this message saying " attempting to copy to the disk my name failed The disk could not be read from or written to." Everything is updated

  • [Castor] Problem with the namespace

    Hello, I'm using Castor for generate XML file with Java Object(generate with Castor with XSD). I have a problem with the syntax and particulary with the reference of the namespace. I obtain this : <?xml version="1.0" encoding="UTF-8"?> <TEST ID=""> <

  • Using wildcards on a UDA

    Hi everyone, I am trying to retreive members with a certain UDA pattern and I would like to know if it's possible to do so with <MATCH. The tech reference shows it being used on membername and alias, but not UDAs. Is this possible and what would the