JDeveloper debug issues

Hi Gurus,
I gotta problem here with Jdev(Java 1.4, Struts, OC4J), I'm trying to debug a java 'trans' class, and when the process enters to the class, the console dont show the println and doesnt concat the strings and also, dont execute the vo query well, I have program many other classes and they run and debug without any problem or issue, what can be the issue here ?
heres my action method:
public class RepVisitasAction extends DispatchAction {
public RepVisitasAction() {
public ActionForward generarReporte (ActionMapping mapping, ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws IOException,
ServletException {
AccessControlMgr ac = new AccessControlMgr();
if (ac.isValidSession(request) == false) {
return mapping.findForward("accessControl");
RepVisitasForm repForm = null;
String fwd="reporteVisitas";
repForm = (RepVisitasForm)form;
String zona = repForm.getZonaSelected();
String crs = getTiendasPorZona(zona);
XxtaReporteVisitasTransactionsAlter trans = null;
DateFormat format;
Date ini;
Date fin;
SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
try{   
trans = new XxtaReporteVisitasTransactionsAlter();
format = new SimpleDateFormat("yyyy-MM-dd");
ini = (Date)format.parse(repForm.getFechaInicialSelected());
fin = (Date)format.parse(repForm.getFechaFinalSelected());
String periodo = "'" + sdf.format(ini) + "' AND '" + sdf.format(fin) + "'";
request.getSession().setAttribute("periodo", periodo);
ArrayList nivel1 = new ArrayList();
nivel1 = trans.getReporte1(crs,periodo);
repForm.setNivel1(nivel1);
repForm.setLevel("2");
catch(Exception ex){
ex.printStackTrace();
finally{
trans.releaseConnection();
return mapping.findForward(fwd);
private String getTiendasPorZona(String zona){
XxtaReporteVisitasTransactionsAlter trans = null;
String crs = null;
try{
trans = new XxtaReporteVisitasTransactionsAlter();
crs = trans.getTiendasPorZona(zona);
}catch(Exception ex){
ex.printStackTrace();
}finally{
trans.releaseConnection();
return crs;
heres my trans code:
public class XxtaReporteVisitasTransactionsAlter extends XxtaBaseTransactions {
private static final String queryZonas1 = "select * from (SELECT p.zona, (SELECT COUNT(pv.cr_tienda) FROM cnt_tiendas_x_plaza_v pv INNER JOIN xxta_zonas zo ON (zo.nombre_zona = pv.zona) WHERE pv.zona = p.zona) AS total_tiendas, COUNT(DISTINCT v.cr_tienda) AS tiendas_encuestadas, round((COUNT(DISTINCT v.cr_tienda) * 100 / GREATEST((SELECT COUNT(pv.cr_tienda) FROM cnt_tiendas_x_plaza_v pv INNER JOIN xxta_zonas zo ON (zo.nombre_zona = pv.zona) WHERE pv.zona = p.zona), 1)),2) AS porcentaje_tiendas_encues, COUNT(DISTINCT a.enc_id) AS encuestas_realizadas FROM xxta_control_visitas v INNER JOIN xxta_control_enc_answers a ON (v.doc_id = a.doc_id) RIGHT JOIN cnt_tiendas_x_plaza_v tp ON (v.cr_tienda = tp.cr_tienda) INNER JOIN cnt_distritos_x_plaza_v p ON (p.plaza = v.cr_plaza) ";
private static final String queryZonas2 = " GROUP BY p.zona )";
private static final String queryPlazas1 = "SELECT tp.plaza, (SELECT COUNT(p.cr_tienda) FROM cnt_tiendas_x_plaza_v p) AS total_tiendas, COUNT(DISTINCT v.cr_tienda) AS tiendas_encuestadas, round((COUNT(DISTINCT v.cr_tienda) * 100 / GREATEST((SELECT COUNT(p.cr_tienda) FROM cnt_tiendas_x_plaza_v p),1)),2) AS porcentaje_tiendas_encues, COUNT(DISTINCT a.enc_id) AS encuestas_realizadas FROM xxta_control_visitas v INNER JOIN xxta_control_enc_answers a ON (v.doc_id = a.doc_id) RIGHT JOIN cnt_tiendas_x_plaza_v tp ON (v.cr_tienda = tp.cr_tienda) ";
private static final String queryPlazas2 = " GROUP BY tp.plaza";
private static final String queryDtos1 = "SELECT p.distrito, p.id_distrito, (SELECT COUNT(pv.cr_tienda) FROM cnt_tiendas_x_plaza_v pv WHERE pv.distrito = p.distrito) AS total_tiendas, COUNT(DISTINCT v.cr_tienda) AS tiendas_encuestadas, round((COUNT(DISTINCT v.cr_tienda) * 100 / GREATEST((SELECT COUNT(pv.cr_tienda) FROM cnt_tiendas_x_plaza_v pv WHERE pv.distrito = p.distrito), 1)),2) AS porcentaje_tiendas_encues, COUNT(DISTINCT a.enc_id) AS encuestas_realizadas FROM xxta_control_visitas v INNER JOIN xxta_control_enc_answers a ON (v.doc_id = a.doc_id) RIGHT JOIN cnt_tiendas_x_plaza_v tp ON (v.cr_tienda = tp.cr_tienda) INNER JOIN cnt_distritos_x_plaza_v p ON (p.plaza = v.cr_plaza) ";
private static final String queryDtos2 = " GROUP BY p.distrito, p.id_distrito";
public XxtaReporteVisitasTransactionsAlter() {
public String getTiendasPorZona(String zona){
XxtaTiendaPorZonaViewImpl vo = null;
String cadena = "";
try{
vo = (XxtaTiendaPorZonaViewImpl)XxtaModule.findViewObject("XxtaTiendaPorZonaView");
vo.clearCache();
vo.setRangeSize(-1);
if(!zona.equalsIgnoreCase("todos")){
vo.setWhereClause("zona = '" + zona + "' ");
vo.executeQuery();
Row[] row = vo.getAllRowsInRange();
for(int i = 0; i < row.length; i++){
XxtaTiendaPorZonaViewRowImpl vor = (XxtaTiendaPorZonaViewRowImpl)row;
if(!cadena.equalsIgnoreCase("")){
cadena += ",'" + vor.getCrTienda() + "'";
}else{
cadena += "'" + vor.getCrTienda() + "'";
}catch(Exception ex){
ex.printStackTrace();
}finally{
if(vo != null){
vo.closeRowSet();
return cadena;
public ArrayList getReporte1(String crs, String periodo){
XxtaRepVisitasZonaViewImpl vo = null;
ArrayList list = null;
StringBuffer query = new StringBuffer();
int totalTiendas = 0;
int tiendasEnc = 0;
int por1 = 0;
int tiendasSin = 0;
int totalInv = 0;
int totalEnc = 0;
int encInv = 0;
try{
if(!crs.equalsIgnoreCase("")){
query.append(queryZonas1).append(" WHERE v.cr_tienda IN (").append(crs).append(") AND a.tienda_end_date BETWEEN ").append(periodo).append(queryZonas2);
//query = queryZonas1 + " WHERE v.cr_tienda IN (" + crs + ") AND a.tienda_end_date BETWEEN " + periodo + queryZonas2;
}else{
query.append(queryZonas1).append(" WHERE a.tienda_end_date BETWEEN ").append(periodo).append(queryZonas2);
//query = queryZonas1 + " WHERE a.tienda_end_date BETWEEN " + periodo + queryZonas2;
vo = (XxtaRepVisitasZonaViewImpl)XxtaModule.findViewObject("XxtaRepVisitasZonaView");
vo.clearCache();
vo.setRangeSize(-1);
//System.out.println("Query: " + query.toString());
vo.setQuery(query.toString());
System.out.println(vo.getQuery());
vo.executeQuery();
Row[] row = vo.getAllRowsInRange();
list = new ArrayList();
for(int i = 0; i < row.length; i++){
XxtaRepVisitasZonaViewRowImpl vor = (XxtaRepVisitasZonaViewRowImpl)row[i];
ReporteVisitasBean bean = new ReporteVisitasBean();
bean.setZona(vor.getZona());
bean.setTotalTiendas(vor.getTotalTiendas().toString());
bean.setTiendasEncuestadas(vor.getTiendasEncuestadas().toString());
int ti = Integer.parseInt(vor.getTotalTiendas().toString()) - Integer.parseInt(vor.getTiendasEncuestadas().toString());
int por = (Integer.parseInt(vor.getTiendasEncuestadas().toString()) / Integer.parseInt(vor.getTotalTiendas().toString())) * 100;
bean.setPorcentajeTiendas("%" + String.valueOf(por));
bean.setTiendasSinEncuestas(String.valueOf(ti));
bean.setPorcentajeTiendasSin("%" + String.valueOf(100-por));
String invRea = getInventariosRealizados("(" + crs + ")");
bean.setInventariosRealizados(invRea);
bean.setEncuestasRealizadas(vor.getEncuestasRealizadas().toString());
int per = (Integer.parseInt(vor.getEncuestasRealizadas().toString())/Integer.parseInt(invRea));
bean.setEncuestasPorInventarios("%" + String.valueOf(per));
list.add(bean);
totalTiendas += Integer.parseInt(vor.getTotalTiendas().toString());
tiendasEnc += Integer.parseInt(vor.getTiendasEncuestadas().toString());
por1 += por;
tiendasSin += ti;
totalInv += Integer.parseInt(invRea);
totalEnc += Integer.parseInt(vor.getEncuestasRealizadas().toString());
encInv += per;
if(list.size() > 0){
ReporteVisitasBean bean = new ReporteVisitasBean();
bean.setZona("TOTAL TIENDAS");
bean.setTotalTiendas(String.valueOf(totalTiendas));
bean.setTiendasEncuestadas(String.valueOf(tiendasEnc));
bean.setPorcentajeTiendas(String.valueOf(por1/list.size()));
bean.setTiendasSinEncuestas(String.valueOf(tiendasSin));
bean.setPorcentajeTiendasSin(String.valueOf(String.valueOf(100 - Integer.parseInt(bean.getPorcentajeTiendas()))));
bean.setEncuestasRealizadas(String.valueOf(totalEnc));
bean.setInventariosRealizados(String.valueOf(totalInv));
bean.setEncuestasPorInventarios(String.valueOf(String.valueOf(encInv/list.size())));
list.add(bean);
}catch(Exception ex){
ex.printStackTrace();
System.out.println(ex.getMessage());
}finally{
if(vo != null){
vo.closeRowSet();
return list;
I hope you can help with these problems, I checked the code and doesn't look wrong, I think it might be some malfunction of the IDE (Jdev)
Best Regards,
Mentor

Halim,
Instead of deleting some cash, you could just give it to me ;)
Sorry, couldn't resist...
When you say "tons of modules," what do you mean? Are you talking about design-time or run-time performance? Does stopping the embedded OC4J help?
John

Similar Messages

  • Debugging issue on establishing connection

    Hi,
    after reading all the comments on debugging issues using sql developer i am no step further. It seems i have a different problem.
    I'm using sql developer 1.5.1 on a windows client.
    <ul><li>connection to server is establihed via basic configuration (server, port, sid)</li>
    <li>the code is comiled for debug</li>
    <li>i do no remote debugging</li>
    </ul>
    When the debugging is startet i get the following log:
    connecting to the database XXX.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: ALTER SESSION SET PLSQL_COMPILER_FLAGS=INTERPRETED
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( 'xxx.xxx.xxx.xxx', '4283' )
    ORA-30683: Fehler beim Herstellen von Verbindung zu Debugger
    ORA-12570: TNS: Fehler beim Paket-Leser
    ORA-06512: in "SYS.DBMS_DEBUG_JDWP", Zeile 68
    ORA-06512: in Zeile 1
    Process exited.
    Disconnecting from the database XXX.
    (its german, sorry)
    The point is, there is a debug service listening at the named port. If i start al telnet session at the ip and port i get the response: JDWP-Handshake
    It seems the debugging process is not able to reach the db on the server? But why - since the client does?
    Any help is welcome!
    Thanx,
    Cmder

    The way debugging works is that the database session which is running your code, connects back to the debugger running within sqldeveloper. So for debugging to work, the database server needs to be able to connect to your PC.
    Is the IP address in the error message the IP address of you PC? I assume so, since you can telnet to it. If not, try checking the preference "Prompt for debugger host for database debugging" in Tools | Preferences| Debugger.
    If you have access to the database server can you connect back to your PC using telnet?

  • Debugging Issue

    Hello Friends,
    I am a functional consultant and have some issues with sales order.
    When I am creating a sales order and enter data like customer, material , quantiy etc and press enter ..... I get a error with the error message ZZ000.
    I am trying to debug the sales order to understand how this error is occuring and on what conditions it is occuring.
    So before pressing enter ...... I put /h and enter and goes in debugging mode ......
    Here I am not able to understand how do I put break point at the error messages.
    In menumbar there is a menu for break point followed by statements ... Can some one tell me how to put the breakpoint at the error message so that I can exactly go in the code where this message is set and on what conditions its appearing.
    Many thanks
    Screams

    Hi,
    Once you select the Break Points at Satement a Pop up Box will be displayed there write the statement MESSAGE and press Enter or Tick mark in that screen and it will stop at all messages which will be displayed while creating the Sales Order. Try to concentrate on the statement MESSAGE ZZ(000) while debugging the code it will definetly stop there I guess this might be coming from the user exits MV45AFZZ or MV45FZB. Once you find this take the program name displayed in the top of the Debugging Screen (Source Code of) along with the line number in the right side.
    And now go to transaction SE38 give this program name and go to line number and have a look at the logic or else ask any ABAPer to look at it why this meaage is being triggered.
    Let me know in case of any.
    Regards
    SRinivas

  • Post Processing Error - how to debug issue?

    I copied a vanilla report and slightly modified it. the data definition is a vanilla oracle object that is un-changed.
    i copied the data to my desktop and the report runs fine (from the Desktop). However the report fails to produce output when run from the application. I get the following in the log file
    Beginning post-processing of request 15980025 on node RADON17 at 22-MAY-2008 09:07:49.
    Post-processing of request 15980025 failed at 22-MAY-2008 09:07:49 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    The OPP log does not provide any details.
    [5/22/08 9:07:49 AM] [24053:RT15980025] Executing post-processing actions for request 15980025.
    [5/22/08 9:07:49 AM] [24053:RT15980025] Starting XML Publisher post-processing action.
    [5/22/08 9:07:49 AM] [24053:RT15980025]
    Template code: XXEAMWOREPORT
    Template app: XX
    Language: en
    Territory: US
    Output type: RTF
    [5/22/08 9:07:49 AM] [UNEXPECTED] [24053:RT15980025] java.lang.reflect.InvocationTargetException
         at sun.reflect.GeneratedMethodAccessor33.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:624)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:421)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:233)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1659)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:969)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5916)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3452)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3541)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:244)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:172)
    Caused by: java.lang.NullPointerException
         at oracle.xdo.parser.v2.PagedNodeList.readPage(PagedNodeList.java:324)
         at oracle.xdo.parser.v2.PagedNodeList.start(PagedNodeList.java:312)
         at oracle.xdo.parser.v2.XPathFunctionCall.evaluate(XPathFunctionCall.java:540)
         at oracle.xdo.parser.v2.PathExpr.evaluate(XSLNodeSetExpr.java:851)
         at oracle.xdo.parser.v2.XSLForEach.processAction(XSLForEach.java:113)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLForEachGroup.processLazy(XSLForEachGroup.java:622)
         at oracle.xdo.parser.v2.XSLForEachGroup.processAction(XSLForEachGroup.java:97)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLForEach.processAction(XSLForEach.java:147)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLTemplate.processAction(XSLTemplate.java:191)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:512)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:489)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:271)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:155)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:192)
         ... 17 more
    [5/22/08 9:07:49 AM] [24053:RT15980025] Completed post-processing actions for request 15980025.
    Any other tools I can use to debug the error??? I'm stuck

    1. Is it possible to get more debug information from the Crystal Engine to help determine which fields/formulae are causing the issue?
    Unfortunately that is it as far as errors.
    2. Does anyone have any initial ideas as to why this might be failing?
    a) Apply the latest Service pack:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    b) In the CR designer, enable Verify on First Refresh and Verify Stored procedures on First Refresh
    c) If the above does not help, as a test create a new win app. All you should need is just the one line of code, no db code. Let the report prompt for the db logon. If the win app works, it's probably a permission issue.
    Ludek

  • Debugging issue with WPF

    Hello,
      I am trying to debug some of my code for a set of WPF buttons.   I am stuck with an issue that I cannot get around.  When I launch the debugger from Visual Studio 2013, I get the following in the web browser:
    An error occurred in the application you were using
    You can try the following:
    Restart the application.
    Click the "More Information" link below for
    details about this error.
    Less Information
    <textarea cols="1" id="errorInfo" readonly="readonly" rows="1" style="width:752px;height:650px;display:block;" wrap="off">Startup URI: \\mrm2inc.com\Users\Michael.Mastro2\Documents\Visual
    Studio 2013\Projects\HomeInventoryWebForms\HomeInventoryWebForms\bin\Debug\HomeInventoryWebForms.xbap Application Identity: file://mrm2inc.com/Users/Michael.Mastro2/Documents/Visual%20Studio%202013/Projects/HomeInventoryWebForms/HomeInventoryWebForms/bin/Debug/HomeInventoryWebForms.xbap#HomeInventoryWebForms.xbap,
    Version=1.0.0.0, Culture=neutral, PublicKeyToken=fc075058c6cf26e0, processorArchitecture=msil/HomeInventoryWebForms.exe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=fc075058c6cf26e0, processorArchitecture=msil, type=win32 System.Security.Policy.PolicyException:
    Execution permission cannot be acquired. at System.Runtime.Hosting.ApplicationActivator.CreateInstanceHelper(AppDomainSetup adSetup) at System.Runtime.Hosting.ApplicationActivator.CreateInstance(ActivationContext activationContext, String[] activationCustomData)
    at System.Windows.Interop.PresentationApplicationActivator.CreateInstance(ActivationContext actCtx) at System.Activator.CreateInstance(ActivationContext activationContext) at System.Windows.Interop.ApplicationLauncherXappDebug.Initialize() at System.Windows.Interop.DocObjHost.MS.Internal.AppModel.IBrowserHostServices.Run(String
    path, String fragment, MimeType mime, String debugSecurityZoneURL, String applicationId, Object streamContainer, Object ucomLoadIStream, HostingFlags hostingFlags, INativeProgressPage nativeProgressPage, String progressAssemblyName, String progressClassName,
    String errorAssemblyName, String errorClassName, IHostBrowser hostBrowser) ----------------------- PresentationHost.exe v4.0.41210.0 built by: Main - C:\Windows\SysWOW64\PresentationHost.exe ntdll.dll v6.3.9600.17031 (winblue_gdr.140221-1952) - C:\Windows\SYSTEM32\ntdll.dll
    KERNEL32.DLL v6.3.9600.17031 (winblue_gdr.140221-1952) - C:\Windows\SYSTEM32\KERNEL32.DLL KERNELBASE.dll v6.3.9600.17031 (winblue_gdr.140221-1952) - C:\Windows\SYSTEM32\KERNELBASE.dll ADVAPI32.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\ADVAPI32.dll
    USER32.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\USER32.dll msvcrt.dll v7.0.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\msvcrt.dll ole32.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\ole32.dll OLEAUT32.dll
    v6.3.9600.17415 - C:\Windows\SYSTEM32\OLEAUT32.dll mscoree.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\mscoree.dll SHLWAPI.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\SHLWAPI.dll WININET.dll v11.00.9600.16384
    (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\WININET.dll urlmon.dll v11.00.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\urlmon.dll SHELL32.dll v6.3.9600.17031 (winblue_gdr.140221-1952) - C:\Windows\SYSTEM32\SHELL32.dll sechost.dll v6.3.9600.16384
    (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\sechost.dll RPCRT4.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\RPCRT4.dll GDI32.dll v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\GDI32.dll combase.dll v6.3.9600.16384
    (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\combase.dll iertutil.dll v11.00.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\iertutil.dll USERENV.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\USERENV.dll SspiCli.dll v6.3.9600.17415
    (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\SspiCli.dll profapi.dll v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\profapi.dll CRYPTBASE.dll v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\CRYPTBASE.dll bcryptPrimitives.dll
    v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\bcryptPrimitives.dll IMM32.DLL v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\system32\IMM32.DLL MSCTF.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\MSCTF.dll shcore.dll
    v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\shcore.dll PresentationHost_v0400.dll v4.0.30319.33440 built by: FX45W81RTMREL - C:\Windows\Microsoft.NET\Framework\v4.0.30319\WPF\PresentationHost_v0400.dll MSVCR120_CLR0400.dll v12.00.51670.34230
    built by: FX452RTMGDR - C:\Windows\SYSTEM32\MSVCR120_CLR0400.dll VERSION.dll v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\VERSION.dll PSAPI.DLL v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\PSAPI.DLL kernel.appcore.dll v6.3.9600.17415
    (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\kernel.appcore.dll uxtheme.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\system32\uxtheme.dll ltc_help32-91954.dll v1, 0, 0, 1 - C:\PROGRA~2\Raptr\ltc_help32-91954.dll WINTRUST.dll v6.3.9600.17415
    (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\WINTRUST.dll CRYPT32.dll v6.3.9600.16431 (winblue_gdr.131015-2301) - C:\Windows\SYSTEM32\CRYPT32.dll MSASN1.dll v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\MSASN1.dll clbcatq.dll v2001.12.10530.17415
    (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\clbcatq.dll CRYPTSP.dll v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\CRYPTSP.dll rsaenh.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\system32\rsaenh.dll bcrypt.dll v6.3.9600.16384
    (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\bcrypt.dll ieproxy.dll v11.00.9600.17496 (winblue_r5.141121-1500) - C:\Program Files (x86)\Internet Explorer\ieproxy.dll PROPSYS.dll v7.00.9600.17031 (winblue_gdr.140221-1952) - C:\Windows\SYSTEM32\PROPSYS.dll
    dfshim.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\dfshim.dll mscoreei.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscoreei.dll clr.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll
    Secur32.dll v6.3.9600.17415 (winblue_r4.141028-1500) - C:\Windows\SYSTEM32\Secur32.dll dwmapi.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\system32\dwmapi.dll msxml3.dll v8.110.9600.17415 - C:\Windows\System32\msxml3.dll actxprxy.dll v6.3.9600.17416
    (winblue_r4.141030-1500) - C:\Windows\SYSTEM32\actxprxy.dll sxs.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\sxs.dll PresentationHostProxy.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\PresentationHostProxy.dll
    comctl32.dll v6.10 (winblue_rtm.130821-1623) - C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.17415_none_a9ed7f470139b3c1\comctl32.dll mscorlib.ni.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\mscorlib\d03a3ddcd6a395878751c5e90fa16915\mscorlib.ni.dll
    System.ni.dll v4.0.30319.34239 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\System\1a6b5095c4416a37f9ca4cf4436d1311\System.ni.dll WindowsBase.ni.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\WindowsBase\bb26d987467eca70ebc4beec29158d67\WindowsBase.ni.dll
    PresentationCore.ni.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\PresentationCore\24f6c80242420a1cea5cc254bf420027\PresentationCore.ni.dll PresentationFramework.ni.dll v4.0.30319.34209 - C:\Windows\assembly\NativeImages_v4.0.30319_32\Presentatio5ae0f00f#\4136b9a7a05c8f0e2c7e15600bc20b1b\PresentationFramework.ni.dll
    dwrite.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\dwrite.dll wpfgfx_v0400.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\Microsoft.NET\Framework\v4.0.30319\WPF\wpfgfx_v0400.dll PresentationNative_v0400.dll v4.0.30319.33440
    built by: FX45W81RTMREL - C:\Windows\Microsoft.NET\Framework\v4.0.30319\WPF\PresentationNative_v0400.dll System.Xaml.ni.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\System.Xaml\d626184834dde3f4906aff139d4e5bbf\System.Xaml.ni.dll
    clrjit.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\Microsoft.NET\Framework\v4.0.30319\clrjit.dll System.Xml.ni.dll v4.0.30319.34230 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\System.Xml\9a349fb029581f4752d2c6cfcfeab816\System.Xml.ni.dll
    System.Drawing.ni.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\System.Drawing\d91798a9a9fcb450351fe8e49026a69f\System.Drawing.ni.dll System.Windows.Forms.ni.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\System.Windows.Forms\a4d2243df4af8ab65ff74d436d449789\System.Windows.Forms.ni.dll
    System.Security.ni.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\System.Security\d72f65a6622be86134ba8c534acc10e5\System.Security.ni.dll System.Core.ni.dll v4.0.30319.34209 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\System.Core\794a3d83e77a53d6fc029c389f9cc408\System.Core.ni.dll
    System.Deployment.ni.dll v4.0.30319.34243 built by: FX452RTMGDR - C:\Windows\assembly\NativeImages_v4.0.30319_32\System.Deployment\84fa9fa9c4be29612f8d268246a0353c\System.Deployment.ni.dll System.Configuration.ni.dll v4.0.30319.34209 built by: FX452RTMGDR
    - C:\Windows\assembly\NativeImages_v4.0.30319_32\System.Configuration\b5b80f1284dfa1b883da48ed58ecbc47\System.Configuration.ni.dll gpapi.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\gpapi.dll ncrypt.dll v6.3.9600.16384 (winblue_rtm.130821-1623)
    - C:\Windows\SYSTEM32\ncrypt.dll NTASN1.dll v6.3.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\SYSTEM32\NTASN1.dll diasymreader.dll v12.0.20806.33440 built by: FX45W81RTMREL - C:\Windows\Microsoft.NET\Framework\v4.0.30319\diasymreader.dll uiautomationcore.dll
    v7.2.9600.16384 (winblue_rtm.130821-1623) - C:\Windows\System32\uiautomationcore.dll </textarea>
    Anyone have any ideas how to get around this issue, or fix the issue?
    Michael R. Mastro II

    You need to be able to debug your code.
    This is a key ability.
    So key that this is the first thing you should be thinking about with any development ( which isn't trivial. ).
    Work out how to debug your application.
    Stick break points in there and explore what is going on.
    https://nirajrules.wordpress.com/2008/06/11/debugging-an-xbap-wcf-application-%E2%80%93-windows-vista-vsnet-2008/
    Hope that helps.
    Recent Technet articles:
    Property List Editing ;  
    Dynamic XAML

  • NoClassDefFoundError: in JDeveloper debug mode

    Hi all.
    I have a strange problem. Only one JSP in my entire application fails to appear when I debug with local (embeded) OC4J. These are the first lines of the exception message:
    Exception:
    java.lang.NoClassDefFoundError: _addFile
         java.lang.Class java.lang.ClassLoader.defineClass0(java.lang.String, byte[], int, int, java.security.ProtectionDomain)
              native code
    The class _addFile is generated from addFile.jsp and is available in the output directory. Production application doesn't display the same behavior, this only happens in DEBUG mode in JDeveloper.
    OS: win2000
    JDK: 1.3.1
    JDevaloper is 9.0.2.. something.
    Thanks people.

    A few quick questions:
    1. Can you run (not debug) the application?
    2. Have you tried specifically compiling the file addfile.jsp in JDeveloper? - This will usually show the error before attempting to
    run it.
    To do this, select the file in the navigator and do a right-click Rebuild or Make..

  • 5.1.3 Java Collaboration Debug issues...

    Hi All,
    JCAPS Newbie here.
    I've setup debugging for Java Collaboration's deployed on a logical host.
    It seems to work as I can step through the code, except it's just not behaving as I expected with regards to hitting breakpoints & stepping over some methods.
    In a nutshell ...
    1) It doesn't stop on the breakpoints I set.
    2) It always stops in method log( LOG_LEVEL_DEBUG, "xxx" ); when I click "GO" or StepOver???
    Has anyone else seen this behaviour?
    Any ideas about how to get it working correctly???
    Thanks,
    Ken

    FYI...
    This is a known issue with eDesigner,
    I have E-mailed you a Hotfix to apply to your environment which is doing the debugging.
    I have also included a ReadMe which explains how to install the ESR
    Sun Java CAPS Support.

  • OracleJSP exception in JDeveloper debug mode

    Hi all.
    I have a strange problem. Only one JSP in my entire application fails to appear when I debug with local (embeded) OC4J. These are the first lines of the exception message:
    Exception:
    java.lang.NoClassDefFoundError: _addFile
         java.lang.Class java.lang.ClassLoader.defineClass0(java.lang.String, byte[], int, int, java.security.ProtectionDomain)
              native code
    The class _addFile is generated from addFile.jsp and is available in the output directory. Production application doesn't display the same behavior, this only happens in DEBUG mode in JDeveloper.
    OS: win2000
    JDK: 1.3.1
    JDevaloper is 9.0.2.. something.
    Struts
    Thanks people.

    A few quick questions:
    1. Can you run (not debug) the application?
    2. Have you tried specifically compiling the file addfile.jsp in JDeveloper? - This will usually show the error before attempting to
    run it.
    To do this, select the file in the navigator and do a right-click Rebuild or Make..

  • Remote debugging issue: Address already in use

    First, I want to explain that to use remote debugging in oracle UCM server (IdcServerNT.exe), I add these lines at */server/bin/intradoc.cfg*:
    JAVA_OPTIONS_debug_enable=-Xdebug
    JAVA_OPTIONS_debug_options=-Xrunjdwp:transport=dt_socket,server=y,address=8000,suspend=n
    and since the JAVA_OPTIONS is shared between admin server (IdcAdminNT.exe) and non-admin server (IdcServerNT.exe), to prevent "Address already in use" error, I added same lines but with empty value into */server/admin/bin/intradoc.cfg*:
    JAVA_OPTIONS_debug_enable=
    JAVA_OPTIONS_debug_options=
    or alternatively enable it but use different port for the "address=xxx".
    Now the issue is when I had run the non-admin UCM server with remote debugging enabled, then I tried to run the Component Wizard, I got "Address already in use" error:
    ERROR: transport error 202: bind failed: Address already in use ["transport.c",L41]
    I found out that's possible because Component Wizard (ComponentWizard.exe) is using same setting file with non-admin server (IdcServerNT.exe): */server/bin/intradoc.cfg*. It's obvious that happened because of ComponentWizard.exe is in same location with IdcServerNT.exe, so I think other tools like Batch Loader and System Properties will be affected with same issue too.
    Because of this issue, everytime I want to open Component Wizard, I had to stop the non-admin server which is inconvenient.
    So, the question is there a way to define separately or disable the JAVA_OPTIONS_debug_enable & JAVA_OPTIONS_debug_options for Component Wizard?

    WillT wrote:
    My run method was being called somewhere else and I can't find out whereOkay, but changing from implementing Runnable to extending Thread won't change that one whit. You must've also changed something else.
    Extending Thread is the wrong approach, since you're not creating a special kind of Thread.

  • SOA Suite / JDeveloper connection issue

    we're deploying SOA Suite using enterprise deployment guide 10.1.3.3 in our company. The web-server is in the front-end DMZ and app-server is in the backend DMZ. There is load-balancer configuration even though our environment doesn't have HA.
    From JDeveloper, the application-server & integration-server connection entry tests are failing with errors.. Oracle support didn't help us much.. below are more details about the issue:
    The AJP & OPMN ports are opened between web-server & app-server. Web-server's opmn
    request port is 6006 and app-server's opmn request port is
    6207
    From JDeveloper, how should we define the application server connection & integration server connection entries?
    We have defined the app-server connection with F5 VIP as the
    host & 6207 as the opmn port#, and the connection test is failing.
    For integration-server connection, we used the above app-server connection, and 7777 as the http port. and the test fails for
    application server connection, but BPEL & ESB test results are successful.
    But we are able to successfully deploy the bpel & esb services
    from Jdeveloper using the above integration-server connection entry.
    Could you tell us the proper values we should use (including F5 setup & firewall ports which need to be opened) so that the
    connection tests in JDeveloper work without errors?
    thank you

    Hi,
    Port details you can get under file "opmn.xml" located at:
    <SOA_Home>\opmn\conf
    For OPMN port, Use the value of 'request' attribute present under <port> tag.
    Cheers,
    Abhi...

  • IOS/AIR Running and Debugging Issues with Flash Builder

    I'm having very frustrating intermittent issues running and debugging Flex applications on an iPad 3rd generation retina with Flash Builder 4.7.
    Until this morning, launching on device using both standard and fast packaging worked pretty well. Every now and again, I'd get a dialog saying the packaging had completed successfully, but it hadn't. A quick change of the USB cable to another port on my iMac and it started working again. I'd also randomly get a "Error occurred while installing the application: Invalid <device> specified" error, which quickly went away.
    This morning, with the same code base, the same certificate and provisioning profiles, Flash Builder has only managed to successfully package and run my application on my iPad twice and I must have attempted to launch fifty or so times. Standard packaging, fast packaging and with and without the useLegacyAOT.
    Does this sound like a Flash Builder issue? Is my iMac USB driver dodgy? Has anybody else experienced this?
    Any help greatly welcomed!
    Thanks,
    Simon

    Hi I have had this problem sometimes. With my Mac Book Pro.
    Try making a new flex application and see if you have the same result.
    When I had this problem I created a new Application and copied every thing from my other application.
    This my be a hard solution but I don't no any others.

  • Jdeveloper performance issue

    Jdeveloper 11.1.1.6
    I observe that Jdev is very slow & hangs often, though I am having 8 GB RAM in my PC. Found certain articles in the web to improve Jdev performance & made the following changes in the Jdev configuration files:
    $JDEV_HOME/jdeveloper/jdev/bin/jdev.conf
    #AddVMOption -XX:MaxPermSize=256M
    AddVMOption -XX:MaxPermSize=1024M
    AddVMOption -DMainWindow.MemoryMonitorOn=true
    $JDEV_HOME/jdeveloper/ide/bin/ide.conf
    #AddVMOption -Xmx640M
    #AddVMOption -Xms128M
    AddVMOption -Xmx640M
    AddVMOption -Xms640M
    After making the above changes (rows prefixed with # are the original values; getting virtual memory issue if these values are increased more than these), I observed only marginal improvement.
    Any thing else to be done to improve Jdev 11.1.1.6 performance?

    Hi Timo,
    I work on a PC with Windows 7 64 bit OS. Java version details given below:
    java version "1.7.0_15"
    Java(TM) SE Runtime Environment (build 1.7.0_15-b03)
    Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)
    I do have an anti-virus software, but I don't see a problem there as my other applications work smoothly.
    My jdev hangs mostly when I drag & drop a data control into my form. Other operations like drag & drop within the structure, switching to XML source, typing in XML source etc. are slow.
    While running Jdev, I have my outlook, pl/sql developer & the browser windows. I checked in task manager. Hardly 70-75% memory is occupied.

  • Jdeveloper Migration issue

    Hello,
    We are trying to migrate an ADF web application from jdeveloper 11.1.1.0.0 to 11.1.1.5.0. After the auto migrate provided by Jdeveloper when clicked on LOV's it fails with following error.
    The project is built with PL/SQL based Web services and SQL query based LOV VO as model and view is built with Webservice datacontrols and LOV's.
    Any insight about this issue is highly appreciated.
    <Warning> <oracle.adf.controller.faces.lifecycle.Utils> <BEA-000000> <ADF: Adding the following JSF error message: The Web Service call failed. Operation "findOrCreateViewCriteria" does not exist in the target Web Service.
    oracle.adf.model.adapter.AdapterException: DCA-40006: The Web Service call failed. Operation "findOrCreateViewCriteria" does not exist in the target Web Service.
         at oracle.adfinternal.model.adapter.webservice.provider.soap.SOAPProvider.findServiceOperation(SOAPProvider.java:533)
         at oracle.adfinternal.model.adapter.webservice.provider.soap.SOAPProvider.execute(SOAPProvider.java:294)
         at oracle.adfinternal.model.adapter.webservice.WSDataControl.invokeOperation(WSDataControl.java:259)
         at oracle.adf.model.bean.DCBeanDataControl.invokeMethod(DCBeanDataControl.java:430)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:261)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1635)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2150)
         at oracle.adf.model.bean.DCBeanDataControl.invokeOperation(DCBeanDataControl.java:467)
         at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:307)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:740)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.invokeMethodAction(JUMethodIteratorDef.java:173)
         at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.executeQuery(JUMethodIteratorDef.java:397)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:3250)
         at oracle.adf.model.binding.DCBindingContainer.execute(DCBindingContainer.java:1800)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding.execute(FacesCtrlSearchBinding.java:142)
         at oracle.jbo.uicli.binding.JUSearchBindingCustomizer.applyNamedCriteria(JUSearchBindingCustomizer.java:654)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding$QueryModelImpl._performOneTimeActions(FacesCtrlSearchBinding.java:1901)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding$QueryModelImpl.<init>(FacesCtrlSearchBinding.java:1447)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlSearchBinding.getQueryModel(FacesCtrlSearchBinding.java:337)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding$ListOfValuesModelImpl.getSearchRegion(FacesCtrlLOVBinding.java:1845)
         at oracle.adfinternal.view.faces.model.binding.FacesCtrlLOVBinding$ListOfValuesModelImpl.getQueryModel(FacesCtrlLOVBinding.java:1435)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase$InternalLaunchPopupListener.processLaunch(SimpleInputListOfValuesRendererBase.java:1469)
         at oracle.adf.view.rich.event.LaunchPopupEvent.processListener(LaunchPopupEvent.java:109)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:675)
         at org.apache.myfaces.trinidad.component.UIXEditableValue.broadcast(UIXEditableValue.java:212)
         at oracle.adf.view.rich.component.UIXInputPopup.broadcast(UIXInputPopup.java:159)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:93)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:93)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:902)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:313)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)

    Ensure that your wsdl is accessible and choose it from the wsdl chooser.

  • JDeveloper display issue.

    Hi. I'm new here, so I'm not sure whether this post is in the right section, and ask a moderator to move it accordingly in case it doesn't.
    I have a problem with the 1.5.5 version of JDeveloper, installed on a Win7 32bit system. First of all, when launching it, it automatically switches the display mode from aero to classic (don't know if this is intended, or another problem of mine). Then, after connecting to a database, when listing it's contents, structure, even in the script window, after scrolling, the text appears distorted or just parts of it (like it's not making a complete redraw). After clicking with the mouse, or minimizing/maximizing the window, it looks ok, but it's very annoying to do that every time I want to scroll up or down.
    Thank you!

    Thank you, I will post the problem there. I tried the newest version already, but still the problem persist, so I switched back to this one as all my colleagues are using it, and they have this issue too.
    *[url http://www.java-forums.org/blogs/advanced-java/collection/]Java collection*

  • Remote debugging issue

    I've used the following remote debug properties and able to remote debug the Weblogic server from Oracle workshop.
    -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n
    But this restricts to only one user/ client at any given time. Is there anyway inwhich one can enable mulitple user while remote debugging?
    Amarnath

    Not sure if it matters but I am using JDEV 9.0.3.4 with a 9.2.0.4 database and successfully stepped into and over a call to a java stored procedure from a PL/SQL trigger. I have a PL/SQL procedure which causes a trigger to be fired which in turn calls a Java Stored procedure.
    Here is what I did:
    1) create PL/SQL (including trigger and procedure) and deploy Java Stored Procedure
    2) In SQLPlus send the command:
    ALTER SESSION SET PLSQL_DEBUG=TRUE;
    3) Execute the PL/SQL Procedure (which causes trigger to be fired)
    4) In JDeveloper select Project properties-&gt;Debugger-&gt;remote and select JPDA Listen
    5) Set a breakpoint in the trigger
    6) Select debug and enter a port number for the listener
    7) In SQLPLUS send the command:
    CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '&lt;Your IP&gt;', '&lt;listener port&gt;' );
    8) Verify call succeeded is received in SQLPlus and debuggee connects to the debugger in JDeveloper.
    9) Execute the PL/SQL procedure
    10) When breakpoint hit stepped into the Java Stored procedure (which was not in the project so added to source path via the popup dialog)
    11) stepped out of the Java Stored Procedure back into trigger
    Hope this helps,
    Bud

Maybe you are looking for