On Wed, Apr 6, 2011 at 12:29 PM, Senaka Fernando <[email protected]> wrote:
> Hi Charitha, Sameera,
>
> Thanks for the feedback. I believe that there might be some issues @
> JSP-level after the stub migration effort. Ajith please verify the packs and
> see whether there are any JSP-level issues that have cropped up after the
> stub migrations.
>
Hi Senaka,
Plz apply patches(CARBON-9310-patch and CARBON-9309-patch) to fix above
two issues.
Thanks
Ajithn
>
> Thanks,
> Senaka.
>
>
> On Wed, Apr 6, 2011 at 12:19 PM, Charitha Kankanamge <[email protected]>wrote:
>
>> AFAIK these failures cannot be captured by integration tests. These are
>> JSP failures. Our integration tests are based on admin services.
>>
>> Regards
>> Charitha
>>
>>
>> On Wed, Apr 6, 2011 at 12:09 PM, Senaka Fernando <[email protected]> wrote:
>>
>>> Hi Evanthika,
>>>
>>> During the last few days, we were solely focusing on the build and
>>> getting the build perfected. All unit-tests related to the components and
>>> product were passing fine, but we discovered that the product integration
>>> tests were removed added for some reason (Janaka is looking into this right
>>> now), however, AFAIK, there aren't any failures in those as well.
>>>
>>> We have done a complete rebuild of the packs from scratch locally, and we
>>> will use those to double check whether these issues are around. If there are
>>> any issues we will have these sorted asap.
>>>
>>> Thanks,
>>> Senaka.
>>>
>>> On Wed, Apr 6, 2011 at 12:02 PM, Evanthika Amarasiri <[email protected]
>>> > wrote:
>>>
>>>> Hi All,
>>>>
>>>> The following blockers [1], [2] were found with the packs downloaded
>>>> from [3]. These are basic functionalities and I'm not sure how such basic
>>>> issues could slip from you all. This pack is unusable and I'm sure there
>>>> may
>>>> be hundreds of other issues as well. Please be good enough to build the
>>>> next
>>>> pack after doing a smoke test to see whether at least the basic
>>>> functionalities are working.
>>>>
>>>> [1] - https://wso2.org/jira/browse/CARBON-9309
>>>> [2] - https://wso2.org/jira/browse/CARBON-9310
>>>> [3] - http://10.100.1.43/~carbon/releases/carbon/3.2.0/latest/
>>>>
>>>>
>>>> Regards,
>>>> Evanthika
>>>>
>>>> _______________________________________________
>>>> Carbon-dev mailing list
>>>> [email protected]
>>>> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>>>>
>>>>
>>>
>>>
>>> --
>>> *Senaka Fernando*
>>> Product Manager - WSO2 Governance Registry;
>>> Associate Technical Lead; WSO2, Inc.; http://wso2.com*
>>> Member; Apache Software Foundation; http://apache.org
>>>
>>> E-mail: senaka AT wso2.com
>>> **P: +1 408 754 7388; ext: 51736*; *M: +94 77 322 1818
>>> Linked-In: http://www.linkedin.com/in/senakafernando
>>>
>>> *Lean . Enterprise . Middleware
>>>
>>>
>>> _______________________________________________
>>> Carbon-dev mailing list
>>> [email protected]
>>> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>>>
>>>
>>
>
>
> --
> *Senaka Fernando*
> Product Manager - WSO2 Governance Registry;
> Associate Technical Lead; WSO2, Inc.; http://wso2.com*
> Member; Apache Software Foundation; http://apache.org
>
> E-mail: senaka AT wso2.com
> **P: +1 408 754 7388; ext: 51736*; *M: +94 77 322 1818
> Linked-In: http://www.linkedin.com/in/senakafernando
>
> *Lean . Enterprise . Middleware
>
>
> _______________________________________________
> Carbon-dev mailing list
> [email protected]
> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>
>
Index:
org.wso2.carbon.registry.eventing/src/main/java/org/wso2/carbon/registry/eventing/internal/RegistryEventingServiceComponent.java
===================================================================
---
org.wso2.carbon.registry.eventing/src/main/java/org/wso2/carbon/registry/eventing/internal/RegistryEventingServiceComponent.java
(revision 91702)
+++
org.wso2.carbon.registry.eventing/src/main/java/org/wso2/carbon/registry/eventing/internal/RegistryEventingServiceComponent.java
(working copy)
@@ -103,6 +103,7 @@
protected void activate(ComponentContext context) {
bundleContext = context.getBundleContext();
+ registerEventingService();
log.debug("Registry Eventing bundle is activated ");
}
Index:
org.wso2.carbon.governance.services.ui/src/main/resources/web/services/add_service_ajaxprocessor.jsp
===================================================================
---
org.wso2.carbon.governance.services.ui/src/main/resources/web/services/add_service_ajaxprocessor.jsp
(revision 91702)
+++
org.wso2.carbon.governance.services.ui/src/main/resources/web/services/add_service_ajaxprocessor.jsp
(working copy)
@@ -63,11 +63,12 @@
response.sendRedirect(resourcePagePath);
}else{
request.setAttribute(CarbonUIMessage.ID,new
CarbonUIMessage(error1,error1,null));
+ CarbonUIMessage uiMsg = new CarbonUIMessage(CarbonUIMessage.ERROR,
error1, null);
+ session.setAttribute(CarbonUIMessage.ID, uiMsg);
-
%>
-<jsp:forward page="../admin/error.jsp?<%=error1%>"/>
+<jsp:forward page="../admin/error.jsp"/>
<%}
} catch (Exception e) {
@@ -77,10 +78,11 @@
return;
}
request.setAttribute(CarbonUIMessage.ID,new
CarbonUIMessage(error2,error2,null));
-
+ CarbonUIMessage uiMsg = new CarbonUIMessage(CarbonUIMessage.ERROR,
e.getMessage(), e);
+ session.setAttribute(CarbonUIMessage.ID, uiMsg);
%>
-<jsp:forward page="../admin/error.jsp?<%=error2%>"/>
+<jsp:forward page="../admin/error.jsp"/>
<%
_______________________________________________
Carbon-dev mailing list
[email protected]
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev