Finder exception problem

I'm having a problem using EJB2.0, under JBoss using the IntelliJ IDEA as my IDE.
I'm getting a strange error when I try to login after making some changes to add a new enterprise java bean. I created the bean's Local and HomeLocal interfaces, abstract class project history bean, and added the entity and query tags to ejb-jar.xml deployment descriptor file. I have also added the table to the instance of the database on my home machine.
For some strange reason, when I now try to login I get a finder exception from the user.findByPrimaryKey. This is a database table/EJB that has beeen part of the application forever. I have used the debug faculty to check the line where this method is called and it does contain the correct value for the method argument. The appropriate record is in the table, and the database and code have been updated with all recent changes. Any suggestions on where I should go from here to debug this? Have I missed some necessary step as far as adding a new EKB is concerned? Here's the error message and stack trace:
19:57:14,312 ERROR [LogInterceptor] RuntimeException in method: public abstract lingonet.user.UserLocal lingonet.user.UserHomeLocal.findByPrimaryKey(java.lang.String) throws javax.ejb.FinderException:
java.lang.IllegalStateException: createBeanClassInstanceCommand == null
     at org.jboss.ejb.plugins.cmp.jdbc.JDBCStoreManager.createBeanClassInstance(JDBCStoreManager.java:560)
     at org.jboss.ejb.plugins.CMPPersistenceManager.createBeanClassInstance(CMPPersistenceManager.java:124)
     at org.jboss.ejb.EntityContainer.createBeanClassInstance(EntityContainer.java:224)
     at org.jboss.ejb.plugins.AbstractInstancePool.get(AbstractInstancePool.java:146)
     at org.jboss.ejb.plugins.EntityInstanceInterceptor.invokeHome(EntityInstanceInterceptor.java:96)
     at org.jboss.ejb.plugins.EntityLockInterceptor.invokeHome(EntityLockInterceptor.java:61)
     at org.jboss.ejb.plugins.EntityCreationInterceptor.invokeHome(EntityCreationInterceptor.java:28)
     at org.jboss.ejb.plugins.CallValidationInterceptor.invokeHome(CallValidationInterceptor.java:41)
     at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:109)
     at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:313)
     at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:126)
     at org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:99)
     at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:121)
     at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:93)
     at org.jboss.ejb.EntityContainer.internalInvokeHome(EntityContainer.java:508)
     at org.jboss.ejb.Container.invoke(Container.java:891)
     at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invokeHome(BaseLocalProxyFactory.java:342)
     at org.jboss.ejb.plugins.local.LocalHomeProxy.invoke(LocalHomeProxy.java:118)
     at $Proxy71.findByPrimaryKey(Unknown Source)
     at lingonet.beans.WebUserBean.login(WebUserBean.java:95)
     at lingonet.beans.WebUserBean.<init>(WebUserBean.java:78)
     at lingonet.LoginServlet.process(LoginServlet.java:40)
     at lingonet.LoginServlet.doGet(LoginServlet.java:29)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
     at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:186)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
     at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
     at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:66)
     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
     at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:150)
     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
     at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:54)
     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
     at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
     at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
     at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
     at java.lang.Thread.run(Thread.java:619)

Hi
It's working on WLS6.0 SP2 very well.
Macsym
PenFriend <[email protected]> wrote:
Macsym,
this isa known issue Cr06867. As a workaround chamge the name of the
methods to not start with
a find.
macsym wrote:
I've tried to re-run it. In my
classpath=.;.\lib\weblogic_sp.jar;.\lib\weblogic.jar;
but the problem still here. I'v just changed examples under WLS totest it.
BTW I using WLS6.1 SP1.
Thanks any way.
Macsym
Rob Woollen <rob@trebor_nelloow.moc> wrote:
It looks like you need to re-run weblogic.ejbc. Also make sure that
your classes are only
in the ejb-jar file and not the server's classpath.
Finally, what version of WLS are you using? It shouldn't be throwing
an AssertionError for
this.
-- Rob
macsym wrote:
Hi
I met a very funny problem. when I try to deploy a entity BMP.(compilewas ok).
The bean have a method called findSubElements(this is not a findermethod). I
got the a exception:
weblogic.utils.AssertionError: ***** ASSERTION FAILED *****[ ejbFindXXXmethod
for 'findSubElements(java.lang.String,jav
a.lang.String,java.lang.String)' not found on class 'entity.XXXEntityBean_sgz73u_Impl'.
what should I do to fix that ?
Thanks for help.

