Problem with a context node mapped

hi all,      
i have a problem in a WD application, when i execute a certain RFC, the model node in the controller mapped to that RFC (model), does not fill itself with the data that the RFC suppose to bring as a result. it seems to get lost in some point (the data). i check and all seems to be fine. I bind the node, then i execute it and later i invalidate it. It's not a role problem i've checked already, and the RFC in the backend when i run it, shows me data. Anyone knows what could this be?...       
Regards, 
Mariana

Well my context structure its like this
+ Zbapi_XYZ
  + OutputY
    + ReturnY
    + Table_XYZ (custom structure)
      -attribute_1
      -attribute_n
  + Return_IN ( bapireturn structure)
      -attribute_1
      -attribute_n
  +Table_XYZ_IN (custom structure)
      -attribute_1
      -attribute_n
  - attribute1
This is a model node, all the attribute are model attribute and both Table_XYZ_IN and Table_XYZ are from the same type of structure.
The binding is implemented in WdDoInit Method as follow:
Zbapi_Sd_Consulta_Doc_Serial_Input bapiSdConsultaDocSerial =
               new Zbapi_Sd_Consulta_Doc_Serial_Input();
          wdContext.nodeZbapi_Sd_Consulta_Doc_Serial_Input().bind(
               bapiSdConsultaDocSerial);
