Problem following bpelx:append

In my bpel .wsdl file, I have imported an xsd file. I have created an element <panel-member> from a type in the xsd file. There is an array of this type as part of a web service method message I want to invoke.
I have gone through an array of elements, setting the values of the <panel-member> element, and then appending each to the appropriate place in the invoke message. I have checked the element tags and they are all fine.
When the method is invoked, I get an error message stating that <panel-member> is an invalid element.
The XSD defines panel-member as:
<complexType name="panel-member">
<sequence>
<element name="id" type="string" />
<element name="name" type="string" />
<element name="role" type="string" />
</sequence>
</complexType>
and the type in the bpel .wsdl file is defined as:
<element name="panelMemberHolder">
<complexType>
<sequence>
<element name="panel-member" type="pref:panel-member" />
</sequence>
</complexType>
</element>
Panel is defined as:
<complexType name="panel">
- <sequence>
<element name="panel-rules" type="tns:panel-rules" />
<element maxOccurs="unbounded" minOccurs="0" name="panel-member" type="tns:panel-member" />
</sequence>
</complexType>
Why might I be getting a message telling me that panel-member is not a part of panel?

this is the error message:
<remoteFault>
<part name="code" >
<code>Server.userException</code>
</part>
<part name="summary" >
<summary>when invoking endpointAddress 'http://covarm.tvu.ac.uk/eCoWS/services/eCoWSSOAP', org.xml.sax.SAXException: Invalid element in uk.ac.tvu.covarm.Panel - panel-member</summary>
</part>
<part name="detail" >
<detail>AxisFault faultCode: {http://xml.apache.org/axis/}Server.userException faultSubcode: faultString: org.xml.sax.SAXException: Invalid element in uk.ac.tvu.covarm.Panel - panel-member faultActor: faultNode: faultDetail: {http://xml.apache.org/axis/}stackTrace:org.xml.sax.SAXException: Invalid element in uk.ac.tvu.covarm.Panel - panel-member at org.apache.axis.encoding.ser.BeanDeserializer.onStartChild(BeanDeserializer.java:252) at org.apache.axis.encoding.DeserializationContextImpl.startElement(DeserializationContextImpl.java:893) at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:200) at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:684) at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:207) at org.apache.axis.message.RPCElement.getParams(RPCElement.java:265) at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:190) at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:276) at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:71) at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:156) at org.apache.axis.SimpleChain.invoke(SimpleChain.java:126) at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:437) at org.apache.axis.server.AxisServer.invoke(AxisServer.java:316) at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:701) at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:335) at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148) at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:199) at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:282) at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:744) at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:674) at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:866) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684) at java.lang.Thread.run(Unknown Source) </detail>
</part>
</remoteFault>
and this is the input variable:
<updateEvent_updateEvent_InputVariable>
<part name="updateEventRequest" >
<updateEventRequest>
<id>VALIDATION_EVENT1159872786812</id>
<name>CCU Validation Event</name>
<description>An event involving internal and external participants for the purpose of course validation.</description>
<stage>Stage 3</stage>
<institution>Covarm City University</institution>
<url/>
<final-date/>
<location/>
<manager>
<id>fkafka</id>
<name>Nothing</name>
<role>MANAGER</role>
</manager>
<feedback-list/>
<minute/>
<panel>
<panel-rules>
<rule>
<role>CHAIR</role>
<maps-to>CHAIR</maps-to>
<required-min>1</required-min>
<required-max>1</required-max>
</rule>
<rule>
<role>INTERNAL</role>
<maps-to>INTERNAL</maps-to>
<required-min>2</required-min>
<required-max>4</required-max>
</rule>
<rule>
<role>EXTERNAL</role>
<maps-to>EXTERNAL</maps-to>
<required-min>1</required-min>
<required-max>2</required-max>
</rule>
</panel-rules>
<panel-member>
<id>ltolstoy</id>
<name>Leo Tolstoy</name>
<role>CHAIR</role>
</panel-member>
<panel-member>
<id>sfitzger</id>
<name>F. Scott Fitzgerald</name>
<role>CHAIR</role>
</panel-member>
<panel-member>
<id>fkafka</id>
<name>Franz Kafka</name>
<role>INTERNAL</role>
</panel-member>
<panel-member>
<id>jausten</id>
<name>Jane Austen</name>
<role>INTERNAL</role>
</panel-member>
<panel-member>
<id>jcooper</id>
<name>James Cooper</name>
<role>INTERNAL</role>
</panel-member>
<panel-member>
<id>jstein</id>
<name>John Steinbeck</name>
<role>INTERNAL</role>
</panel-member>
<panel-member>
<id>jlondon</id>
<name>Jack London</name>
<role>INTERNAL</role>
</panel-member>
<panel-member>
<id>cdickens</id>
<name>Charles Dickens</name>
<role>EXTERNAL</role>
</panel-member>
<panel-member>
<id>cdoyle</id>
<name>Arthur Conan Doyle</name>
<role>EXTERNAL</role>
</panel-member>
<panel-member>
<id>istone</id>
<name>Irving Stone</name>
<role>EXTERNAL</role>
</panel-member>
</panel>
</updateEventRequest>
</part>
</updateEvent_updateEvent_InputVariable>

Similar Messages

  • ClassCastException using bpelx:append

    When attempting to model sample 126 Data Aggregator I receive a ClassCastException. The snippet of bpel code I'm using looks like this:
    <assign name="Assign_1">
    <copy>
              <from expression="string('one')"/>
              <to variable="outputVariable"
              part="payload"
              query="/ns1:users/ns1:user"/>
    </copy>
         <bpelx:append>
              <bpelx:from expression="string('two')"/>
              <bpelx:to variable="outputVariable"
              part="payload"
              query="/ns1:users/ns1:user"/>
         </bpelx:append>
    I've tried variations of the query to include "/ns1:users" and also one with no query element. They all result in the exception.
    element user is unbounded within users. It's definition looks like:
    <xsd:element name="users"
         type="iC.MMIS.WS.tst:usersType"/>
    <xsd:complexType name="usersType">
         <xsd:sequence>
         <xsd:element name="user"
              type="iC.MMIS.WS.tst:userCnType"
              minOccurs="0"
              maxOccurs="unbounded"/>
         </xsd:sequence>
    </xsd:complexType>
    <xsd:simpleType name="userCnType">
         <xsd:restriction base="xsd:string">
         </xsd:restriction>
    </xsd:simpleType>
    Exception follows:
    05/08/14 21:36:53 java.lang.ClassCastException
    05/08/14 21:36:53      at com.collaxa.cube.xml.dom.DOMUtil.addNodes(DOMUtil.java:1598)
    05/08/14 21:36:53      at com.collaxa.cube.engine.ext.wmp.BPELAssignWMP.performAddNodes(BPELAssignWMP.java:840)
    05/08/14 21:36:53      at com.collaxa.cube.engine.ext.wmp.BPELAssignWMP.__executeStatements(BPELAssignWMP.java:191)
    05/08/14 21:36:53      at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:179)
    05/08/14 21:36:53      at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3398)
    05/08/14 21:36:53      at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1905)
    05/08/14 21:36:53      at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(PerformMessageHandler.java:75)
    05/08/14 21:36:53      at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:100)
    05/08/14 21:36:53      at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:185)
    05/08/14 21:36:53      at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5412)
    05/08/14 21:36:53      at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1300)
    05/08/14 21:36:53      at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.createAndInvoke(CubeEngineBean.java:117)
    05/08/14 21:36:53      at com.collaxa.cube.engine.ejb.impl.CubeEngineBean.syncCreateAndInvoke(CubeEngineBean.java:146)
    05/08/14 21:36:53      at ICubeEngineLocalBean_StatelessSessionBeanWrapper0.syncCreateAndInvoke(ICubeEngineLocalBean_StatelessSessionBeanWrapper0.java:486)
    05/08/14 21:36:53      at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequestAnyType(DeliveryHandler.java:493)
    05/08/14 21:36:53      at com.collaxa.cube.engine.delivery.DeliveryHandler.initialRequest(DeliveryHandler.java:426)
    05/08/14 21:36:53      at com.collaxa.cube.engine.delivery.DeliveryHandler.request(DeliveryHandler.java:133)
    05/08/14 21:36:53      at com.collaxa.cube.ejb.impl.DeliveryBean.request(DeliveryBean.java:93)
    05/08/14 21:36:53      at IDeliveryBean_StatelessSessionBeanWrapper22.request(IDeliveryBean_StatelessSessionBeanWrapper22.java:288)
    05/08/14 21:36:53      at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:101)
    05/08/14 21:36:53      at com.oracle.bpel.client.delivery.DeliveryService.request(DeliveryService.java:65)
    05/08/14 21:36:53      at ngDoInitiate.jspService(_ngDoInitiate.java:253)
    05/08/14 21:36:53      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    05/08/14 21:36:53      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)
    05/08/14 21:36:53      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    05/08/14 21:36:53      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    05/08/14 21:36:53      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    05/08/14 21:36:53      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
    05/08/14 21:36:53      at com.evermind.server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:121)
    05/08/14 21:36:53      at com.evermind.server.http.EvermindPageContext.include(EvermindPageContext.java:267)
    05/08/14 21:36:53      at displayProcess.jspService(_displayProcess.java:660)
    05/08/14 21:36:53      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    05/08/14 21:36:53      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)
    05/08/14 21:36:53      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    05/08/14 21:36:53      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    05/08/14 21:36:53      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    05/08/14 21:36:53      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:810)
    05/08/14 21:36:53      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
    05/08/14 21:36:53      at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:220)
    05/08/14 21:36:53      at com.collaxa.cube.fe.DomainFilter.doFilter(DomainFilter.java:152)
    05/08/14 21:36:53      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:649)
    05/08/14 21:36:53      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
    05/08/14 21:36:53      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:798)
    05/08/14 21:36:53      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:278)
    05/08/14 21:36:53      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:120)
    05/08/14 21:36:53      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    05/08/14 21:36:53      at java.lang.Thread.run(Thread.java:534)
    <2005-08-14 21:36:53,575> <ERROR> <default.collaxa.cube.xml> java.lang.ClassCastException

    That is a corner case that we did not handle properly.
    We did not automatically convert a String object into XML text node for users. That triggers that ClassCastException. We shall add that automatic conversion logic into our code. (We have opened a bug - bug # 4554032 - to track this problem down.)
    On the other hand, based on the supplied schema, your sample code may not perform your desired logic, if my guess is correct.
    Instead of:
    <assign name="Assign_1">
    <copy>
    <from expression="string('one')"/>
    <to variable="outputVariable"
    part="payload"
    query="/ns1:users/ns1:user"/>
    </copy>
    <bpelx:append>
    <bpelx:from expression="string('two')"/>
    <bpelx:to variable="outputVariable"
    part="payload"
    query="/ns1:users/ns1:user"/>
    </bpelx:append>
    Try:
    <assign>
    <bpelx:append>
    <bpelx:from expression
    = "ora:genEmptyElem('ns1:user',2)" />
    <bpelx:to variable="outputVariable" part="payload" query="/ns1:users" />
    </bpelx:append>
    <copy>
    <from expression=" 'one' " />
    <to variable="outputVariable" part="payload"
    query="/tns:users/tns:user[1]" />
    </copy>
    <copy>
    <from expression=" 'two' " />
    <to variable="outputVariable" part="payload"
    query="/tns:users/tns:user[2]" />
    </copy>
    </assign>
    If you want to know about the "genEmptyElem()" xpath function,
    please check it out
    http://localhost:9700/BPELConsole/default/domain.jsp?mode=xpath
    I hope I have answered your question.
    Regards,
    Alex Yiu

  • Compile errors using bpelx:append

    I'm getting compile errors from one particular bpelx:append. I have others earlier in the bpel code, and they seem to be passing the check.
    <bpelx:append>
    <from variable="set-panel-member" query="/client:set-panel-member"/>
    <to variable="setPanel_setPanel_InputVariable" part="setPanelRequest" query="/setPanelRequest/panel/panel-member"/>
    </bpelx:append>
    Produces:
    Error(437):
    [Error ORABPEL-10900]: xml parser error
    [Description]: in line 437 of "D:\BPEL_SANITARIUM\BPELPM\integration\jdev\jdev\mywork\Workspace\identifyPanelMembers\identifyPanelMembers.bpel", XML parsing failed because Invalid content starting with element "bpelx:append".
    [Potential fix]: Fix the invalid XML.
    <assign name="appendTheRest">
    <bpelx:append>
    <from variable="set-panel-member" query="/client:set-panel-member"/>
    <to variable="setPanel_setPanel_InputVariable" part="setPanelRequest" query="/setPanelRequest/panel/panel-member"/>
    </bpelx:append>
    </assign>
    Produces:
    Error(436):
    [Error ORABPEL-10900]: xml parser error
    [Description]: in line 436 of "D:\BPEL_SANITARIUM\BPELPM\integration\jdev\jdev\mywork\Workspace\identifyPanelMembers\identifyPanelMembers.bpel", XML parsing failed because Invalid content starting with element "assign".
    [Potential fix]: Fix the invalid XML.
    The code is contained within a Switch block:
    <switch name="Switch_4">
    <case condition="bpws:getVariableData('index') = 1">
    <bpelx:annotation>
    <bpelx:pattern>First time only
    </bpelx:pattern>
    </bpelx:annotation>
    <assign name="setFirstPanelMember">
    <copy>
    <from variable="set-panel-member" query="/client:set-panel-member"/>
    <to variable="setPanel_setPanel_InputVariable" part="setPanelRequest" query="/setPanelRequest/panel/panel-member"/>
    </copy>
    </assign>
    </case>
    <otherwise>
    <empty name="append.the.rest"/>
    <assign name="appendTheRest">
    <bpelx:append>
    <from variable="set-panel-member" query="/client:set-panel-member"/>
    <to variable="setPanel_setPanel_InputVariable" part="setPanelRequest" query="/setPanelRequest/panel/panel-member"/>
    </bpelx:append>
    </assign>
    </otherwise>
    </switch>
    Any ideas?

    We are also receiving the same error. Our process was built for a client in 10.1.2.0.2 and the GUI interface never really liked the bpelx:append statement - it always showed up as an alert/error. But it worked on 10.1.2.0.2
    Now that the client is upgrading to 10.1.3, it won't actually compile.
    Anyone know of a solution?

  • I am having the iMessage problem following the latest update but am unable to fix it following suggestions on here so far. Anybody have a different suggestion? My phone

    I am having the iMessage problem following the latest update but am unable to fix it following suggestions on here so far. Anybody have a different suggestion? My phone &amp; iPad are fine but my husbands phone is the one with the issue. I tried backing it up to my computer but for some reason it won't do that either.

    Have a look at this it might help
    http://support.apple.com/kb/TS4148

  • Bpelx:append or ora:addChildNode?

    Can anybody provide any suggestion on wether to use bpelx:append or ora:addChildNode?
    The function ora:addChildNode is documented as being deprecated, and replaced with bpelx:append. But the graphic designer (JDeveloper tooling for BPEL 10.1.2) does not seem to directly support this, and in fact does not even display the code. Since it seems to me having 'invisible' code in a BPEL process might not be such a good thing, I am leaning toward using ora:addChildNode.

    I agree, nevertheless the xpath spec clearly states that an xpath expression should not have any side effects - which this one obviously does ..
    We have fixed this blind (aka invisible) code in the next version (10.1.3.1).. So from upgrade perspective I would strongly recommend using bpelx:append
    hth clemens

  • Start Up disk problem following kernel panic-mounts but not as a boot drive

    I have a problem that I can't solve.
    Dual processor G4 with 3 hard drive, all of which are bootable drives with 10.4.7 installed:
    A- my primary boot drive - internal SCSI drive (Adaptec PowerDomain 2930U PCI card);
    B - internal hard drive that came with the G4; and
    C - external Firewire hard drive
    Recently, I booted into my B drive and it locked up after it went into sleep mode. On reboot, I experienced a number of kernel panic messages, prompting me to restart my computer.
    PROBLEM: Since that time, I have not been able to get my A drive to once again be the Startup Disk.
    Diagnostic steps that I have performed:
    i. I have run and re-run Disk Warrior from a bootable CD and the A drive as well as the other 2 hard drives mount and are "repaired" by DiskWarrior.
    ii. TechTools Pro shows no hardware problems and whatever glitches it has found were repaired.
    iii. Disk Utilities consistently returns "Volume passed verification."
    iv. Zapped the PRAM
    The A drive does mount and is accessible whenever either the B drive or the C drive is the bootable drive.
    System Preferences/Startup Disk lists the A drive as a candidate whenever either the B drive or the C drive is the bootable drive. However, when the A drive is selected in System Preferences, on reboot, it doesn't become the boot drive.
    I have tried to restart and hold the "C" key down so that I might possibly be able to select the boot drive from A, B or C. But the C key method doesn't produce the intended result, only reverting back to the boot drive in power prior to the reboot. That occurs whether the boot drive is B or C.
    At that stage, rightfully or wrongfully, since the problem persisted whether the B or C drives were the startup disk I concluded that the problem could be hardware related and not software related.
    On one of the reboots following the kernel panics, a Crash Report was produced - the verbiage
    which is code related and so far above my knowledge and experience that it is incomprehensible to me. I can post it separately if helpful but it won't fit in this email message due to restrictions on length of messages.
    I haven't had a kernel panic following any of the last 50+ restarts that have accompanied my attempted diagnostics.
    Finally, I ran the Apple Hardware Test, version 1.2.6, that came with my G4. First, I removed all peripherals except the monitor, keyboard and mouse (plugged into the keyboard), the Adaptec SCSI card, and a 3rd party FW/USB2 PCI card (OrangeLink+). I ran the Extended Test and an error code was generated during the logic board test: Error Code fire/5/2
    That gave me some hope. I next removed the 3rd party FW/USB2 PCI card (OrangeLink+) and re-ran the Apple Hardware Test and no error were reported. Both the logic board and memory passed. I ran the extended test twice, each time no error.
    Ah, did that solve my problem? I rebooted and I still cannot get my A drive to be the Startup Disk.
    Next, I ran the Rember software (a GUI app for Memtest) and the RAM checked out as fine.
    At this stage I don't have a clue. The white towel is about to be waved.
    If the problem is the Adaptec SCSI card, I don't know how to test it since it obviously has to be installed to enable drive A to mount.
    Does anyone have any suggestions?

    I am the original poster on this thread.
    Turns out that the culprit behind all my boot problems was the battery on my 5 year old Quicksilver G4. Replaced the battery and all is back to normal.
    FWIW, for any Quicksilver owners with SCSI cards, be aware that you can create boot problems for your SCSI drive by zapping your PRAM. As part of my diagnostics I did zap the PRAM but that turned out not to be a problem.
    Adaptec's site does include a workaround should you have problems after zapping the PRAM. This specifically covers the PowerDomain 29160 SCSI card/2930U card, which I have.

  • Problem follow-up item from Service Order to Complaint in IC CRM 7

    Hi gurus,
    From a Z Interaction Center CRM 7 role (Front Office agent) create by ourselves, we need to create a follow-up complaint from a service order, exactly we need to create a CRMC transaction follow-up from a SRVO transaction. We have do the copying control between these two transactions.
    The items categories that we use are, for SRVO transaction, the SRVS category (Product) and, for CRMC transaction, the COMP category (Complaint). We also have do the copying control between these two items categories.
    In addition, we have defined the following item category determination when copying:
    Source category: SRVS (Product)
    Target transaction type: CRMC (Complaint)
    Target item category: COMP (Complaint)
    When we use a the CRM 7 role SERVICEPRO (Back Office agent), we can create a Complaint (CRMC) follow-up from a Service Order (SRVO) and immediately it appears a pop-up that allows to select the item of the Service Order to add it as a item of the Complaint. But when we use the Z Interaction Center CRM 7 role and do the same, we can't select this item, no pop-up appears.
    Please, is it necessary to do some configuration for it? Our Front Office Agent has to be able to do it.
    Regards,
    Jesus

    Hi Jesus,
    I was suspecting this, we had a similar problem in CRM 6.0, i thought this is no more there in CRM 7.0. Well we had raised an OSS message for this and the reply was a development in the view or use the service pro view(sans)ICWEB apllications.
    This happens with any followup you want to create in the ICWEB view since there is no pop up here.
    I would suggest you to raise an OSS for this
    Regards
    Raj

  • Connection Problems following Upgrade at Exchange

    I have been having problems since 1st November.
    I had received an e-mail advising that “we’re rolling out our faster broadband and we’ll be upgrading our network in your area on 01-Nov-11…For the first ten days or so after your upgrade, your broadband might slow down or even stop now and again. That's normal and your speed will soon settle down”
    That night when I tried to use BT broadband after approx 90 seconds – connection was lost and router re-synced a number of times each hour.
    Over next 10 days this did not improve. Contacted technical call centre and after running a line check, I was told that there were ‘anomalies’ on the line. Next day the call centre rang back and said upgrade work was ongoing and I would receive an e-mail when upgrade had finished and things should improve 10 days after the e-mail.
    On 25 November I received an e-mail advising “This is to let you know that we've now upgraded your line and you should now have an improved, more consistent broadband connection, and maybe a speed increase.”
    Again I saw no improvement in service. Connection was lost after 90 seconds and then a number of times each hour. I also noticed that the connection was lost if a phone call was received.
    I spent next 2 weeks talking with call centre, again advised of ‘anomalies on line’ but eventually e-mailed BT Care and fault was logged on 31.12.11.
    Fault number:VOL051-53388****** – fault is still shown as being Open.
    On 5 January a BT engineer called. Spent a couple of hours testing connection, checking filters etc and told me that bandwidth was very narrow and this was probably the reason for connection dropping. He felt the upgrade at the exchange had caused this. Said the upgrade had been from ADSL to ADSL2. My BT exchange is Cregagh.
    I have never had issues in past and due to distance from exchange, I was told to expect speed of between 2-4 mb. I have accelerator plate fitted and problems only began following the upgrade
    Could the upgrade at the exchange be causing the connection to drop?
    Can anything be done at the exchange to improve the connection? Or is something else causing the problems which are ongoing?
    Speed has improved since engineers visit. Although enginner tested filters, could this be the problem?
    Any advice would be greatly appreciated.
    Stats are:
    Speed test
    FAQ
    Test1 comprises of two tests
    1. Best Effort Test:   -provides background information.
    Download  Speed
    3107 Kbps
    0 Kbps
    4000 Kbps
    Max Achievable Speed
     Download speed achieved during the test was - 3107 Kbps
     For your connection, the acceptable range of speeds  is 1200-4000 Kbps.
     Additional Information:
     Your DSL Connection Rate :3859 Kbps(DOWN-STREAM), 1016 Kbps(UP-STREAM)
     IP Profile for your line is - 3404 Kbps
    2. Upstream Test:   -provides background information.
    Upload Speed
    843 Kbps
    0 Kbps
    1016 Kbps
    Max Achievable Speed
    >Upload speed  achieved during the test was - 843 Kbps
     Additional Information:
     Upstream Rate IP profile on your line is - 1016 Kbps
    We were unable to identify any performance problem with your service at this time.
    It is possible that any problem you are currently, or had previously experienced may have been caused by traffic congestion on the Internet or by the server you were accessing responding slowly.
    If you continue to encounter a problem with a specific server, please contact the administrator of that server in the first instance.
    Homehub 2 ADSL stats
      ADSL line status <script type="text/javascript"></script> Connection information
    <script type="text/javascript"></script> Line state
    Connected
    Connection time
    0 days, 3:18:22
    Downstream
    3,859 Kbps
    Upstream
    1,016 Kbps
    ADSL settings
    <script type="text/javascript"></script> VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.3
    Latency type
    Interleaved
    Noise margin (Down/Up)
    5.9 dB / 6.0 dB
    Line attenuation (Down/Up)
    52.5 dB / 27.0 dB
    Output power (Down/Up)
    0.0 dBm / 12.9 dBm
    Loss of Framing (Local)
    227
    Loss of Signal (Local)
    21
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    0 / 4294967231
    CRC Errors (Down/Up)
    1297 / N/A
    HEC Errors (Down/Up)
    N/A / 0
    Error Seconds (Local)
    4649
    Solved!
    Go to Solution.

    the upgrade to adsl2 brings a more aggressive sytem on any noise on your line and what was a good connection on adslmax may not necessarily be a good connection on adsl2 - but can with some effort.  as you are using the accelerator you must have an NTE5 master and other extension sockets so have you tried connecting direct to the test socket?
    have you removed the bellwire on terminal 3 on all sockets - I know the accelerator helps with this but removal is 100% effective.
    have you tried the quiet line test   dial 17070 option 2  should hear nothing and best with corded phone   if cordless dull hum is normal
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Problem following Web Dynpro tutorial in NetWeaver CE 7.1

    Hi all,
    I have followed a training at the SAP Training Centre in Belgium, and back from this training I installed the NetWeaver CE 7.1 on my computer.
    I have followed the "Developing your first Web Dynpro application" tutorial step-by-step, I have compiled it and deployed it on the server, but I'm having trouble when trying to run this "Welcome" project: I get an error:
    500   Internal Server Error
    SAP NetWeaver Application Server/Java AS
    Failed to process request. Please contact your system administrator.
    Error Summary
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Root Cause
    The initial exception that caused the request to fail, was:
       java.lang.UnsupportedClassVersionError: Bad version number in .class file
        at java.lang.ClassLoader.defineClass1(Native Method)
        at java.lang.ClassLoader.defineClass(ClassLoader.java:654)
        at com.sap.engine.boot.loader.ResourceMultiParentClassLoader.loadClassLocal(ResourceMultiParentClassLoader.java:198)
        at com.sap.engine.boot.loader.MultiParentClassLoader.findClassInLoaderGraph(MultiParentClassLoader.java:306)
        at com.sap.engine.boot.loader.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:256)
        ... 60 more
    See full exception chain for details.
    Any idea of what causes this problem?
    Thanks in advance!

    I have found the problem: the server only supports JDK 5 and I was compiling with JDK 6. I have changed the compiler version and now it works fine!

  • Java Plug-in problems following installation of Oracle 9i

    I have been experiencing repeatable problems with the Sun Java Plug-in following installation of Oracle 9i on our servers. Our installation of the Sun JDK 1.3.1_04 or higher seems to conflict with the Oracle installation. Following the install, navigating to any web page that includes an applet reference results in a plug-in error stating that it cannot locate the registry key HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.3.1_01. The key does exist however for the installed version of the plug-in. ie [HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.3.1_07]. My only workaround to fix this is to add a new registry key 1.3.1_01 that contains the contents of the registry key for the installed plug-in (for example 1.3.1_07).

    The Oracle installation only inlcludes the JRE, which AFAIK isn't referenced outside the ORACLE_HOME directory. The internal JVM couldn't be causing the conflict either. Might be an installer bug of some sort, but not one I have heard of.

  • Namespace problem with bpelx:rename typeCastTo

    Hi!
    I have j2ee web service which accepts types derived from one base type. Therefore i need to pass argument like request xsi:type="derivedType", where request is super type.
    After long searching i found out this can be done via bpelx:rename typeCastTo ... my problem is that if i use this action:
    <bpelx:rename typeCastTo="ns3:UserOutgoingCallingPlanOriginatingModifyRequest">
    <bpelx:target variable="Invoke_1_transaction_InputVariable" part="parameters" query="/ns2:transactionElement/ns2:_req"/>
    </bpelx:rename>
    in audit console after running he process i see
    <_req xmlns="http://bwproxy.unient.com/types/" xsi:type="ns3:UserOutgoingCallingPlanOriginatingModifyRequest" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    but namespace prefix ns3 is nowhere defined in the message. It is defined only in source ov bpel process, but it is not propagated to the soap message, therefore web service throws a exception:
    Caught exception while handling request: unexpected element type: expected=, actual=UserOutgoingCallingPlanOriginatingModifyRequest
    Is this bug, or am i doing something wrong?
    thanks
    Tomas

    Hi,
    You could try to use HttpClient to consume wcf in windows phone 8.
    Here is an exsample you could refer:
    http://stackoverflow.com/questions/21536825/windows-phone-8-call-wcf-web-service
    Besides, you could refer to :
    http://www.codeproject.com/Questions/691619/Consuming-WCF-Service-from-Windows-Phone
    Since this issue is more related to Windows Phone, If my reply no help, please move to Windows Phone forum for a better support, It is appropriate and more experts will assist you.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem Following SMP tutorial with SDK 8.1

    I'm attempting to follow the SMP development tutorial but I'm starting with Win SDK 8.1.  Attempting to use convert-moftoprovider fails with missing mofs that are referenced in storagewmi_provider.mof (like msft_filestoragetier.mof).  I don't see
    these in Windows Kits/8.1/Include/um.  I do see some of these classes in /C/Windows/System32/wbem/storagewmi.mof but so far attempting to include this mof file doesn't allow the class generation to complete.
    So I guess I have a couple of broad questions about where the MSFT_ meta classes are defined as well as how this class schema is versioned (per SDK).  I would also like to get a overview of the meta model, I guess generating code and pointing visual
    studio to the generated artifacts is the best mechanism here?
    Thanks, I haven't dealt with Windows Mgmt environment in a while but do have a broad exposure to CIM; so some of these questions are likely due to my ignorance.  Any pointers are apprecieated.

    I ended up finding the solution to my own problem, so here it is in case anyone else runs into this problem. Turns out I was missing the file EAR/META-INF/application.xmlThe splitdir example contains a sample file.

  • Problem following Oracle Note 437660.1

    I installed Oracle 11g Release 1 and receive "There is a problem with this website's security certificate". I found other blogs which pointed to Oracle Note 437660.1
    I have tried to follow 437660.1. My first mistake was I misread step 2. I've never worked with Certificates before and deleted all the Certificates instead of just the Grid/OMS certificates. We've researched this back here and believe this is okay. This is a new server, just setting it up, not much on it.
    Running Server 2003 multilanguage version with Korean extension.
    Apps installed:
    Visual Studio 2005
    Siemens Simatic WinCC
    When I get to step 5, I get "Internet Explorer can not display this webpage" instead of "There is a problem with this website's security certificate". It's as if the page specified in step 5 does not exist.
    I've called support on this. I believe they are hung up on me deleting all my Certificates and are looking into how to resolve that. I have received an email from them saying they will call when they have a resolution.
    I can not even log in to Enterprise Manager. I assume it's because of the Certificate Error. This is only the second Oracle database I have set up on a server to run our system. Usually we use SQL Server, but this customer requested Oracle. I didn't experience any of these problems with the 10g database on the previous customer's system.

    I have reinstalled the OS to get the Certificates back. Still having Oracle problem "There is a problem with this website's security certificate". 437660.a does not fix my problem.
    Support informed me that the site in step 5 is an example, not an actual site. Should be https://<server name>:<port number>/em.

  • PROBLEM RELATED WITH APPENDING (URGENT)

    HELLO FRNDS
    I AM HAVNG A PROBLEM IN EXECUTINE THE APPEND STATEMENT .
    out_tab-name = 'PLN_COST'.
      out_tab-value = cost .
      APPEND out_tab.
    IN THE ABOVE STATEMENT THE COST IS DECLARED AS LIKE ORDPAR-PWERT.  AND THE OUT_TAB IS COMING UP FROM ITCSY STRUCTURE .
    THE PROBLEM IS WITH THE 2ND STATEMENT . THE VALUE OF COST IS NOT GETTING INTO THE OUT_TAB-VALUE. THE FIRST STATEMNET IS GETING EXECUTED PROPERLY . I CANT CHANGE THE DECLARATION OF COST . CAN ANYBODY SUGGEST A SOULUTION .
    THANKS ROHIT

    I believe that the value is being populated, you just can't see it as it maybe all the way to the right of the field, SHIFT it to the left.
    out_tab-name = 'PLN_COST'.
    out_tab-value = cost .
    shift out_tab-value  left deleting leading space.  "<- Add this statement
    APPEND out_tab.
    Regards,
    Rich Heilman

  • Problem following ID update to CS6 8.0.1

    Just in case anyone else is experiencing the same problem after updating ID CS6 to 8.0.1... I found that a placed Illustrator file did not have any transparency, or at least it appeared to be displaying the Art Board (white page background) when I imported files into Indesign (following the update yesterday). Where I had a white out logo appearing on a dark background on an Indesign page, all I saw was a big expanse of white - not good... just bad.
    So I restarted, looked on the Forum, called Adobe and sat listening to music for over an hour, then gave up. Answer... Well, this worked for me.
    Trash the preferences. I know you'd probably have tried this long before pulling out any hair, but I was reluctant to, due to all the personalisation I'd introduced over the past few months. I'd loose all of that and of course, I did.
    Here's how to trash the prefs if you're not sure. (BTW. Pallet location info IS retained if you've spent a while getting things just as you like them)...
    http://forums.adobe.com/thread/526990
    All is now OK (Phew).
    Thank goodness for the Forums because Adobe 'Live Chat' was (a) increadibly slow and (b) less than useless this time.
    Fingers crossed that did the trick becuse before that problem I was very, very impressed with Adobe CC.

    How to preserve your hard-won preferences in case of needing to trash preferences:
    http://trainingonsite.com/images/downloads/indesign_cs6_complete_preferences_2012_11_30.pd f
    See page 15.

Maybe you are looking for

  • Password for a pages document

    Hi, I just switched from a windows notebook to an iBook. How do I set a password for opening and modifying a Pages document as you do in Word? Thanks.

  • Status Update of PO upon Supplier Acknowledgement

    Hi All I have a general query: When the PO is approved and sent to supplier, is there any status which gets updated when the supplier has received the PO. I am looking forward to capture the status of PO when the supplier acknowledges it. By this, th

  • Muxing Problems

    Hello, I'm editing projects in FCP that will then be encoded to MPEG and played back on a broadcast server. What I've been doing is exporting a QT movie (not self-contained) and then using compressor to encode the MPEG. Now, as you know, Compressor s

  • Monkey Ball wont sync back to iTunes

    When I go to sync, it says 'copying Monkey Ball' and freezes. Can someone please help me?

  • Iweb pictures faded

    this problem just started happening in the last week or so for me.  i usually create an album in iphoto then use that to build the photo page in iweb.  everything looks fine until i hit save in iweb.  when i do that all my photos get lighter as if th