Similar Messages

  • How do I find out what program / file is using 100 GB of space on my Hard drive?  Once I find the problem  how do I delete the specific files to increase GB of space?

    How do I find out what program / file is using 100 GB of space on my Hard drive?  Once I find the problem  how do I delete the specific files to increase GB of space?

    Use OmniDiskSweeper
    Once you find file, it can be deleted from within OmniDiskSweeper
    Allan

  • How come my external hard drive is no longer visible in finder even after ticking it in preferences? it shows in the disk utilities but does not allow me to find a problem or fix the problem? Please help.

    it shows in the disk utilities but does not allow me to find a problem or fix the problem? Please help. also my external hard drive is a seagate free agent go, 500GB. it is visible on my tv but has no files in it… i'm scared i've lost everything?

    Honestly i cannot remember sorry, i got it like 5 maybe 6 yrs ago and just started downloading things to it as the memory on the computer started filling up and when i wanted to see photos/videos on my TV.
    My wife did tell me after i had written this post that she did try and record TV to it as it was plugged in. I think by doing so somehow has deleted everything.   It reads on my TV yet has no files in it but won't show up on my computer. hope this helps.
    Starting to think it is going to cost more to retrieve files on it than it will be to buy a newer and larger one.

  • How do I fix a FINDER crash problem in 10.6.8

    I recently, in the last 10 days, started having a FINDER crash problem with my iMac 24" (iMac9,1) Intel Core 2 Duo 3.06 GHz computer.
    I have 4 GB of ram installed, no external hard disks installed.
    It seems to crash when I have five or more applications open, but it is not consistant.
    When it freezes or crashes, I get the spinning ball. I open the Force Quit Window with comand, option, escape and it show Finder not responding.
    I click on Finder and tell it to relaunch. It does nothing. At that point I cannot even go to the APPLE icon on the dock and do a shutdown or restart.
    From that point on, I have to press and hold the START button to shut the computer down.
    I have checked the hard disk integrity with Disk Utility after starting on the Snow Leopard 1.6 install disk. everything shows good.
    I have repaired permissions using the same application. I then restart the computer and log back in.
    I have used Onyx for Snow Leopard version 2.3.1 to do some maintenance routines.
    I have checked the S.M.A.R.T. status of the hard drive and it passes.
    I have verified that the Daily, Weekly, Monthly routines have been run. They have.
    I have executed the Cleaning tab to include the following cache files:
    System: Boot
                   International Preferences
                   QuickTime Components
                   Audio Components
                   Other Components
    User Cache: Applications
                             Prefernces of System Panels
                             Java & Applets Java
                             Desktop Background
                             International Preferences
                             Dock Icons
                             ColorSync
                             QuickLook
                             Temporary Items
    Internet Cache: Browser Cache
                                Download Cache
                                Browser History
                                Recent Searches
                                Web Page Previews
    Fonts Cache:  System and User
    Logs Cache: Log Files
                            System Archive Logs
                            User Diagnostic Reports
                            System Diagnostic Reports
                            Mobile Devices CrashReporter
    Misc. Cache: Recent Items
                            Recent conversion of Calculator
                            Obsolete Items
                            QuickTime Content Guide
    Under Maintenance Items:
    Rebuild:
                   LaunchServices
                   dyld's shared cache
    Short of taking this computer, packing it up, and hauling it down to the Apple Store for the 'Genius' to poke around in it, I am at a brick
    wall as to what to do next. (I am useing this same computer to enter this message).
    Here's hoping someone on the forum will have an answer.
    Douglas J. Parker
    P.S. Does APPLE Technicians ever read these discussion questions and interject their 'Expert' knowledge?

    /Library/Preferences is where you will find that file.
    #2 - yes

  • Problems w/ver 27 and xp sp3; should I give up on xp and go to Win 7 PRO 64bit where I find no problems?

    OS = Win XP SP3
    Cannot change/edit location of downloads; the only download available is DOWNLOADS
    This ver of MF takes about 15 seconds to load NASCAR website
    After I select any website to load a small, rotating circle appears in the upper-left of the screen and remains until, finally, the page has completely loaded.
    I do not have this problem w/win 7 pro 64 bit
    Installing MF 4 solves this problem on the Win XP SP3 OS.
    I do not find this problem on older laptops running the same XP OS.

    Have you done any routine maintenance on that computer recently?
    What happens if you use a different browser on that computer?
    Are you running the most up-to-date version of Firefox on that computer?
    What do you mean by MF4?

  • Network slowdowns when migrates to NX1k - TAC aren't finding the problem.

    Hi,
    I have an opened TAC Service Request (Case), and we aren't finding the problem.
    Any help, tip, will be helpfull. Thanks.
    I attached pdf with all information about the topology, tests, environment...
    Problem information
    The network slowdowns starts to happen when more or less the eighth virtual machine is migrated from the DVS VMware to NX1k.
    Ping tests were done from 192.168.39.151 to 192.168.39.9, but the network slowdowns happens from ping of any virtual machine of any hardware to any virtual machine inside the HP hardware DL580 G7, any nic below:
    NetXen HP NV375i Integrated Quad Port Multifunction Gigabit Server Adapter.
    Broadcom Corporation NC382T PCI Express Dual Port Multifunction Gigabit Server Adapter.
    NetXen HP NC522SFP Dual Port 10Gbe Server Adapter.
    Tests were done with a nic at a time, and the network slowdowns happened with all.
    All the hosts and virtual machines are in the same subnet and the same cluster inside the VMWare.
    Best Regards.

    Hi:
    You may also want to post your question in the HP Business Support Forum -- DL Servers section.
    http://h30499.www3.hp.com/t5/ProLiant-Servers-ML-DL-SL/bd-p/itrc-264#.Uf-zltco7Gg

  • Finding exception with the read-write-backing-map-scheme configuration.

    Finding exception with the <read-write-backing-map-scheme> configuration, that is setup against a simple database cache store implementation. The class SimpleCacheEventStoreImpl implements CacheStore interface.
    Exception in thread "main" java.lang.UnsupportedOperationException: configureCache: read-write-backing-map-scheme
         at com.tangosol.net.DefaultConfigurableCacheFactory.configureCache(DefaultConfigurableCacheFactory.java:995)
         at com.tangosol.net.DefaultConfigurableCacheFactory.ensureCache(DefaultConfigurableCacheFactory.java:277)
         at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:689)
         at com.tangosol.net.CacheFactory.getCache(CacheFactory.java:667)
         at Sample.SimpleEventStoreConsumer.main(SimpleEventStoreConsumer.java:10)
    The cache store is interfaced to the program SimpleEventStoreConsumer(where I have a put and get operation) through the following cache configuration descriptor. On running the SimpleEventStoreConsumer, the exception happens on trying to get the Named cache from the cache factory
    <cache-config>
         <caching-scheme-mapping>
              <cache-mapping>
                   <cache-name>Evt*</cache-name>
                   <scheme-name>SampleDatabaseScheme</scheme-name>
              </cache-mapping>
         </caching-scheme-mapping>
         <caching-schemes>
              <read-write-backing-map-scheme>
                   <scheme-name>SampleDatabaseScheme</scheme-name>
                   <internal-cache-scheme>
                        <local-scheme>
                             <scheme-ref>SampleMemoryScheme</scheme-ref>
                        </local-scheme>
                   </internal-cache-scheme>
                   <cachestore-scheme>
                        <class-scheme>
                             <class-name>com.emc.srm.cachestore.SimpleCacheEventStoreImpl</class-name>
                             <init-params>
                                  <init-param>
                                       <param-type>java.lang.String</param-type>
                                       <param-value>{cache-name}</param-value>
                                  </init-param>
                             </init-params>
                        </class-scheme>
                   </cachestore-scheme>
              </read-write-backing-map-scheme>
              <local-scheme>
                   <scheme-name>SampleMemoryScheme</scheme-name>
              </local-scheme>
         </caching-schemes>
    </cache-config>

    you are missing <backing-map-scheme>. Do like following:
    <caching-schemes>
              <distributed-scheme>
                   <scheme-name>distributed-scheme</scheme-name>
                   <service-name>DistributedQueryCache</service-name>
                   <backing-map-scheme>
                        <read-write-backing-map-scheme>
                             <scheme-ref>rw-bm</scheme-ref>
                        </read-write-backing-map-scheme>
                   </backing-map-scheme>
    <autostart>true</autostart>
              </distributed-scheme>
              <read-write-backing-map-scheme>
                   <scheme-name>rw-bm</scheme-name>
    <internal-cache-scheme>
         <local-scheme>
                        </local-scheme>
                   </internal-cache-scheme>               
              </read-write-backing-map-scheme>
    </caching-schemes>

  • How to find possible problem clip(s)

    My current project has over 500clips. The majority are video (~400) with some cross fades. There are a few titles (9) ,some stills and some audio tracks. Not enough FX to cause problems I think.
    Somewhere in there there seems to be a clip (or more than one) that causes the RAM to fill up more than other projects and the fan to run at high speed. Had the constant fan running issue in the previous version (10.0.7) but that cleared up in 10.0.8. This happens as soon as I launch FCPX with that project selected. The other problem is that as my RAM fills up the system response slows down. Even my mouse movements show on the screen as jerky and inaccurate.
    I've deleted preferences with Preference Manager and only have the one project visible to FCP - that doesn't change anything. Also tried duplicating the project and deleting render files - again no improvement.
    So my question is do any of you have any suggestions? I'd love to stop the high speed fan running all the time. If this is an issue with a bad clip (or several) is there any way I can find the problem short of going through and removing them one by one until I either find the problem or go crazy trying?
    MBP, 10.7.5, i7, 8 gb RAM
    Thanks.

    Thanks for the rapid response Tom.
    The project is 720p, 59.94 fps
    Codecs: AAC, H.264 (GoPro footage) and H.264, Linear PCM (Panasonic HDC-TM700 footage)
    Audio: 48 kHz from GoPro and Panasonic cameras, 44.1 kHz recorded music. Audio output channels: 2.  Audio Configuration: 1 Stereo
    There are a couple of compound clips that don't show any codecs. I have noticed a couple of other clips (there may be more) that play fine but any codecs when displaying info.
    My knowledge isn't deep enough to know if these numbers answer your question or if these specs are ok. The problem started before I added any still images so I suspect they're innocent.

  • I meet a lot of 3G signal when a call signal disappears 3G! I read the manuals and anything I find the problem! I do so with other brands and other cell does not, the same goes when I receive a call!

    I meet a lot of 3G signal when a call signal disappears 3G! I read the manuals and anything I find the problem! I do so with other brands and other cell does not, the same goes when I receive a call!

    Who is your carrier?  Are you actually on 3G?
    Do you have 3G turned on or off?  Settings > General > Network > Enable 3G

  • Hi, Have tried searching the bookmarks database. Can't find my problem addressed :9

    Hi, Have tried searching the database. Can't find my problem addressed. I have lost one folder in my bookmarks and all of its contents. Went to all of the sites in that folder and downloaded them again. Some of the new downloads don't show up in the bookmarks list even though it says, site is bookmarked? What do I need to do to see all of the contents in that folder, please?
    Thanks.

    Thank you so much for trying to help me. So sorry that I am computer illiterate :)
    Using your first alternate suggestion I closed down the computer completely.
    When reopened it was the same.
    Downloaded the Maintenance Add-On and did All>Execute. Some changes were made but the problem remained the same.
    Following your second suggestion I deleted the places.squite folder and reopened FF. The problem remains...
    For your information - don't know if it matters, both my bookmarks folder and my bookmarksbackups folder are empty. Screen shot attached.
    Oooff - now I am getting upload invalid and I don't know why! I saved them both as .jpg
    So sorry to be thick! Can you help?
    Thank you.

  • Aperture 3: After sending my book for printing to Apple the Apple Store told me that my text and the background have the same color and they couldn't print the book. But I couldn't find any problem in the preview. How could I find the problem pages?

    Aperture 3: After sending my book for printing to Apple the Apple Store told me that my text and the background have the same color and they couldn't print the book. But I couldn't find any problem in the preview. How could I find the pages where the problems are? Or otherwise, why doesn't print Apple the book how it is. Idon't need the text which couldn'be seen.

    The forum is for Logic Pro users.. I will ask the moderators to move it to a more appropriate forum for your question/subject
    Cheers..

  • I don't know who will see this, but i'm writing this here, because i cound't find any problem report places anywhere.

    I don't know who will see this, but i'm writing this here, because i cound't find any problem report places anywhere. Your site are too confusing. I just wanna say that css3 isn't working properly in mozilla. It lags. Other transitions doesn't work at all. Check this site http://css3exp.com/moon/ on your and on chrome browser to see differences. Could you write me a reply to this... question...? [email protected]

    It appears you have accidentally subscribed to a community and were getting e-mails for all related posts. I have removed the subscriptions, so you should be getting no more e-mails. Thank you for bringing this to our attention. I'm sorry you recieved so many e-mails you did not want.

  • Windows cannot find (null) problem - firefox wont start? help!

    ive just got a 'windows cannot find (null)' problem when staritng Firefox; being using it for years no problem but cannot open it now. tried removing and reinstalling, still get the message.
    any ideas what I can do??
    == This happened ==
    Every time Firefox opened
    == 20 June 2010 ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    Yesterday after posting my problem I consulted a computer programmer. He advised me to follow the pathway C:\\users|richard\....... from Explorer to the extension and delete it. Worst case scenario would be to uninstall and reinstall Firefox. I deleted it and the unresponsive script and warning disappeared without any other complications.

  • Receiving this message"Can't create the file "highlighter_welcome_header.jpg." The disk may be damaged or full, or you may not have sufficient access privileges." I have enough storage how do I find the problem?

    Can’t create the file “highlighter_welcome_header.jpg.” The disk may be damaged or full, or you may not have sufficient access privileges.
    How do I find the problem? Disk is not full.

    Try the following:
    delete the iWeb preference files, com.apple.iWeb.plist and com.apple.iWeb.plist.lockfile, that resides in your Home() /Library/Preferences folder.
    go to your Home()/Library/Caches/com.apple.iWeb folder and delete its contents.
    Click to view full size
    launch iWeb and try again.
    If that doesn't help continue with:
    move the domain file from your Home/Library/Application Support/iWeb folder to the Desktop.
    launch iWeb, create a new test site, save the new domain file and close iWeb.
    go to the your Home/Library/Application Support/iWeb folder and delete the new domain file.
    move your original domain file from the Desktop to the iWeb folder.
    launch iWeb and try again.
    OT

  • Exception:Problem building schema

    Hi all,
    I want to make a web service call to a service deployed in weblogic, I copied the wsdl to a local file and I created a PartnerLink referring to the wsdl in my local file. I put an Invoke action, create an input variable, everything work fine. However when I try to explore the input variable I got exception:Problem building schema.
    Is there anything wrong with the WSDL? I've validate it and it was ok.
    Thanks in advance,
    santoso
    Here is the WSDL of the service:
    <?xml version='1.0' encoding='UTF-8'?>
    <definitions name="ProposalWSServiceDefinitions" targetNamespace="http://com/my/ws" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:s0="http://com/my/ws" xmlns:s1="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://www.my.com/opl" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://com/my/ws" xmlns:s1="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.my.com/opl">
    <complexType name="Proposal">
    <sequence>
    <element name="id" type="int"/>
    <element name="title" type="string"/>
    <element name="creator" type="string"/>
    <element name="status" type="string"/>
    <element name="customerId" type="int"/>
    </sequence>
    </complexType>
    <element name="ProposalData" type="tns:Proposal"/>
    </schema>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://com/my/ws" xmlns:s0="http://com/my/ws" xmlns:s1="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="insertProposal">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="proposal" type="opl:Proposal" xmlns:opl="http://www.my.com/opl"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    </types>
    <message name="insertProposal">
    <part element="s0:insertProposal" name="parameters"/>
    </message>
    <portType name="ProposalWS">
    <operation name="insertProposal" parameterOrder="parameters">
    <input message="s0:insertProposal"/>
    </operation>
    </portType>
    <binding name="ProposalWSServiceSoapBinding" type="s0:ProposalWS">
    <s1:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="insertProposal">
    <s1:operation soapAction="" style="document"/>
    <input>
    <s1:body parts="parameters" use="literal"/>
    </input>
    </operation>
    </binding>
    <service name="ProposalWSService">
    <port binding="s0:ProposalWSServiceSoapBinding" name="ProposalWSSoapPort">
    <s1:address location="http://172.16.208.45:7001/SBSWebService/ProposalWS"/>
    </port>
    </service>
    </definitions>

    I've solved it just by upgrading to BPEL 10.1.3.1 (was 10.1.2.0)