and the execution of the RFC is in a custom method call
public void ejecutarSdConsultaDocSerial( java.lang.String serial )
inside it has the follow code:
String nombreFuncion = "ejecutarSdConsultaDocSerial: ";
          String mensaje = "";
          boolean error = false;
          wdContext.currentZbapi_Sd_Consulta_Doc_Serial_InputElement().setPsernr(
               serial);
          try {
               wdContext
                    .currentZbapi_Sd_Consulta_Doc_Serial_InputElement()
                    .modelObject()
                    .execute();
               //Invalidates the output context node
               //wdContext.nodeOutputSD().invalidate();
            wdContext.nodeZbapi_Sd_Consulta_Doc_Serial_Input().invalidate();   
               //En la variable "mensaje" se almacena todos los mensajes de error concatenados
               for (int i = 0; i < wdContext.nodeReturnSD().size(); i = i + 1) {
                    IReturnSDElement retorno =
                         wdContext.nodeReturnSD().getReturnSDElementAt(i);
                    if (retorno.getType().equals("E")) {
                         error = true;
                         mensaje = mensaje + " " + retorno.getMessage();
               if (error) {
                    wdContext
                         .currentEstatusBAPIElement()
                         .setEstatusSdConsultaDocSerial(
                         0);
                    wdContext.currentEstatusBAPIElement().setMensajeError(
                         nombreFuncion + mensaje);
               } else {
                    wdContext
                         .currentEstatusBAPIElement()
                         .setEstatusSdConsultaDocSerial(
                         1);
          } catch (Exception ex) {
               wdContext
                    .currentEstatusBAPIElement()
                    .setEstatusSdConsultaDocSerial(
                    0);
               wdContext.currentEstatusBAPIElement().setMensajeError(
                    nombreFuncion + ex.getMessage());

Similar Messages

  • Problems with external context mapping

    Hi ,
    I am having the following problems with external context mapping from one WD component to another.
    Problem description:
    In the <i>Component Interfaces</i> I have defined a WD interface "InfA".
    In the <i>interface controller</i> of this compoenent,I have ContextA and attributeA(cardinality 1..1).The contextA is marked as an "Input Element".
    Now my webdynpro componentB adds InfA as used component.In componentB I decalre a contextB with attributeB and map it to contextA to set up the external context mapping.
    Now I expect that if any webdynpro component implements this WD interface InfA ,he has access to contextA with the data getting filled from contextB.
    After i have created the component for the used component I try to fill values in the source node contextB thru this code:
    wdContext.currentContextB.setB(value);
    But in the runtime I keep getting error nullPointerException for nodeContextB,suggesting that the mapping has not been completed.
    Can anyone suggest due to what the error can come ,and, if its a webdynpro bug ,is there a workaround??
    Thanks in advance for your help.
    Best regards
    Sourav

    HI,
    Valery : I personally checked  by doing the example, if the names of value attribute are different in the child's interface and parents component controller then it throws the exception.
    Sourav: NullPointer Exception is thrown when something is not properly initialised, if in the main component the cardinality of mapped origin is 1.1 then you need to access it element directly like:
    wdContext.currentParentNodeElement().setFname("Abhijeet");
        wdContext.currentParentNodeElement().setLname("M");
    i will suggest just check out if you are declaring some element of value node and without initialising taking its use or what?
    if this doesnt solve your problem, please post the expanded exception.
    hope it helps
    let me know if you face nay problem
    regards

  • Problems with Initial steps for Mapping with Java in XI 3.0

    Hi,
    I am having problems with a simple java mapping in XI 3.0. I have created another test class in my PC to test it ,and it works.
    But when I use it in a example mapping it does not work.
    I think the reason is because It cannot find the classes used in the XI server.
    What do I have to do to make it work ?
    Do I need to add / change / view something in the XI server?
    Thanks a lot...
    David

    Down by java mapping

  • Dynamic reverse context node mapping at runtime

    Hi!
    I have an application which uses another embedded component containing a ALV table which shows the data of a transparent table.
    Everything works fine if i'm working with a static table with static attributes and map the context node of the application to the node in the embedded component. The context node in the embedded component is reversed mapped and gets its data from the application's context node.
    Now i want to do it dynamically. Inside the application the user should choose the name of a table and I'm using RTTI functions to get it's technical informations. At runtime i'm adding dynamically attributes (i.e. fieldname, type, length) to a static context node called 'DATA'.
    The ALV component of the embedded component is mapped to an interface context node named 'DATA' which uses reverse mapping to receive data from the applications context node 'DATA'.
    What I need to know is how to create the mapping between application context node and interface context node of the embedded component at runtime after i have created the attributes of the node dynamically. Is that basically possible?
    I've already tried to map the both nodes statically to see if the dynamically created attributes are mapped automatically then. The mapping seems to be fine at node level, but doesn't work for the later dynamically added attributes.
    Could someone point me to informations if dynamic mapping context nodes is basically possible and how to do it?
    Regards
    Ralf-J.

    Hi Lars!
    Thanks for the link! The problem isn't to fill the context node dynamically. That's already working using RTTI etc.
    It seems to me that the interface context node of the ALV in the embedded component doesn't recognize the dynamically added attributes. As i wrote the binding on node level (DATA->DATA), which i'm doing at design time, is working as expected, but the added attributes are only shown in the context node of the using component but not in the embedded.
    I'm still thinking there must be a way to do a binding at runtime. On the other hand the comment of Glenn in the thread you've pointed me to, seems to suggest that the ALV itself might have problems with dynamically appended attributes.
    Regards
    Ralf-J.

  • How to implement Dynamic Context Node Mapping between Components

    Hey genuis:
               I am looking for how to implement context mapping bwteen two components. I read some threads, and try to use external context mapping. The example works fine. However, my requirement is more than that.
    I have a context node in Component B, and the attributes in it are dynamically generated. Component A is the main component which use Component B's function. Both A and B work fine by theirselves. 
    When I assemble A and B (external mapping), the system gives me a exception:com.sap.tc.webdynpro.progmodel.context.ContextException: MappedNodeInfo(T8UploadCompInterface.data): cannot create nodes, no mapping defined yet.
    Please give me some suggestion?
    Any responses are appreciated.

    I miss this thread.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6fdae690-0201-0010-a580-d104b459cb44
    This is almost the right solution for my problem.

  • Synchronous RFC -- SOAP Scenario: problem with SOAP Response/Fault Mapping

    Hi,
    I've a synchronous RFC --> PI --> SOAP Scenario. The problem is that the message structure of the sending RFC doesn't match the Webservice Structure.
    The (SAP standard) RFC has just a Request / Response message structure. Part of the Response Message structure is a exception structure.
    The Webservice has a Request / Response message structure and in case of an error I get a SOAP:Fault.
    Problem now is that I cannot configure that scenario without usage of BPM as I will have to map SOAP:Response or SOAP:Fault to the RFC Response structure.
    Has anybody another idea to do that synchronous scenario (with usage of message mapping) without BPM?
    BR
    Holger

    1)
    you maus define 3 mapping.
    1)request
    2)response
    3)Fault
    in Interface mapping define at response boths (2-3) mapping. its clear??
    2)
    otherwise sometjhing is not clear, why do you want fault?? why dont you  get only response message. we implement this kind of response:
    <response_MT>
    <ID> (error ID)
    <system> (target system) 
    <error> (Error Description)
    </response>
    by this way fault message is not needed. but if you must have it just follow the top of message else, propose second.
    Thanks
    Rodrigo
    Thanks
    Rodrigo
    Edited by: Rodrigo Pertierra on Feb 25, 2008 11:52 AM

  • Table View with Multiple Context Nodes

    I want to create a table-view consisting of an object composition, e.g. multiple business objects. The chtml:configCellerator -tag supports just one context node which corresponds to just one business object.
    How do you create a table composed by different objects, i.e. BTAdminH and BTAdminI ?
    Edited by: romanglass on May 18, 2010 4:07 PM

    Hi,
    I would suggest to create a new component and not to disturb the standard ones. Because the super class of the header context node (BTAdminH in your case) must be inherited from CL_BSP_WD_CONTEXT_NODE_DTV - Deep table view.
    The dependent nodes must be passed to return parameter rt_result of method GET_SUB_CNODE_DEFINITIONS.
    This cant be done via wizard. I just tried to replicate your scenario. Below are the steps,
    1. create a view with context node BTADMINH as tableview. Then change the super class of the context node to   CL_BSP_WD_CONTEXT_NODE_DTV.
    2. Add another context node BTADMINI and mark it as dependent to BTADMINH.
    3. Now change the super class of context node BTADMINI to CL_BSP_WD_CONTEXT_NODE_TV  (Table View).
    4. Redefine method GET_SUB_CNODE_DEFINITIONS in context node BTADMINH.
    In the view layout you should use cellerator and pass an iterator with interface IF_THTMLB_CELLERATOR_ITERATOR. The interface has a method RENDER_DEPENDANT_OBJECTS which returns the table of dependant objects.
    Regards,
    Arun
    Edited by: Arun Kumar on May 19, 2010 1:01 PM

  • Problem with total context score in COMPARISSION VIEW in SSM

    Dear friends,
    We have scorecard  with 4 contexts (region).Every context has 3 level: perspective ,objective KPIs. Every level get score and all the context get total score .We have requirement to compare between  region context scores. For it we use comparison view. BUT AT comparison  view  we can compare the score of perspective ,objective KPIs but not total score of the context .Total score is disappear.  I don’t know if there is bug or it's a problem of implementation. I very glad to get help from us.
    Best regard,
    Benyamin Orit.

    Hi Orit,
    I do not believe its an implementation problem, I have checked our implementation which is currently running SSM 10.1 sp03  and the context score doesn't appear neither in the comparison view.
    Probably this feature is simply not included yet in this sp. Maybe another colleague can confirm if this feature is included in further sps... but I didn't find any release note mentioning it, and according to a screenshot I just saw (posted by Colin Cooper on the ideas place), it doesn't seem to be included in sp06 (see Colin's screenshot of comparison view without context scores showing).
    In the main time try to work around it, maybe creating a new level (perspective) thats called "context xxx score" and put the rest of the scorecard one level under it, even though it doesn't sound very purist, you should be able to compare all context scores on the comparison view tab.
    Regards,

  • Problems with loading 3.04 maps

    could someone please explain in simple terms the steps req to install the new free maps[3.04]into a n97mini please,i have tryed several times and get different problems every time i try and do i need to be connected to internet for them to work,first it crashed and now it wont show any roads and states i carnt start navigation from this location, i am in australia,are aussie maps supported in 3.04.
    please help
    Solved!
    Go to Solution.

    Hi suzukir8
    Firstly can you open OVI Maps click "?" bottom left of screen > About and post which version is quoted in top line of screen? Has v3.04 actually installed or still remains on v3.03?
    If v3.04 has failed to install you could try going to Menu > Settings > Application mgr. > Installed apps anduninstall any of these present: Open C LIBSSL,Open C LIBSSL Patch, OVI Maps Wi-Fi/Network Positioning, PIPS Installer, Share Location Agent, Share Location, Share Location Widget, Standard C++ Library Common, Standard C++ Library Patch, Symbian OS Pipes Upgrade, Symbian OS PIPS Upgrade & Upgrade for OpenC LIBZ Support.
    You can download v3.04 directly from here and try installing again:
    http://nds1.nokia.com/phones/files/software/maps_i nstaller_3.04_10wk17_b07_s60_5.0.Nocs.sis 
    There is no problem with map data for Australia being compatible but would suggest that you delete E:\cities and .qf file, run OVI Maps to define folder needed on memory card and re-download your regional maps.
    I f you are having problems locating position, I would suggest go to Menu > Applications > Location > Positioning > Positioning Methods and try disabling WiFi/Network.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • IOS 8 + landscape mode + AIR SDK 16 & 17 = problem with lost context

    It's seems that the "landscape" orientation make a 100% reproductible beug on my apps when I return to it after calling the camera or "picture explorer" (with a native extension or with AS3, this is the same problem).
    The problem is huge !! : no more texture present on the app, the photo taked with cam is partially visible, sometime a black square blink, no more interaction seems possible.
    I only reproduce this beug in landscape orientation, with ios8 and Air Sdk 17.0.0.124 or Air Sdk 16 on iphone 6.
    No problem with portrait orientation or Air Sdk = 15 or with a different version of ios.
    I've modified the last "Demo_Mobile" example include in starling, put the app in landscape mode and added a simple call to CameraUI, I still have the same problem.
    Any idea ?
    P.S :
    I'm also interested to know if someone else can or can't reproduce the beug on iphone6 with the starling example in landscape mode or
    can simply call the camera in landscape mode without problem on iphone 6 with the SDK 16 or 17.

    Hi,
    I faced the same problem using iAd iOS Extension (Adobe and Milkman Games ANEs).
    When a user clicks on one of the banner ads, a fullscreen pop-up ad is shown, and after closing this screen, the size of my app (a Starling app) is reduced by one third, I get a blinking rectangle on the top of the screen and a white rectangle on the vacuum remaining third to right.
    AIRSDK 16.x.x
    AIRSDK 17.0.0.123
    iOS 8.1
    Best regards,

  • Problem with email update and Map as well in ios6 though i am using iphone5.., problem with email update and Map as well in ios6 though i am using iphone5..

    Hello.
    I am having problem with my email update. i am not getting my email update in time on my iphone4 since i installed ios6. that was fine with ios5.
    I brought iphone5 but still the same problem. its not shown automatically in my iphone screen whenever i get my email.
    Same having big problem with imap.....
    Riaz

    The problem?  It's actually pretty simple: Microsoft implemented their mail processing in a way that has greatly assisted folks using Microsoft products and Microsoft platforms, and established an "export" mechanism when communicating via mail in heterogeneous computing environments.  Microsoft tools including Microsoft Exchange Server and their systems running Microsoft Windows are a good and very capable mail environment system, with great scale and very well integrated mail, calendar and related processing, and some exceedingly useful tools including SharePoint that have no real analog with OS X, Unix or Linux systems.   But these tools don't necessarily interoperate entirely nicely in heterogeneous environments; with non-Microsoft tools and platforms.
    The winmail.dat mechanism is a part of the whole Microsoft infrastructure, and particularly when the information is being "exported" out from the Microsoft environment, and into a non-Windows and non-Exchange environment.  The determinate here involves the settings chosen by the various senders.  (Possibly also by the defaults chosen by the administrator of the Exchange Server(s) involved, but I haven't checked that.)
    Here's the Microsoft knowledge base article that describes the specificss of the winmail.dat file. 
    There are tools around to read the TNEF-format winmail.dat files on OS X and other platforms, including TNEF's enough for OS X, and likely various other tools.   Or get your senders to reconfigure their settings for you when they're sending messages to you, as described in the Microsoft KB article.

  • Problem with CrossComponent Context Mapping with PopupWindow (web dynpro ab

    The situation:
    I have four views (View V1, V2, V2_popup, V3) in three Components C1, C2,C3.
    View V1 is embeded in Component C1. View V2 is embeded in C2 with view V2_popup as Popup-Window.
    View V3 is embeded in Component-C3. And at last the View of Component C2 and C3 are embeded in View V1.
    The Problem is the CrossOver Context Mapping between the view V2 and V3.
    My first way is the "direct context mapping":
    I define a node in the ComponenteControllen from Component-C2 as interface and use it over the ComponentenController
    from Component-C3 in view-V3. Now I bind an attribute of the mapped node to an ui-element (e.g: inputfield),
    but the output of the Field is empty.
    The second way is, that I define an external Mapping for this situtation.
    I define a node in the componente-controllen from Component-C2 (an Component-C3)as interface with the attribute "Input Element (Ext)".
    Than I map the two nodes with a node from Component-C1. That's works fine.
    BUT, if I execute an action (e.g. action_save)in the popup for view-v2 (V2_popup) the changings from the inputfields don't write (show)in the context of the
    popup-view. I check this with the debugger. And if I close the popup and open it again, the changings are visible.
    Short: If I define a node with attribute "Input Element (Ext)", I don't can read changings from
    the screen in a popup-window.
    How I can solve this problem???
    Message was edited by:
            Maik Sturm

    Hi Maik,
    try this:
    at first you have to instantiate all! used components in the wddoinit method of the componentcontroller in your main (c1) component.
    e.g. instance of c2 Component
      lr_usage_c2_comp =   wd_this->wd_cpuse_c2_comp( ).
      IF lr_usage_c2_comp->has_active_component( ) IS INITIAL.
        lr_usage_c2_comp->create_component( ).
      ENDIF.
    and at the end set the reference:
      l_ref_interfacecontroller =  wd_this->wd_cpifc_c3_comp( ).
      l_ref_interfacecontroller->set_usage(
        ir_usage_c2_comp = lr_usage_c2_comp ).
    set_usage is a method in the c3 component controller,
    METHOD set_usage .
      DATA: lr_usage TYPE REF TO if_wd_component_usage.
      lr_usage = wd_this->wd_cpuse_c2_comp( ).
      lr_usage->enter_referencing_mode( ir_usage_c2_comp ).
    After doing this the components are using the same instance and you can simply use direct mapping between the components.
    Hope it helps.
    regards
    Christian

  • Problem with empty context fields

    Hello everyone,
    I started a new project importing a web service model which generated the necesarry classes. Then I created the data links between the model, controller and views. Next, I defined some inputfields and mapped them to the context.
    My problem is the following: Only a few fields allow themselves to be filled in, and others simply ignore any setters I call. (I'm not even calling the webservice yet, simply predefining some fields in do init)
    In my wdDoInit method I simply create a new root element:
    wdContext.nodeRequest_INT_QueryAccProcReqRes_INT_QueryAccProcReqRes().bind(new Request_INT_QueryAccProcReqRes_INT_QueryAccProcReqRes());
    Then, when the user clicks a button, or whatever, I try to retrieve the values he's filled in. Just for testing purposes.
    OnActionSearch:
    IWDMessageManager manager = wdComponentAPI.getMessageManager();
    String temp = wdContext.currentRequest_INT_QueryAccProcReqRes_INT_QueryAccProcReqResElement().modelObject().getMT_QueryAccProcReq().getCRMonDemand().getSearch().getIndustry();
    manager.reportException("industry: " + temp, false);     
    temp = wdContext.currentRequest_INT_QueryAccProcReqRes_INT_QueryAccProcReqResElement().modelObject().getMT_QueryAccProcReq().getCRMonDemand().getSearch().getLocation();
    manager.reportException("location: " + temp, false);
    The weird thing is that everything that's located under 1 specific node works flawlessly, and that everything else doesn't work. The message manager simply retrieves a null value.
    Am I overlooking something obvious here?
    Thank you for any help given,
    NR.

    Just for a reference: this is what my context looks like:
    -Root
      -Request (0-n)
        -Query (0-1)
          -CrmOnDemand (0-1)
            -Search (0-1)
              +accountName
              +industry
              +location
              +sapAccountNbr
            +password
            +url
            +user
       -Response (0-1)
    Doesn't initialising the Request node mean that everything that is beneath it is initialised as well? Because if I try to init every little sub-node and bind it to the context, nothing works anymore.

  • [Win/CS3] Problem with tree view nodes display In Release Version of InDesign

    b [Win/CS3]
    Hi All,
    I am Facing a problem from last few days.I have a dialog on which i have a treeview ListBox.I am filling this listBox dynamically.On a Button click Event.
    My requirement is to show Some text value on the node and Index value on the back end.So When i select String1 the index1 should be Selected.
    b This Listbox is working fine ON Debug Version. But Crashing On Release Version.That seems Strange to me..........?????????
    b in DialogObserver::Update on button click event
    NodeID node = IDCGridNodeID::Create(IndexX);
    treeMgr->NodeAdded(node);
    b and in TreeviewMgr::ApplyDataToWidget
    TreeNodePtr<IDCGridNodeID> nodeID(node);
    PMString IndexNo= nodeID->GetName();
    I am going to database and retrieving string value according to that
    IndexNo.
    WCHAR Buf[200];// this contains value retrieve from database
    Then i am converting WCHAR[] to CHAR[] BY using
    size_t origsize = wcslen(Buf) + 1 ;
    const size_t newsize = 100;
    size_t convertedChars = 0;
    char nstring[newsize];
    wcstombs_s (&convertedChars, nstring, origsize, buf, _TRUNCATE);
    PMString StringToDisplay(nstring);
    //Till here its working fine
    But when i am setting this value as Node name
    style.Translate();
    setNodeName( widgetList, StringToDisplay, kIDCTVTextWidgetID );
    and function return kTrue; statement executed The application is crashing.
    With error showing
    b INdesign Encountered a problem Needs to close.
    I Am not able to find out why this is not working on Release while it is working fine on debug version..???????????????????
    Is I am missing or Made some changes For release version..????
    Thanks,

    Hi Michael,
    Thanks for your reply.
    The lines
    NodeID node = IDCGridNodeID::Create(IndexX);
    treeMgr->NodeAdded(node);
    are working fine for Both Debug N Release version.The Application Is crashing In tree view manager class as i explained.
    while it works fine without having even a single warning in debug version.
    I read the document and i find out if i want to add node in treeview i have to call
    treeMgr->NodeAdded(node);
    which will call manager
    b and in TreeviewMgr::ApplyDataToWidget
    i am getting my node name as
    TreeNodePtr<IDCGridNodeID> nodeID(node);
    PMString IndexNo= nodeID->GetName();
    I don't think that something is wrong in this but i am not sure becoz i am new in indesign development.
    for adding nodes i referred the SDK examples.I found the same code for adding.

  • Problem with 2 tables nodes in MAIN window in smartforms...

    Hello Experts,
    I have created 2 table nodes in my MAIN window to display data coming from different internal tables.
    Now, the problem is that whenever the 1st table node page breaks, the 2nd table node gets affected
    and it also page breaks. What I want is that the 2nd table must finish displaying certain number of records
    before the page break of the 1st table node takes effect.
    For example, I want to display 10 records for both table nodes 1 and 2. So I created an event in
    table node 1 that if it is 10 records or more, then it will go to the next page. So in effect, my table
    2 node did not print any records at all in the 1st page and it only started printing its first record in page 2.
    How do I print 10 records also in table node 2 before it page breaks?

    Hi,
    It's simple,
    Pre- U should had declared a second page for the same window with header, main & footer.
    now
    First when u r looping the internal table provide no of rows eg Row 1 TO 10. in the Loop ( Data Tab)
    or
    when defing TEXT Go to PC Editor and mention all the fields Under  PROTECT -  ENDPROTECT.
    This would solve the issue.
    Thanks
    Ravi

Maybe you are looking for

  • Ppcs5 on win 7 (64bit)  runtime error message when starting PPRO

    Just installed cs5 on a dell win 7 64bit machine, and when I start ppro cs5 I get an error message that says "Runtime Error!.... this application has requested the Runtime to terminate it in an unusal way... On a different machine (win 7 (64 bit), I

  • I need to update my old iPod touch. How can i do that?

    my ipod haven't been updated for a long time around 8 month and now i can't download anuthing from the store because it does not have the latest version ios 3 something. can somedoby help me??? please!!! i need to knoe tho steps to fallow to update i

  • IMac Core 2 Duo vs MacBook Air i7

    hi all, Q: performace-wise, which is "better"? iMac: 2.66ghz Core 2 Duo New MacBook Air: 1.8ghz Core i7 some background: a few months ago (march 2011) i purchased an 11" MBA (1.4ghz Core 2 Duo, 128GB HD (currently with 80GB free), 4GB RAM) and i love

  • Runtime Mapping step throws error

    Good Morning All, Recently we migrgated our XI server from Windows to Linux environment. after migration,We tried to test our interfaces, No Interface are working, XI is getting the messages,In Runtime Mapping step it failed every interfaces due to e

  • Memory Leak in libtorrent-rasterbar 0.15.7-1

    Just wondering if anyone else is having memory leak issues with libtorrent-rasterbar 0.15.7-1.  It took me a while to find it since I had assumed it was something to do with deluge, but I found if I downgrade to 0.15.6-3, the memory leak goes away.