Unexpected error during HTTP request to voucher server The operation timed out

I read books from my library through a system called READS. I have successfully used DE 1.0 without any problems, however, when I tried to use it recently it required me to upgrade to 1.5. Well I did so and now the books won't authorize. Here is the error message I am getting:
Adobe DRM Error System: 5 State: 4 Class: 600 Code: 106 Message: Error on request or response from server. Please check your network connection and try again. Scroll below or view error.log for more details.
Adobe DRM client Error: 706 Unexpected error during HTTP request to voucher server The operation timed out
Requested URL: http://207.54.136.76/fulfill/ebx.etd?action=lend&orderid=939605378082105&bookid=ContentRe serveID:B91CC494-23AF-4C6A-9B0C-7DA050C05722-50
Requested URL: http://207.54.136.76/fulfill/ebx.etd ?action=lend &orderid=939605378082105 &bookid=ContentReserveID:B91CC494-23AF-4C6A-9B0C-7DA050C05722-50
--- end ---
I have tried this multiple times with more than one book. Again, they worked just fine before I did the upgrade. I am running Vista SP1.

Never mind, they obviously post the message on the ticket, but it doesn't send an e-mail. I will try what they indicated. Here is their response...
Thank you for contacting Adobe Technical Support.
I understand that you are getting "Adobe DRM Error" in Digital Editions.
We have documented the steps to resolve this error message. Please do
refer to this TechNote:
Error: "Adobe DRM Error" when you activate Digital Editions or access an
eBook
http://www.adobe.com/go/kb402747