Maybe you are looking for

  • Export excel to Pivot table issue

    Hello Folks, Our Business user has a problem with the exporting to excel as Pivot table. Now, the user is trying to do, List - Export - Spreadsheet, and she is getting "Save XXL list object in  SAPoffice". How can we get the option to save in "Excel

  • RFC_ERROR_SYSTEM_FAILURE with SAP ECC 6 Unicode

    Hi All, I am using BizTalk 2006 R2, Microsoft BizTalk Adapter v2.0 for mySAP Business Suite SP1 & SQL Server 2005 as a Database server. In past we developed Orchestrations which were communicating with SAP version 4.7. Currently SAP has been upgraded

  • Attaching LOV to a field using Personalizatin

    Hi, I am new to OAF.I have created an Employee OAF page in JDeveloper (path:xxemployee/oracle/apps/sqlap/employee/webui/EmployeePage) and deployed into Apps Instance R12. I want to attach an LOV to Employee field.I want to create a new LOV instead of

  • Regular Expressions and phone number

    HI, there is a column "Phone_number Varchar2" Data containing : 123-89556-6852 (123)-857-965 123-(5846)5648 I want to display that 123895566852 123857965 12358465648 Pls help by Regular Expressions. Edited by: YLN on Feb 17, 2010 3:59 PM

  • How do I transfer EDITED clips from one IMovie to another

    I have tried to transfer edited clips (with original sound) from one IMovie to another. However, the system transfered the original clips instead of the edited clips. Does anyone have any tips on how to transfer the edited clips only and not the orig