Similar Messages

  • ORA-29273: HTTP request failed ORA-12535: TNS:operation timed out

    SQL*Plus: Release 11.2.0.3.0
    Solaris 10 SPARC
    Hi,
    I get the following error when trying to make an HTTP request. Below is the snippet of code I run. I get the error after exactly 60 seconds(default timeout?). I searched through the forums and found many similar errors but nothing that helped me resolve this issue. The problem does not exist in the rest of our environments, only our test environment.
    Help is greatly appreciated. Thanks.
    DECLARE
       p_mid_tier    VARCHAR2 (500);
       responsestr   VARCHAR2 (500);
    BEGIN
       SELECT *****
         INTO p_mid_tier
         FROM *****
        WHERE profile_type = '*****';
       UTL_HTTP.set_wallet ('file://$ORACLE_HOME/network/admin/wallets');
       UTL_HTTP.set_transfer_timeout (6000);
       UTL_HTTP.set_response_error_check (TRUE);
       responsestr :=
          UTL_HTTP.request (
             UTL_URL.ESCAPE (p_mid_tier || '*****'));
       DBMS_OUTPUT.put_line (responsestr);
    END;
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1722
    ORA-12535: TNS:operation timed out
    ORA-06512: at line 15

    1001371 wrote:
    SQL*Plus: Release 11.2.0.3.0
    Solaris 10 SPARC
    Hi,
    I get the following error when trying to make an HTTP request. Below is the snippet of code I run. I get the error after exactly 60 seconds(default timeout?). I searched through the forums and found many similar errors but nothing that helped me resolve this issue. The problem does not exist in the rest of our environments, only our test environment.
    Help is greatly appreciated. Thanks.
    DECLARE 
       p_mid_tier    VARCHAR2 (500); 
       responsestr   VARCHAR2 (500); 
    BEGIN 
       SELECT ***** 
         INTO p_mid_tier 
         FROM ***** 
        WHERE profile_type = '*****'; 
       UTL_HTTP.set_wallet ('file://$ORACLE_HOME/network/admin/wallets'); 
       UTL_HTTP.set_transfer_timeout (6000); 
       UTL_HTTP.set_response_error_check (TRUE); 
       responsestr := 
          UTL_HTTP.request ( 
             UTL_URL.ESCAPE (p_mid_tier || '*****')); 
       DBMS_OUTPUT.put_line (responsestr); 
    END; 
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1722
    ORA-12535: TNS:operation timed out
    ORA-06512: at line 15
    the most frequent cause for TIMEOUT is a FireWall on or between client & server.
    when was last time this worked without error?
    what changed since then?

  • Please HELP! Error: -2147012894 (80072ee2) the operation timed out on WinHttpRequest.5.1

    Hello
    I REALLY NEED SOME GUIDANCE ON THIS ERROR.
    Does anyone know why this could be happening.  I am getting the error:  -2147012894 (80072ee2) the operation timed out.  I have this code in an Excel macro.  I am sending the URL an XML string and am expecting a response
    but I am getting the time out error on the SEND.  I have tried using the SetTimeouts method, but I still get the error.    
    Could it be my machine settings?  Does WinHTTPRequest work with Excel VBA?  I am just lost at this point.  I have researched, and have seen examples of Excel VBA using WinHTTPRequest.  I do not know why I am getting
    the error.
    Your help is very much appreciated.  I really need some direction on how to resolve this issue. 
    smsemail
    Private Sub CmdGetData_Click()
    colLabel = 1
    colStreetAddress = 23
    colCity = 24
    colState = 25
    colZipCode = 26
    colZipFour = 27
    lastRow = ActiveSheet.Range("A" & Rows.Count).End(xlUp).Row
    For rw = 4 To lastRow
    If Worksheets("Sheet1").Cells(rw, colStreetAddress).Value = "" Then GoTo nextLabel:
    If Worksheets("Sheet1").Cells(rw, colCity).Value = "" And _
    Worksheets("Sheet1").Cells(rw, colState).Value = "" And _
    Worksheets("Sheet1").Cells(rw, colZipCode).Value = "" Then GoTo nextLabel:
    If (Worksheets("Sheet1").Cells(rw, colCity).Value = "" And _
    Worksheets("Sheet1").Cells(rw, colState).Value = "") Or _
    Worksheets("Sheet1").Cells(rw, colZipCode).Value = "" Then GoTo nextLabel:
    strStreetAddress = Worksheets("Sheet1").Cells(rw, colStreetAddress).Value
    strCity = Worksheets("Sheet1").Cells(rw, colCity).Value
    strState = Worksheets("Sheet1").Cells(rw, colState).Value
    strZipCode = Worksheets("Sheet1").Cells(rw, colZipCode).Value
    'Initialize variables
    strXML = ""
    Label = Worksheets("Sheet1").Cells(rw, colLabel).Value
    'Write XML header information
    Call WriteXMLHeader
    'Write address information to XML file
    strXML = strXML & "<p3:AddressCriteria>"
    strXML = strXML & "<p3:CanadianProvince></p3:CanadianProvince>"
    strXML = strXML & "<p4:LocationCityName>" & strCity & "</p4:LocationCityName>"
    strXML = strXML & "<p4:LocationCountyName></p4:LocationCountyName>"
    strXML = strXML & "<p4:LocationPostalCode></p4:LocationPostalCode>"
    strXML = strXML & "<p4:LocationStateUSPostalServiceCode>" & strState & "</p4:LocationStateUSPostalServiceCode>"
    strXML = strXML & "<p4:StreetFullText>" & strStreetAddress & "</p4:StreetFullText>"
    strXML = strXML & "</p3:AddressCriteria>"
    'Write XML footer information
    Call WriteXMLFooter
    'URI
    strURI = "https://a325.wgs.thomson.com/api/v1/person/searchResults"
    strUserID = "xxxxxxx"
    strUserPassword = "yyyyyyyy"
    Set httpRequest = CreateObject("WinHttp.WinHttpRequest.5.1")
    httpRequest.SetTimeouts 80000, 80000, 90000, 90000
    With httpRequest
    .Open "POST", strURI, False
    .SetRequestHeader "Content-type", "application/xml"
    .SetRequestHeader "Content-Length", Len(strXML)
    .SetRequestHeader "Authorization", "Basic " & EncodeBase64(strUserID & ":" & strUserPassword)
    ''.SetClientCertificate ("LOCAL_MACHINE\Personal\Certificates\WGS CA\kchin tmp dev cert")
    .SetClientCertificate ("LOCAL_MACHINE\Personal\kchin tmp dev cert")
    .Send (strXML)
    End With
    If httpRequest.Status = 200 Then
    MsgBox httpRequest.GetAllResponseHeaders
    Else
    MsgBox httpRequest.Status & ": " & httpRequest.StatusText
    End If
    MsgBox httpRequest.ResponseText
    nextLabel:
    Next rw
    MsgBox "PROCESSING HAS COMPLETED", vbOKOnly, "E-Interdiction Clear Update"
    End Sub
    Public Sub WriteXMLHeader()
    strXML = "<?xml version=" & Chr(34) & "1.0" & Chr(34) & "?>"
    strXML = strXML & "<psr1:PersonSearchRequest " & "xmlns:psr1=" & Chr(34) & "http://wgs.thomsonreuters.com/clear/api/search/1.0 " & Chr(34) & " xmlns:xsi=" & Chr(34) & "http://www.w3.org/2001/XMLSchema-instance" & Chr(34) & ">"
    strXML = strXML & "<PermissiblePurpose>"
    strXML = strXML & "<GLB>L</GLB>"
    strXML = strXML & "<DPPA>1</DPPA>"
    strXML = strXML & "<VOTER>2</VOTER>"
    strXML = strXML & "</PermissiblePurpose>"
    strXML = strXML & "<Reference>S2S Test</Reference>"
    strXML = strXML & "<Criteria>"
    strXML = strXML & "<p1:PersonCriteria"
    strXML = strXML & "xmlns:p1=" & Chr(34) & "http://wgs.thomsonreuters.com/clear/api/search/person-search/niem/1.0" & Chr(34) & ""
    strXML = strXML & "xmlns:p2=" & Chr(34) & "http://niem.gov/niem/structures/2.0" & Chr(34) & ""
    strXML = strXML & "xmlns:p3=" & Chr(34) & "http://wgs.thomsonreuters.com/clear/api/search/person-search-extension/niem/1.0" & Chr(34) & ""
    strXML = strXML & "xmlns:p4=" & Chr(34) & "http://niem.gov/niem/niem-core/2.0" & Chr(34) & ">"
    End Sub
    Public Sub WriteXMLFooter()
    strXML = strXML & "</p1:PersonCriteria>"
    strXML = strXML & "</Criteria>"
    strXML = strXML & "<Datasources>"
    strXML = strXML & "<PublicRecordCriminalAndInfractions>false</PublicRecordCriminalAndInfractions>"
    strXML = strXML & "<PublicRecordPeople>true</PublicRecordPeople>"
    strXML = strXML & "<NPIRecord>false</NPIRecord>"
    strXML = strXML & "<WorkAffiliations>false</WorkAffiliations>"
    strXML = strXML & "<RealTimeIncarcerationAndArrests>false</RealTimeIncarcerationAndArrests>"
    strXML = strXML & "</Datasources>"
    strXML = strXML & "</psr1:PersonSearchRequest>"
    End Sub
    Public Function EncodeBase64(text As String) As String
    Dim arrData() As Byte
    arrData = StrConv(text, vbFromUnicode)
    Dim objXML As MSXML2.DOMDocument
    Dim objNode As MSXML2.IXMLDOMElement
    Set objXML = New MSXML2.DOMDocument
    Set objNode = objXML.createElement("b64")
    objNode.DataType = "bin.base64"
    objNode.nodeTypedValue = arrData
    EncodeBase64 = objNode.text
    Debug.Print EncodeBase64
    Set objNode = Nothing
    Set objXML = Nothing
    End Function

    Kristin --- the C# forum may not be the place for web service questions, but the ASP.NET forums is not a correct suggestion for Karthik's question either. ASP.NET really has absolutely nothing to do with a web service. The WCF forum may have been
    a better suggestion (although you don't necessarily have to have a WCF service for RESTful web services) ... So, could you move this thread here:
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=wcf
    Karthik --- sorry I couldn't help you more, but I've seriously run out of ideas. If Kristen can't move your thread out of this Off-Topic forum, then perhaps you could re-post it to the WCF forums from the link I provided above. Perhaps I should have
    moved the thread to begin with (I can do that from the C# forum, but I cannot do it from this Off-Topic forum, sorry)
    ~~Bonnie DeWitt [C# MVP]
    http://geek-goddess-bonnie.blogspot.com

  • Error 7 (net::ERR_TIMED_OUT): The operation timed out

    Hi,
    I changed from HP to Mac and I am having problems opening specific websites:
    https://elearning.uol.ohecampus.com/webapps/bbgs-SSO-bb_bb60/execute/login?aid=G WGdfsQZLwUD3COgrDFFbGN0TCFY9HyHlLr3ruugp%2fDzrjxUUUqph8JuKgPvdazbmO0lvlptietNgME YslS%2b5MBmUlDPfcqyVvvcgYTkKmAwL1J6etAHBg%3d%3d
    https://meine.deutsche-bank.de/
    I downloaded all the latest software, but the error remains. All other pages work and my other computer opens the pages without any problems.
    Any clue what (browser)system settings prevent from opening?
    Thank you

    Hi,
    I didn't have any problems loading those sites, v10.6.7 and Safari 5.0.4.
    Go to Safari / Preferences - Advanced. Click the Change Settings button next to: Proxies
    That will prompt the System Preferences / Network - Proxies pane.
    If any of the boxes are selected on the left, deselect, then click OK. Restart Safari. See if that makes a difference.
    If Proxies aren't the issue, check Safari / Preferences - Extensions. If you have any installed, turn that off, then try Safari.
    Carolyn

  • Operation timed out when starting application server

    Hello experts, I recently installed the Netweaver ABAP preview edition on my pc. So when I try to start the application server after a while it says that the operation timed out so I cant log on using SAPlogon. Any help on this would be greatly appreciated. Thanks a lot guys!

    Hi,
    Check if SAP is up and running in the SAP MMC.
    If SAP is not running
    Please check/paste the dev_w0 file in /usr/sap/NSP/DVEBMGS00/work directory.
    Regards,
    Siddhesh

  • Error during print request output. l_rc = 1

    Hi ,
    I have a request to create on ouput device which can copy the spool request to desired location in application server. Our server is not connected to any physical server and is windows NT.
    I am tring to create ACCESS TYPE 'L' with host printer name '__default'.
    I am using control set to copy file at desired location on server
    COPY &F <path for file to be copied>&T
    File is being copied to desired location but its returing error message "Error during print request output. l_rc = 1"
    Complete log is below:
          SAP spool error log                                                                   
          =====================                                                                               
    Print request processing log                                                                               
    The host spool is reporting errors                                                                               
    Message from host spool:                                                                               
    1 file(s) copied.                                                                 
    End of message                                                                               
    Command used: COPY E:\usr\sap\D06\DVEBMGS00\data\000002934300001.D06 E:\interface\D06\                                                                               
    Errors occurred processing this print request                                                                               
    Error during print request output. l_rc = 1                                                 
    There may be no printout                                                                               
    Most important attributes of spool request                                                                               
    Request number 29343                                                                               
    Request name SCRIPT ZRAJ BASISADMIN                                                         
    Client 220                                                                               
    Owner BASISADMIN                                                                            
    Request attributes                                                                          
    Time created   2008102906203900                                                             
    Remaining life  +00008000000                                                                
    Dispo 1 (Go/Hold) G                                                                         
    Dispo 2 (Keep/Delete)     K                                                                 
    Dispo 3 (Indirect/Direct) D                                                                 
    Default output device ZRAJ                                                                  
    Default no. copies  1                                                                       
    Format X_PAPER                                                                               
    Main print request characteristics                                                                               
    Spool request number 29343                                                                  
    Print request number 1                                                                      
    Print request attributes                                                                    
    Time created   2008102906203900                                                             
    Output device ZRAJ                                                                          
    Format X_PAPER                                                                               
    Character converter active when first problem occurred                                                                               
    No information available                                                                               
    Pls help.
    Regards
    Raj Kiran

    If you have done a search with your subject line, you would have got the following [results.|https://www.sdn.sap.com/irj/sdn/advancedsearch?query=%22errorduringprintrequestoutput.l_rc%3D1%22&cat=sdn_all]
    so do a search in SCN before posting your question.
    Regards
    Karthik D

  • [823] [HY000] [Microsoft][ODBC SQL Server Driver][SQL Server]The operating system returned error 1450(Insufficient system resources exist to complete the requested service.) to SQL Server.

    Hi,
    I am facing an issue while loading fresh data into SQL server database.
    we are able to load data into staging area, but while processing stored procedures system face bellow error message :
    [823] [HY000] [Microsoft][ODBC SQL Server Driver][SQL Server]The operating system returned error 1450(Insufficient system resources exist to complete the requested service.) to SQL Server during a write at offset 0x00000243bd0000 in file 'E:\SQLDB\DBName.mdf'.
    Additional messages in the SQL Server error log and system event log may provide more detail. This is a severe system-level error condition that threatens database integrity and must be corrected immediately. Complete a full database consistency check (DBCC
    CHECKDB). This error can be caused by many factors; for more information, see SQL Server Books Online.
    we use windows 2008 R2 with SQL server managment studio 2008.
    Appreciate your suggestion.
    Thanks in advance.
    Best Regards,
    Manorath 
    Manorath

    Hi Manorath,
    Based on my research, this issue can be occurred in the following scenarios:
    You are running a DBCC command on a large database. For example, you are running the DBCC CHECKDB statement on the database. At the same time, you run many DML statements on the database.
    You create a database snapshot for a large database. At the same time, you are running many DML statements on the database.
    In these scenarios, the SQL Server service stops responding. The DBCC CHECK statement is never completed, and you receive the error message repeatedly.
    This issue occurs because the sparse file for a database snapshot file has exceeded the file size limitation in NTFS file system. When the operating system error 1450 occurs, SQL Server enters an infinite retry loop.
    To fix this issue, please download and install Cumulative update package 1 for SQL Server 2008 Service Pack 1. Besides, because the fixes are cumulative, each new release contains all the hotfixes and all the security fixes that were included with the previous
    SQL Server 2008 fix release. We recommend that you consider applying the most recent fix release that contains this hotfix.
    Reference:
    http://support.microsoft.com/kb/967164
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Unexpected error during interactive component execution.

    I have an automatic activity within a screenflow. When I try to access this, it is giving the following exception in logs :(workspace.log)
    [<D> 0719 07:52:42.519] Main (<9> [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'): ExecutionDispatcher.actionId: RUN_APPLICATION_TASK
    [<D> 0719 07:52:42.519] Main (<9> [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'): ExecutionDispatcher.runApplicationTask: Global Excecution ->fuego.papi.impl.j2ee.EJBGlobalExecution@9994d62
    [<D> 0719 07:52:42.519] Main (<9> [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'): ExecutionDispatcher.customRunTask(): 4b10000
    [<W> 0719 07:52:42.835] Main (<9> [ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'): Unexpected error during interactive component execution.
    *[     (cont)     ] Main: Caused by: The catalog manager [bpmXtest/2009-09-25 11:06:11-05:00.1327] is not registered.*
    [     (cont)     ] Main: fuego.web.execution.exception.UnexpectedExecutionException: Unexpected error during interactive component execution.
    [     (cont)     ] Main: at fuego.web.papi.TaskExecutor.execute(TaskExecutor.java:187)
    [     (cont)     ] Main: at fuego.workspace.servlet.ExecutorServlet.doAction(ExecutorServlet.java:117)
    [     (cont)     ] Main: at fuego.workspace.servlet.BaseServlet.doPost(BaseServlet.java:229)
    [     (cont)     ] Main: at fuego.workspace.servlet.BaseServlet.doGet(BaseServlet.java:220)
    [     (cont)     ] Main: at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    [     (cont)     ] Main: at fuego.workspace.servlet.AuthenticatedServlet.service(AuthenticatedServlet.java:83)
    [     (cont)     ] Main: at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    [     (cont)     ] Main: at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    [     (cont)     ] Main: at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    [     (cont)     ] Main: at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    [     (cont)     ] Main: at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    [     (cont)     ] Main: at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    [     (cont)     ] Main: at fuego.web.filter.SingleThreadPerSessionFilter.doFilter(SingleThreadPerSessionFilter.java:64)
    [     (cont)     ] Main: at fuego.web.filter.BaseFilter.doFilter(BaseFilter.java:63)
    [     (cont)     ] Main: at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    [     (cont)     ] Main: at fuego.web.filter.CharsetFilter.doFilter(CharsetFilter.java:48)
    [     (cont)     ] Main: at fuego.web.filter.BaseFilter.doFilter(BaseFilter.java:63)
    [     (cont)     ] Main: at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    [     (cont)     ] Main: at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
    [     (cont)     ] Main: at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    [     (cont)     ] Main: at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    [     (cont)     ] Main: at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    [     (cont)     ] Main: at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    [     (cont)     ] Main: at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    [     (cont)     ] Main: at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    [     (cont)     ] Main: at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    [     (cont)     ] Main: Caused by: java.lang.ClassNotFoundException: The catalog manager [bpmXtest/2009-09-25 11:06:11-05:00.1327] is not registered.
    [     (cont)     ] Main: at fuego.util.CatalogLoaderMgrCache.findOrCreateCatalogClassloader(CatalogLoaderMgrCache.java:83)
    [     (cont)     ] Main: at fuego.util.CatalogLoaderMgr.getCatalogClassLoader(CatalogLoaderMgr.java:68)
    [     (cont)     ] Main: at fuego.papi.impl.j2ee.EJBTaskExecutionResult.unmarshall(EJBTaskExecutionResult.java:72)
    [     (cont)     ] Main: at fuego.papi.impl.j2ee.EJBExecution.next(EJBExecution.java:204)
    [     (cont)     ] Main: at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:177)
    [     (cont)     ] Main: at fuego.web.execution.impl.WebInteractiveExecution.process(WebInteractiveExecution.java:54)
    [     (cont)     ] Main: at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:223)
    [     (cont)     ] Main: at fuego.web.papi.TaskExecutor.runApplicationTask(TaskExecutor.java:349)
    [     (cont)     ] Main: at fuego.web.papi.TaskExecutor.execute(TaskExecutor.java:95)
    What does the exception refer to:Caused by: java.lang.ClassNotFoundException: The catalog manager [bpmXtest/2009-09-25 11:06:11-05:00.1327] is not registered.

    Just guessing here, but I'd suspect that you have a BPM Object that you are using in your screenflow. Inside your BPM Object you probably have a method that makes the database call. I'm assuming that you might be using Dynamic SQL in your method.
    If this is the case then make sure that this method has the property set to "Server Side".
    Dan

  • Xml forms - Error handling HTTP request

    Hello,
    We have installed portal 6.0
    I've made some forms with the xml form builder, imported them into IViews (KM navigation IView) and assigned the IViews to a role
    The Iview shows the RenderListItem form
    Every Iview (RenderListItem form) has a "new item" button
    Every record of the iview has a edit-delete action
    When I press the "new item" button or the edit button (or save button) I get the following error:
    Error handling HTTP request. Check the log file for more information.
    java.lang.RuntimeException: Context is unavailable!
         at com.sap.pct.plm.dmsrmconnectorforkm.DMSRMConnection.(DMSRMConnection.java:83)
         at com.sap.pct.plm.dmsrmconnectorforkm.DMSRMR3FunctionCalls.getGenericValueList(DMSRMR3FunctionCalls.java:6532)
         at com.sap.pct.plm.dmsrmconnectorforkm.DMSRMR3FunctionCalls.getLaboratoryList(DMSRMR3FunctionCalls.java:6360)
         at com.sap.pct.plm.dmsrmconnectorforkm.DMSRMLaboratoryValueProvider.getAllowedValues(DMSRMLaboratoryValueProvider.java:79)
         at com.sapportals.wcm.service.propertyconfig.config.MetaName.getAllowedValues(MetaName.java:781)
         at com.sapportals.wcm.service.propertyconfig.config.MetaName.allowedValueIterator(MetaName.java:472)
         at com.sapportals.wcm.service.xmlforms.ResourceProperties.appendAllowedValues(ResourceProperties.java:713)
         at com.sapportals.wcm.service.xmlforms.ResourceProperties.mergeProperty(ResourceProperties.java:682)
         at com.sapportals.wcm.service.xmlforms.ResourceProperties.mergePropertiesIntoDom(ResourceProperties.java:611)
         at com.sapportals.wcm.service.xmlforms.transformation.HtmlGenerator.getHtmlStream(HtmlGenerator.java:116)
         at com.sapportals.wcm.service.xmlforms.transformation.Transformation.render(Transformation.java:391)
         at com.sapportals.wcm.service.xmlforms.transformation.Transformation.render(Transformation.java:336)
         at com.sapportals.wcm.service.xmlforms.transformation.Transformation.render(Transformation.java:188)
         at com.sapportals.wcm.app.xmlforms.EditServlet.doGetAction(EditServlet.java:165)
         at com.sapportals.wcm.app.xmlforms.XFBaseServlet.doGet(XFBaseServlet.java:241)
         at com.sapportals.wcm.app.xmlforms.XFBaseServlet.doPost(XFBaseServlet.java:261)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sapportals.wcm.app.xmlforms.XFBaseServlet.service(XFBaseServlet.java:134)
         at com.sapportals.wcm.portal.proxy.PCProxyServlet.service(PCProxyServlet.java:331)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sapportals.portal.prt.core.broker.ServletComponentItem$ServletWrapperComponent.doContent(ServletComponentItem.java:110)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:545)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    This error doesn't always appear, there are times that the portal works correct and when I can add items, edit them and save my changes
    Does anyone have an idea where the error comes from? In what direction I have to search? How I can solve this problem?
    Thanks in advance, points will be distributed for helpfull answers

    Hi,
    I didn't place a save button on the RenderListItem but on the Edit form so this couldn't be the issue...
    I solved the error I got when I wanted to save my form
    The edit and delete buttons also work correct...
    I only get the error mentioned above when I press the "new form" button, I created that button with the CreateXMLForms action group that I added in my Collection Grid renderer settings (option collection command group)
    Then I changed my form availibility (System administration ->system configuration ->KM->CM->form based publishing->form availibility->folder settings)
    I created the following folder settings:
    foldername//priority//path//forms to exclude//forms to include
    library//10 //documents/testlibrary//Smarties, QnA,SAP_APP_News//library
    News //10 //documents/News//smarties, library, QnA// SAP_APP_News
    QnA //10 //documents/testQuestionAnswer// SAP_APP_News, smarties, library //QnA
    Smarties //10 /documents/testSmarties
    Did I do something wrong here? What can cause this error? In what direction should I search?

  • Workspace : Unexpected error during interactive component execution

    Hi !
    During execution, we have random events where this error appears. It appears for different field names and objects. The error code is displayed in the workspace and this is an excerpt of the workspace log.
    We have 2 workspaces using websphere. We noticed that in the past, a few times this was solved by synchronizing the nodes. I does not get fixed like that anymore.
    Any clues? this same deployed application worked in the past, it was not updated.
    THANKS,
    Regards,
    Matias
    <W>, "May 11, 2011 2:04:59 PM", Default, Main, <2> WebContainer : 0, "Error workspace-1305483686838
    Unexpected error during interactive component execution.
    Caused by: Invalid type for field newProduct . Expected : 'xobject.company.BusinessObjects.Product'. Received : 'Lxobject/company/BusinessObjects/Product;' .
    fuego.web.execution.exception.UnexpectedExecutionException: Unexpected error during interactive component execution.
         at fuego.web.papi.TaskExecutor.execute(TaskExecutor.java:187)
         at fuego.workspace.servlet.ExecutorServlet.doAction(ExecutorServlet.java:117)
         at fuego.workspace.servlet.BaseServlet.doPost(BaseServlet.java:229)
         at fuego.workspace.servlet.BaseServlet.doGet(BaseServlet.java:220)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at fuego.workspace.servlet.AuthenticatedServlet.service(AuthenticatedServlet.java:83)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1146)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1087)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:118)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:837)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:680)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:588)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:524)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:321)
         at fuego.web.execution.servlet.ServletExternalContext.forwardInternal(ServletExternalContext.java:197)
         at fuego.web.execution.servlet.ServletExternalContext.finishExecution(ServletExternalContext.java:103)
         at fuego.xobject.runtime.components.XObjectHtmlRuntimeController.service(XObjectHtmlRuntimeController.java:342)
         at fuego.web.execution.servlet.ServletRedirector$ControllerRedirector.forward(ServletRedirector.java:197)
         at fuego.web.execution.servlet.ServletRedirector.redirect(ServletRedirector.java:58)
         at fuego.web.papi.TaskExecutor.processRedirect(TaskExecutor.java:224)
         at fuego.web.papi.TaskExecutor.execute(TaskExecutor.java:104)
         at fuego.workspace.servlet.ExecutorServlet.doAction(ExecutorServlet.java:117)
         at fuego.workspace.servlet.BaseServlet.doPost(BaseServlet.java:229)
         at fuego.workspace.servlet.BaseServlet.doGet(BaseServlet.java:220)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at fuego.workspace.servlet.AuthenticatedServlet.service(AuthenticatedServlet.java:83)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1146)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1087)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at fuego.web.filter.SingleThreadPerSessionFilter.doFilter(SingleThreadPerSessionFilter.java:64)
         at fuego.web.filter.BaseFilter.doFilter(BaseFilter.java:63)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at fuego.web.filter.CharsetFilter.doFilter(CharsetFilter.java:48)
         at fuego.web.filter.BaseFilter.doFilter(BaseFilter.java:63)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:837)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:680)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:588)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:524)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:90)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:751)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1478)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:125)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:458)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:387)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
         at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:196)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:751)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:881)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1497)
    Caused by: java.lang.ClassCastException: Invalid type for field newProduct . Expected : 'xobject.company.BusinessObjects.Product'. Received : 'Lxobject/company/BusinessObjects/Product;' .
         at fuego.io.ObjectSerialization.resolveFieldValue(ObjectSerialization.java:434)
         at fuego.io.ObjectSerialization.customReadObject(ObjectSerialization.java:290)
         at xobject.Moving.BusinessObjects.Agreements.Agreement.readObject(Agreement.xcdl)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:1036)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.access$300(ObjectInputStream.java:212)
         at java.io.ObjectInputStream$GetFieldImpl.readFields(ObjectInputStream.java:2108)
         at java.io.ObjectInputStream.readFields(ObjectInputStream.java:548)
         at fuego.io.ObjectSerialization.customReadObject(ObjectSerialization.java:197)
         at xobject.Moving.BusinessObjects.AccountAgreement.readObject(AccountAgreement.xcdl)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:1036)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:378)
         at java.util.ArrayList.readObject(ArrayList.java:617)
         at sun.reflect.GeneratedMethodAccessor15.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:1036)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.access$300(ObjectInputStream.java:212)
         at java.io.ObjectInputStream$GetFieldImpl.readFields(ObjectInputStream.java:2108)
         at java.io.ObjectInputStream.readFields(ObjectInputStream.java:548)
         at fuego.io.ObjectSerialization.customReadObject(ObjectSerialization.java:197)
         at xobject.Moving.BusinessObjects.Account.readObject(Account.xcdl)
         at sun.reflect.GeneratedMethodAccessor347.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:1036)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:378)
         at java.util.HashMap.readObject(HashMap.java:1318)
         at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:1036)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.access$300(ObjectInputStream.java:212)
         at java.io.ObjectInputStream$GetFieldImpl.readFields(ObjectInputStream.java:2108)
         at java.io.ObjectInputStream.readFields(ObjectInputStream.java:548)
         at fuego.io.ObjectSerialization.customReadObject(ObjectSerialization.java:197)
         at xobject.Moving.BusinessObjects.Person.readObject(Person.xcdl)
         at sun.reflect.GeneratedMethodAccessor348.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:1036)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.access$300(ObjectInputStream.java:212)
         at java.io.ObjectInputStream$GetFieldImpl.readFields(ObjectInputStream.java:2108)
         at java.io.ObjectInputStream.readFields(ObjectInputStream.java:548)
         at fuego.io.ObjectSerialization.customReadObject(ObjectSerialization.java:197)
         at xobject.Moving.BusinessObjects.Account.readObject(Account.xcdl)
         at sun.reflect.GeneratedMethodAccessor347.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:1036)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.access$300(ObjectInputStream.java:212)
         at java.io.ObjectInputStream$GetFieldImpl.readFields(ObjectInputStream.java:2108)
         at java.io.ObjectInputStream.readFields(ObjectInputStream.java:548)
         at fuego.io.ObjectSerialization.customReadObject(ObjectSerialization.java:197)
         at xobject.Moving.Views.AbstractView.readObject(AbstractView.xcdl)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:1036)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:378)
         at java.util.HashMap.readObject(HashMap.java:1318)
         at sun.reflect.GeneratedMethodAccessor12.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:618)
         at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:1036)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1848)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
         at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
         at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1755)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1341)
         at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1670)
         at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1335)
         at java.io.ObjectInputStream.readObject(ObjectInputStream.java:378)
         at fuego.papi.impl.j2ee.Marshaller.unmarshall(Marshaller.java:46)
         at fuego.papi.impl.j2ee.EJBTaskExecutionResult.unmarshall(EJBTaskExecutionResult.java:73)
         at fuego.papi.impl.j2ee.EJBExecution.next(EJBExecution.java:204)
         at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:177)
         at fuego.web.execution.impl.WebInteractiveExecution.process(WebInteractiveExecution.java:54)
         at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:223)
         at fuego.web.papi.TaskExecutor.processResult(TaskExecutor.java:266)
         at fuego.web.papi.TaskExecutor.execute(TaskExecutor.java:101)
         ... 59 more
    "

    Hi
    Please let me know, how your exception got resolved ?
    Thanks,
    Brijesh Kumar Singh

  • An unexpected error during Command execution

    Hi,
    I am using Project Server 2007 SP 2 at the moment. One of our user keeps encountering this error "An unexpected error during Command execution" for a project file.  We tried to restore the earlier version of the plan using Administrative restore.
    But it only works as a temporary fix as the problem keeps reapprearing. Kindly help.

    Only SP2 for Project 2007? Probably not worth trying to debug, with 2007 it is almost essential to have SP3 and the very last cumulative update for Project pro and Server. 2007 was a very buggy version (they were forced to release at same time as Office
    2007 and it was too soon).
    Rod Gill
    Author of the one and only Project VBA Book
    www.project-systems.co.nz

  • Errors during file transfer on WebDav server

    (this is a repost from a different category)
    I having much difficulty transferring files to and from our new WebDav server when using Finder's Connect to Server. I am able to connect and authenticate just fine. Although, when dragging and dropping to a mounted drive, I receive the following errors, then subsequently dropped from the sever.
    ...Unexpected Error Occurred - Error code 1407
    ...cannot comple the operation because some data in "" could not be read or written - Error code 36
    ...Unexpected Error Occurred - Error code 1407
    This seems to be an issue affecting all 10.5 users in our university. PC's and 10.4 do not seem to be having this issue. When using CyberDuck and Goliath, I cannot login to the server whatsoever.
    Any thoughts?

    Attached is an upload link of log file
    These remind me why I like to use ProcMon to correlate and supplement
    all log messages. 
    FWIW I agree that clearing your SoftwareDistribution folder might change this aspect of your symptom description from setupact.log
    2013-12-25 07:32:52, Info                  DPX    CreateFileW failed, FileName:\\?\C:\Windows\SoftwareDistribution\Download\b3f099ae487c77fe455d9f17689e69a8\$dpx$.tmp\job.xml,
    Error:0x80070002
    It is really difficult "reading between the lines" to understand that one but I imagine it would be a lot easier having a ProcMon trace which showed exactly which file was "not found" (and whether it was the same one or a different one each time).  
    <eg>
    Robert Aldwinckle

  • Re: (forte-users) HTTP request through proxy server

    Daniel -
    No, it does not. ;)
    How do you say to HTTPRequest to go through proxy?
    Thanks,
    Taras
    Daniel Nguyen wrote:
    >
    Hi,
    It works very well. I have experienced this model for a distant Forte client
    calling a Forte Server service Object for instance without any environment
    and without TCP access (passing through firewall for instance).
    It has also worked very well to make an injectot to improve Web Enterprise
    and IIS using the SendRequest from HTTPAccess.
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    http://perso.club-internet.fr/dnguyen/
    Taras Katkov a &eacute;crit:
    HTTP request through proxy server using forte HTTP library?
    Any experience?
    Thanks,
    Taras
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com--
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    You can also use the HTTP-DC project.... You don't
    need Web Enterprise for this. From what I can tell,
    this is available in L.x on....
    There is api documentation in M.2 (with scant
    examples.)
    There's a special process to put the project in your
    repository (it isn't installed in the repository in
    the standard install,) the documentation in M.2
    (probably in M.0 too, AFAIK) that tells you how to do
    this (look for HTTP-DC in the online help.)
    I haven't done much with it yet, I've just installed
    it. If anybody out there has examples, that'd be
    great. I'll try to contribute more the moment I get a
    chance to explore it....
    Christopher Fury
    BellSouth Communications Systems
    --- Daniel Nguyen <dnguyenclub-internet.fr> wrote:
    Hi,
    If you have Web Enterprise, you can user
    HttpAccess.SendRequest().
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    Amin, Kamran a &eacute;crit:
    Is there any way to make a HTTP request from TOOLto another HTTP Service?
    thanks in advance.
    For the archives, go to:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. Tounsubscribe, send in a new
    email the word: 'Unsubscribe' to:forte-users-requestlists.xpedior.com
    For the archives, go to:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To
    unsubscribe, send in a new
    email the word: 'Unsubscribe' to:
    forte-users-requestlists.xpedior.com
    Kick off your party with Yahoo! Invites.
    http://invites.yahoo.com/

  • HTTP Request to Integration Server through ABAP Mapping

    Hi Experts,
    I need to send HTTP Request to Integration Server through ABAP Mapping.
    Could you please provide me ABAP code which will post data to Integration Server.
    Thanks,
    Abdur

    Hi Abdur,
       Can you explain your requierement more clearly?
    Abap mapping is purely to convert the data in source structure to data in target structure.
    It is not the job of Mapping to send data.
    Regards,
    ravi

  • Xmlspy Error submitting HTTP Request 400

    Hi All,
    Whe I try to open any XML file with XMLspy, for example  BizPackageMETA.xml, I get the an error :
    Sorry, but the file "http://localhost:8080/B1iXcellerator/exec/dummy//sim.com.sap.b1i.datasync.001/bp.Z.PRIELL/BizPackageMETA.xml" could not be opend!
    Error Submitting HTTP request for "http://localhost:8080/B1iXcellerator/exec/dummy//sim.com.sap.b1i.datasync.001/bp.Z.PRIELL/BizPackageMETA.xml":400
    I had enabled WebDav in xcellerator.cfg. Anything else I am missing ?

    Hi Hany,
    I already had opened service calls at Altova and SAP regarding this issue. It is related to a small bug in B1i when responding to a PROPFIND request with an url path with trailing slash.
    This bug should be fixed in the next B1i Patch.
    Meanwhile you can use the following workarounds:
    In older versions of XMLSpy you could just enter the path without trailing slash:
    http://localhost:8080/B1iXcellerator/exec/dummy
    Since the newer Version of XMLSpy automatically adds the trailing slash (which is the proper behaviour of a WebDAV client), you have to eleminate the additional slash in the resulting url path:
    http://localhost:8080/B1iXcellerator/exec/dummy//sim.com.sap.b1i.datasync.001/bp.Z.PRIELL/BizPackageMETA.xml
    =>
    http://localhost:8080/B1iXcellerator/exec/dummy/sim.com.sap.b1i.datasync.001/bp.Z.PRIELL/BizPackageMETA.xml
    The other way is to create a project with the external webfolder. Unfortunately XMLSpy adds the trailing slash also here. So you have to edit the created project file (.spp) afterwards to delete the trainling slash. Then it should look like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <Project>
         <ExtMountFolder FolderName="http://localhost:8080/B1iXcellerator/exec/dummy"/>
    </Project>
    Kind regards,
    Marcus

Maybe you are looking for

  • Problem with css reload (custom adf skin)

    I have defined a custom skin but changes in the css does not immediately show in the page. I have not figured out what triggers a rreload of the css. When I delete the generated css from the embedded OC4J a new one i immediately created but with the

  • Photo Gallery/Portfolio

    Hey! Been trying to figure this out for a while when I came across this question that was/wasn't answered in 2008 - wondering if it is possible today using CS5? "I want to have a portfolio page so that one sample of work will be displayed at a time (

  • Copied files corrupted

    I'm a little desperate here... Here's what happened. My MacBook Pro, early 2008, was acting up after upgrading to lion from snow leopard. So I thought I should go ahead and to a clean install since I had just upgraded each time a new os came out. I c

  • SOA Suite 10.1.3.4 on weblogic 9.2 patch 7490612 requires password?

    Hi guys, I was planning to install soa suite 10.1.3.4 on WLS 9.2. Instal guides talk about a patch 7490612. When i went to metalink, strangely this patch is password protected and requires one to raise an SR to get the pass. Wondering why is it so, s

  • Duplicating an edited clip.

    I want the same short clip to appear several times throughout my video. Is there a simple way to do this where I don't have to edit out this clip from a larger video multiple times?