Problems with passing arguments to app

Hi.
I have a litle problem with passing arguments. I create a dynamic jnlp file using jsp. This is my code:
<%
response.setContentType("application/x-java-jnlp-file");
String l = request.getParameter("login");
String p = request.getParameter("pass");
out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
out.println("<jnlp spec=\"1.0+\" codebase=\"http://212.244.104.27:8080/PzP_INSTALL/\" href=\"pzp.jsp\">");
out.println("<information>");
out.println("<title>xxx</title>");
out.println("<vendor>xxxx</vendor>");
out.println("<homepage href=\"main.jsp\"/>");
out.println("<description>text</description>");
out.println("<offline-allowed/>");
out.println("</information>");
out.println("<security>");
out.println("<all-permissions/>");
out.println("</security>");
out.println("<resources>");
out.println("<j2se version=\"1.4+\"/>");
out.println("<jar href=\"jars/pzp.jar\" main=\"true\" download=\"eager\"/>");
out.println("<jar href=\"jars/config.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/commons-beanutils.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/commons-collections.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/commons-digester.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/commons-logging.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/commons-validator.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/easclient.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/easj2ee.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/jakarta-oro-2.0.7.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/jbcl.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/log4j-1.2.7.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/jdom.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jars/xercesImpl.jar\" main=\"false\" download=\"eager\"/>");
out.println("<property name =\"javaws.login \"  " + "value=" + "\"" + l + "\"" + "/>");
out.println("<property name =\"javaws.pass \"  " + "value=" + "\"" + p + "\"" + "/>");
out.println("</resources>");
out.println("<application-desc main-class=\"aaa.bbb.ccc.MyClass\"/>");
out.println("</jnlp>");
%>My problem is when i have the href tag filled, the arguments that i passed equlas null, when i remove the href everything is ok besides that the app doesnt show in application manager and doesnt create an icon on the desktop.
out.println("<jnlp spec=\"1.0+\" codebase=\"http://62.89.104.27:8080/PzP_INSTALL/\" href=\"pzp.jsp\">");
Any help would be appreciated.

Hello again.
Thanks for your replay but unfortunetly it doesnt work too :-(
I've tried to use the out.println statemants in the servlet instead of using a jsp page but the error is the same. Please look at my code and tell me if you can what could be wrong.
This is the error message:
An error occurred while launching/running the application.
Title: PZP
Vendor: SPEED
Category: Download Error
Unable to load resource: http://212.89.104.27:8080/PzP_INSTALL/ServletPZP
Servlet code.
package pzp_install;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
import pzp_install.LoginBean;
import javax.swing.JOptionPane;
public class ServletPZP extends HttpServlet {
  public void init(ServletConfig config) throws ServletException {
  super.init(config);
  config.getServletContext().setAttribute("ServletPZP", this);
  public void doPost(HttpServletRequest request, HttpServletResponse resp)
  throws IOException {
  PrintWriter out = resp.getWriter();
// Get the value of the request parameter
  String login = request.getParameter("login");
  String pass = request.getParameter("pass");
resp.setContentType("application/x-java-jnlp-file");
out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
out.println("<jnlp spec=\"1.0+\" codebase=\"http://212.89.104.27:8080/PzP_INSTALL/\" href=\"/servletpzp\">");
out.println("<information>");
out.println("<title>PZP</title>");
out.println("<vendor>SPEED</vendor>");
out.println("<homepage href=\"main.jsp\"/>");
out.println("<description>Aplikacja wspomagajaca zarzadzanie zleceniami</description>");
out.println("<offline-allowed/>");
out.println("</information>");
out.println("<security>");
out.println("<all-permissions/>");
out.println("</security>");
out.println("<resources>");
out.println("<j2se version=\"1.4+\"/>");
out.println("<jar href=\"pzp.jar\" main=\"true\" download=\"eager\"/>");
out.println("<jar href=\"config.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"commons-beanutils.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"commons-collections.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"commons-digester.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"commons-logging.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"commons-validator.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"easclient.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"easj2ee.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jakarta-oro-2.0.7.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jbcl.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"log4j-1.2.7.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"jdom.jar\" main=\"false\" download=\"eager\"/>");
out.println("<jar href=\"xercesImpl.jar\" main=\"false\" download=\"eager\"/>");
out.println("<property name =\"javaws.login \"  " + "value=" + "\"" + login + "\"" + "/>");
out.println("<property name =\"javaws.pass \"  " + "value=" + "\"" + pass + "\"" + "/>");
out.println("</resources>");
out.println("<application-desc main-class=\"pl.speednet.pzp.PzP\"/>");
out.println("</jnlp>");
  public void destroy() {
  super.destroy();
This is the brief of code which starts the servlet
<form action="http://212.89.104.27:8080/PzP_INSTALL/servletpzp" method="post">
  <input type="hide" name="login" value=<%=l%>>
  <input type="hide" name="pass" value=<%=p%>>
  <input type=submit value=Start PZP>
</form>
This is the web.xml file code.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
  <servlet>
    <servlet-name>ServletPZP</servlet-name>
    <servlet-class>pzp_install.ServletPZP</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>ServletPZP</servlet-name>
    <url-pattern>/servletpzp</url-pattern>
  </servlet-mapping>
  <mime-mapping>
    <extension>jar</extension>
    <mime-type>application/x-java-archive</mime-type>
  </mime-mapping>
  <mime-mapping>
    <extension>jnlp</extension>
    <mime-type>application/x-java-jnlp-file</mime-type>
  </mime-mapping>
</web-app>

Similar Messages

  • Problem with passing exception with declarative security

    I am having a problem with passing exceptions with message security bunding enables. I have a JAXWS EJB 3.0 web service, The service defines methods which throw exceptions. The exceptions are passed correclty when there is no message security enabled. once the security is enabled and an exception is thrown, I get the stack trace below. Furthermore, the service with security enabled works fine as long as methods do not throw an exception. I am thinking that the JAXWS generated wrapped exception is not correctly handled by the message security provider in the server. Just a thought. Any help would be greatly appreciated.
    Stack trace:
    [#|2007-03-23T00:49:06.333-0600|WARNING|sun-appserver-pe9.0|javax.enterprise.sys
    tem.stream.err|_ThreadID=11;_ThreadName=httpWorkerThread-8080-0;_RequestID=64417
    ac0-ded8-474d-9066-5a97c8559b67;|
    ERROR: 'NAMESPACE_ERR: An attempt is made to create or change an object in a wa
    y which is incorrect with regard to namespaces.'|#]
    [#|2007-03-23T00:49:06.334-0600|SEVERE|sun-appserver-pe9.0|javax.xml.messaging.s
    aaj.soap|_ThreadID=11;_ThreadName=httpWorkerThread-8080-0;_RequestID=64417ac0-de
    d8-474d-9066-5a97c8559b67;|SAAJ0511: Unable to create envelope from given source
    |#]
    [#|2007-03-23T00:49:06.334-0600|INFO|sun-appserver-pe9.0|javax.enterprise.system
    .core.security|_ThreadID=11;_ThreadName=httpWorkerThread-8080-0;|SEC2003: Contai
    ner-auth: wss: Error securing response
    com.sun.enterprise.security.jauth.AuthException: Unable to create envelope from
    given source:
    at com.sun.xml.wss.provider.ServerSecurityAuthModule.secureResponse(Serv
    erSecurityAuthModule.java:129)
    at sun.reflect.GeneratedMethodAccessor237.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.security.jauth.AuthContext.invokePriv(AuthContext.
    java:128)
    at com.sun.enterprise.security.jauth.AuthContext$1.run(AuthContext.java:
    78)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.enterprise.security.jauth.AuthContext.invoke(AuthContext.java
    :75)
    at com.sun.enterprise.security.jauth.ConfigFile$ConfigServer.secureRespo
    nse(ConfigFile.java:662)
    at com.sun.enterprise.security.wss.WebServiceSecurity.secureResponse(Web
    ServiceSecurity.java:220)
    at com.sun.enterprise.security.wss.WebServiceSecurity.secureResponse(Web
    ServiceSecurity.java:197)
    at com.sun.enterprise.webservice.JAXWSSystemHandlerDelegateFactory$Servl
    etDelegate.processResponse(JAXWSSystemHandlerDelegateFactory.java:540)
    at com.sun.enterprise.webservice.monitoring.JAXWSEndpointImpl.processRes
    ponse(JAXWSEndpointImpl.java:121)
    at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher.receive(SOA
    PMessageDispatcher.java:148)
    at com.sun.xml.ws.server.Tie.handle(Tie.java:88)
    at com.sun.enterprise.webservice.Ejb3MessageDispatcher.handlePost(Ejb3Me
    ssageDispatcher.java:160)
    at com.sun.enterprise.webservice.Ejb3MessageDispatcher.invoke(Ejb3Messag
    eDispatcher.java:89)
    at com.sun.enterprise.webservice.EjbWebServiceServlet.dispatchToEjbEndpo
    int(EjbWebServiceServlet.java:178)
    at com.sun.enterprise.webservice.EjbWebServiceServlet.service(EjbWebServ
    iceServlet.java:109)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at com.sun.enterprise.web.AdHocContextValve.invoke(AdHocContextValve.jav
    a:100)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:536)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:71)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:182)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipe
    line.java:120)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:137)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:536)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:23
    1)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(
    ProcessorTask.java:667)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBloc
    ked(ProcessorTask.java:574)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(Proces
    sorTask.java:844)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTas
    k(ReadTask.java:287)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.jav
    a:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:2
    52)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThrea
    d.java:75)
    |#]
    [#|2007-03-23T00:49:06.335-0600|WARNING|sun-appserver-pe9.0|javax.enterprise.sys
    tem.core|_ThreadID=11;_ThreadName=httpWorkerThread-8080-0;_RequestID=64417ac0-de
    d8-474d-9066-5a97c8559b67;|Exception while tracing response : Unable to create e
    nvelope from given source: |#]
    [#|2007-03-23T00:49:06.336-0600|WARNING|sun-appserver-pe9.0|javax.enterprise.sys
    tem.stream.err|_ThreadID=11;_ThreadName=httpWorkerThread-8080-0;_RequestID=64417
    ac0-ded8-474d-9066-5a97c8559b67;|
    com.sun.enterprise.security.jauth.AuthException: Unable to create envelope from
    given source:
    at com.sun.xml.wss.provider.ServerSecurityAuthModule.secureResponse(Serv
    erSecurityAuthModule.java:129)
    at sun.reflect.GeneratedMethodAccessor237.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.security.jauth.AuthContext.invokePriv(AuthContext.
    java:128)
    at com.sun.enterprise.security.jauth.AuthContext$1.run(AuthContext.java:
    78)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.enterprise.security.jauth.AuthContext.invoke(AuthContext.java
    :75)
    at com.sun.enterprise.security.jauth.ConfigFile$ConfigServer.secureRespo
    nse(ConfigFile.java:662)
    at com.sun.enterprise.security.wss.WebServiceSecurity.secureResponse(Web
    ServiceSecurity.java:220)
    at com.sun.enterprise.security.wss.WebServiceSecurity.secureResponse(Web
    ServiceSecurity.java:197)
    at com.sun.enterprise.webservice.JAXWSSystemHandlerDelegateFactory$Servl
    etDelegate.processResponse(JAXWSSystemHandlerDelegateFactory.java:540)
    at com.sun.enterprise.webservice.monitoring.JAXWSEndpointImpl.processRes
    ponse(JAXWSEndpointImpl.java:121)
    at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher.receive(SOA
    PMessageDispatcher.java:148)
    at com.sun.xml.ws.server.Tie.handle(Tie.java:88)
    at com.sun.enterprise.webservice.Ejb3MessageDispatcher.handlePost(Ejb3Me
    ssageDispatcher.java:160)
    at com.sun.enterprise.webservice.Ejb3MessageDispatcher.invoke(Ejb3Messag
    eDispatcher.java:89)
    at com.sun.enterprise.webservice.EjbWebServiceServlet.dispatchToEjbEndpo
    int(EjbWebServiceServlet.java:178)
    at com.sun.enterprise.webservice.EjbWebServiceServlet.service(EjbWebServ
    iceServlet.java:109)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at com.sun.enterprise.web.AdHocContextValve.invoke(AdHocContextValve.jav
    a:100)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:536)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:71)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:182)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipe
    line.java:120)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:137)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:536)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:23
    1)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(
    ProcessorTask.java:667)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBloc
    ked(ProcessorTask.java:574)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(Proces
    sorTask.java:844)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTas
    k(ReadTask.java:287)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.jav
    a:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:2
    52)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThrea
    d.java:75)
    |#]
    [#|2007-03-23T00:49:06.336-0600|SEVERE|sun-appserver-pe9.0|javax.enterprise.reso
    urce.webservices.jaxws.server.soapmd|_ThreadID=11;_ThreadName=httpWorkerThread-8
    080-0;_RequestID=64417ac0-ded8-474d-9066-5a97c8559b67;|Unable to create envelope
    from given source:
    com.sun.enterprise.security.jauth.AuthException: Unable to create envelope from
    given source:
    at com.sun.xml.wss.provider.ServerSecurityAuthModule.secureResponse(Serv
    erSecurityAuthModule.java:129)
    at sun.reflect.GeneratedMethodAccessor237.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.security.jauth.AuthContext.invokePriv(AuthContext.
    java:128)
    at com.sun.enterprise.security.jauth.AuthContext$1.run(AuthContext.java:
    78)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.enterprise.security.jauth.AuthContext.invoke(AuthContext.java
    :75)
    at com.sun.enterprise.security.jauth.ConfigFile$ConfigServer.secureRespo
    nse(ConfigFile.java:662)
    at com.sun.enterprise.security.wss.WebServiceSecurity.secureResponse(Web
    ServiceSecurity.java:220)
    at com.sun.enterprise.security.wss.WebServiceSecurity.secureResponse(Web
    ServiceSecurity.java:197)
    at com.sun.enterprise.webservice.JAXWSSystemHandlerDelegateFactory$Servl
    etDelegate.processResponse(JAXWSSystemHandlerDelegateFactory.java:540)
    at com.sun.enterprise.webservice.monitoring.JAXWSEndpointImpl.processRes
    ponse(JAXWSEndpointImpl.java:121)
    at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher.receive(SOA
    PMessageDispatcher.java:148)
    at com.sun.xml.ws.server.Tie.handle(Tie.java:88)
    at com.sun.enterprise.webservice.Ejb3MessageDispatcher.handlePost(Ejb3Me
    ssageDispatcher.java:160)
    at com.sun.enterprise.webservice.Ejb3MessageDispatcher.invoke(Ejb3Messag
    eDispatcher.java:89)
    at com.sun.enterprise.webservice.EjbWebServiceServlet.dispatchToEjbEndpo
    int(EjbWebServiceServlet.java:178)
    at com.sun.enterprise.webservice.EjbWebServiceServlet.service(EjbWebServ
    iceServlet.java:109)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at com.sun.enterprise.web.AdHocContextValve.invoke(AdHocContextValve.jav
    a:100)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:536)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:71)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:182)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipe
    line.java:120)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:137)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:536)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:23
    1)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(
    ProcessorTask.java:667)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBloc
    ked(ProcessorTask.java:574)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(Proces
    sorTask.java:844)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTas
    k(ReadTask.java:287)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.jav
    a:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:2
    52)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThrea
    d.java:75)
    |#]
    [#|2007-03-23T00:49:06.338-0600|WARNING|sun-appserver-pe9.0|javax.enterprise.sys
    tem.stream.err|_ThreadID=11;_ThreadName=httpWorkerThread-8080-0;_RequestID=64417
    ac0-ded8-474d-9066-5a97c8559b67;|
    com.sun.enterprise.security.jauth.AuthException: Unable to create envelope from
    given source:
    at com.sun.xml.wss.provider.ServerSecurityAuthModule.secureResponse(Serv
    erSecurityAuthModule.java:129)
    at sun.reflect.GeneratedMethodAccessor237.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.enterprise.security.jauth.AuthContext.invokePriv(AuthContext.
    java:128)
    at com.sun.enterprise.security.jauth.AuthContext$1.run(AuthContext.java:
    78)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.enterprise.security.jauth.AuthContext.invoke(AuthContext.java
    :75)
    at com.sun.enterprise.security.jauth.ConfigFile$ConfigServer.secureRespo
    nse(ConfigFile.java:662)
    at com.sun.enterprise.security.wss.WebServiceSecurity.secureResponse(Web
    ServiceSecurity.java:220)
    at com.sun.enterprise.security.wss.WebServiceSecurity.secureResponse(Web
    ServiceSecurity.java:197)
    at com.sun.enterprise.webservice.JAXWSSystemHandlerDelegateFactory$Servl
    etDelegate.processResponse(JAXWSSystemHandlerDelegateFactory.java:540)
    at com.sun.enterprise.webservice.monitoring.JAXWSEndpointImpl.processRes
    ponse(JAXWSEndpointImpl.java:121)
    at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher.receive(SOA
    PMessageDispatcher.java:148)
    at com.sun.xml.ws.server.Tie.handle(Tie.java:88)
    at com.sun.enterprise.webservice.Ejb3MessageDispatcher.handlePost(Ejb3Me
    ssageDispatcher.java:160)
    at com.sun.enterprise.webservice.Ejb3MessageDispatcher.invoke(Ejb3Messag
    eDispatcher.java:89)
    at com.sun.enterprise.webservice.EjbWebServiceServlet.dispatchToEjbEndpo
    int(EjbWebServiceServlet.java:178)
    at com.sun.enterprise.webservice.EjbWebServiceServlet.service(EjbWebServ
    iceServlet.java:109)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at com.sun.enterprise.web.AdHocContextValve.invoke(AdHocContextValve.jav
    a:100)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:536)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:71)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:182)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipe
    line.java:120)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:137)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.j
    ava:566)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:536)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:23
    1)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(
    ProcessorTask.java:667)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBloc
    ked(ProcessorTask.java:574)
    at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(Proces
    sorTask.java:844)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTas
    k(ReadTask.java:287)
    at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.jav
    a:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:2
    52)
    at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThrea
    d.java:75)
    |#]

    Hi,
    Thanks for the reply. I read the weblog and posted a reply to it already.
    History:
    I actually have a web service where I have message level security enabled and it works great. I had some issues early on with descriptor but those are worked out. As I was testing, I created a test case that throws an exception. That is when I get the NAMESPACE_ERROR, jauth exceptions , etc.
    Attempt to find issue:
    Glassfish: V1 (glassfish-installer-9.0-b48.jar), jdk1.5.0_11
    Code: EJB tech tip EJB30 web service
    Security: message security, specified almost verbatim to how it is done in the link you mention.
    Sample works fine until I modify the web service to throw an exception. Once I do that, I get the NAMESPACE_ERROR stack trace I posted in original message. The sample in the tech tip uses the embedded app-client.
    Thanks for helping with this.

  • I have an ipad mini 1st gen 64 gb (wifi only) and i have problem with some of my apps. These apps have lags when you play with them for a few seconds the apps are having lags are call of duty strike team, gta San Andreas and nfs most wanted.pleas help me

    I have an ipad mini 1st gen 64 gb (wifi only) and i have problem with some of my apps. These apps have lags when you play with them for a few seconds the apps are having lags are call of duty strike team, gta San Andreas and nfs most wanted.pleas help me

    I'm going to guess videos buffer for a while also...
    Two possibilities, one is you should close apps on the iPad, the other is your internet speed is not able to handle the demands of a high speed device.
    To close apps:   Double click home button, swipe up to close the apps.
    To solve internet problem, contact your provider.   Basic internet is not enough for video games and movies.   Your router may be old and slow.

  • HT5137 I made a purchase with my debit card on The Simpson Tapped out game, And now my game won't open. It just kicks me out every time I click on it. How do I fix this problem with out deleting my app?

    I made a purchase with my debit card on The Simpson Tapped out game, And now my game won't open. It just kicks me out every time I click on it. How do I fix this problem with out deleting my app?

    Personally, I would never use a debit card online, for security reasons.  If your card gets hacked its your money that is stolen.  At least with a credit card it is the card providers money that is stolen.
    Anyway,  I would delete the app and re-install.  If you paid for the app in the first place you will be able to re-install free of charge.  Also, the app should allow the in-app purchase to happen again as it should recognise that you have already purchased it previously.
    Finally, it might be that the 3G doesnt have as much ram as more recent models of iphone and you may have applications running in the background that are preventing the app to function with the in-app purchase unless you shut down any apps eating all you memory that are running in the background.  Shut-down these apps (and the simpson tap out app) by exiting to your home screen and double-tapping the home button to show what apps are running in the background.  press and hold any of the open apps until it starts shaking.  close all the apps down.  exit then re-launch the app.
    good luck.

  • Hello I have a problem with a Wifi Survey app, this app is from Access Agility, however this app was working fine, but without advise stop of working, I tried to open again, but app be close after few seconds.

    Hello I have a problem with a Wifi Survey app, this app is from Access Agility, however this app was working fine, but without advise stop of working, I tried to open again, but app be close after few seconds. Every time that I tried to open it, in diagnostic and use create some files, in special one named LatestCrash-WifiSurvey.plist, this one generate an incident identifier E73B0164-CDFA-4E9E-839E-A0C021BD17A2, but this incident identifier change every time that I tried to open, the last incident identifier is: DE600EB3-AB57-4C33-8DE8-71F6788A7441.
    After of it, I checked that the app had a new version available for downloading, I took a backup of my ipad and then upgrade this app, but is the same problem, all I want is to save the projects I had in this app, I´m afraid that if I delete this app and re-install it, probably I loss my projects.
    Thanks for your help indicating how I can save my projects and see them for example in an iphone for assurance that data is not lost.
    Something that called my attention is part of the log that shows a big CPU processing, but the strange thing is I killed all applications.
    Incident Identifier: E73B0164-CDFA-4E9E-839E-A0C021BD17A2
    CrashReporter Key:   ed0ca1405ce83d4f80cb3cce063d7248d7b76e91
    Hardware Model:      iPad2,5
    Process:         WifiSurvey [139]
    Path:            /var/mobile/Applications/1BEEE35A-85FC-4BE4-B62A-39A930CB3CE2/WifiSurvey.app/Wi fiSurvey
    Identifier:      WifiSurvey
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2013-08-08 19:01:13.476 -0500
    OS Version:      iOS 6.1.3 (10B329)
    Report Version:  104
    Exception Type:  00000020
    Exception Codes: 0x000000008badf00d
    Highlighted Thread:  0
    Application Specific Information:
    com.accessagility.wifisurvey failed to launch in time
    Elapsed total CPU time (seconds): 20.990 (user 20.990, system 0.000), 52% CPU
    Elapsed application CPU time (seconds): 19.954, 50% CPU

    See:
    iOS: Troubleshooting applications purchased from the App Store
    Contact the developer/go to their support site if only one app.
    Restore from backup. See:
    iOS: How to back up              
    Restore to factory settings/new iPod

  • How to run a java class from a shell script with passing arguments

    hi,
    I have a jar with all the required classes. I was using ant to run the classes i needed.
    But now i want to use a shell script to run the class, also the class accepts some arguments so when script is run it should accept arguments.
    So can any one tell me how to set class paths, jar location and call the required class from shell script or batch file with passing arguments to it.
    Thanks in advance.

    Let's say that the order of arguments is as below
    1. Jar file name
    2. Classpath
    Your shell script would look like this
    java -cp $CLASSPATH:$2 -jar $1 I am assuming that your jar file has the required main-class entry in its manifest. Note that $1...$9 represent the arguments to this shell script.
    The same goes for a batch file
    java -cp %CLASSPATH%;%2 -jar %1

  • Problem with passing dashboard prompts

    Hi All,
    I have a problem with passing dashboard prompts.
    Scenario:
    I have a report with country(column interaction),amount sold and two prompts.when the user selects the particular country, i need to navigate to other detailed dasboard with 2 prompts and country.
    with the column interaction, am able to navigate to other dashboard with all the prompts only when the target dashboard prompts, defaults to presentation variable.
    but when the user directly opens the target dashboard, i have to display the report with the default values which am not able to achieve.
    All the prompts are customized prompts.
    Any suggestions would be greatly helpful.
    Thnx in Advance

    Hi,
    When you drill down, corresponding filter values get added to your report. So next time when you change the prompt values It does not give you proper data.
    So before you change the prompt values, you comeback to the default report. and try changing the prompt values.
    Otherwise you can do one thing, Do not enable drill in place for the report section. So when you try to drill down in the report, it takes you to the new page.
    And in the main page even if you change prompt values, It will work perfectly.
    Regards,
    TKB

  • I have an urgent question about my indesign. I had problems with the creative cloude app and then uninstalled it and then installed it again. Now it is not opening and I cannot download it again either. Pls give me help and advice if there is anything I c

    I have an urgent question about my indesign. I had problems with the creative cloude app and then uninstalled it and then installed it again. Now it is not opening and I cannot download it again either. Pls give me help and advice if there is anything I can do to repair it

    Please authorize ADE 3 with same credentials that you used with older version of ADE

  • Sorry but i dont speak a good english, i have a problem with my ipod the apps Twitter,Facebook not open but messenger(fb) music yes,I can do to make them work?

    helpme please,sorry but i dont speak a good english, i have a problem with my ipod the apps Twitter,Facebook not open but messenger(fb) music yes,I can do to make them work?

    See:
    iOS: Troubleshooting applications purchased from the App Store
    Restore from backup. See:
    iOS: How to back up
    Restore to factory settings/new iPod

  • Hai Matt  I have a problem with download a new app. While I bought iphone5, I take iphone to shopkeeper for download some app and videos that he used his Apple ID . That's t problem now.. Not all the time his ID is appearing but some times hi

    Hai Matt
    I have a problem with download a new app. While I bought iphone5, I take iphone to shopkeeper for download some app and videos that he used his Apple ID . That's t problem now.. Not all the time his ID is appearing but some times his Apple ID is appearing that time I can't download app, videos, songs.. So please guide me to remove that ID or how to solve that..
    Regards
    Babu

    Check Settings/iTunes and AppStore/AppleID and make sure that your AppleID is filled in. If not , sign out and sign in with the correct info.
    To make sure that no other apps or videos are on your device than the one you bought, set it up as new device, explained here: How to back up your data and set up as a new device
    Content that is not bought with your ID can't be used on your phone, that's why his ID and password is asked when you try to use those apps downloaded in the store.

  • Problem with function arguments

    I am having a problem with arguments to a function not
    working. In the attached example, the values passed to the function
    are never reflected within the function.
    Can any one tell me what I am doing wrong?
    Thanks,
    David

    hey drzeller,
    i just copied and pasted the original code you attached to
    this thread into flash and kglad is right. there is no problem with
    any of it. i didn't check your values before i altered your code
    originally, i just assumed they were outputting the values you
    posted. if you will copy and paste your original code back into
    flash and check the output window you will see what kglad is
    talking about.
    just so you know, all the advice i've ever seen in this forum
    from kglad has been spot on. definitely use his advice.

  • Massive problems with BlackBerry ID/BIS/App World after provider switch

    Hi,
    I recently switched providers and got a bunch of different problems since then. The old provider deleted my BIS account, which of course also disabled the push mail functionality on my BlackBerry. I tried to register a new account with my new provider, which didn't work for unknown reasons. After several calls to my new providers hotline they finally suggested to reset my BB to factory default and try registering again. After the reset, pretty much the very first thing I was prompted with was the BlackBerry ID login. I used my old login and right after that, in the mail setup dialog, got the error again that there's a problem with the applications server and I can't create or login with a BIS account. I wondered how it could know my BIS account, so I did another factory reset and this time created a new BlackBerry ID. This time everything went fine, the new BIS account was created within seconds and a test mail was delivery to my device immediately. I was pretty happy, until I noticed that I couldn't restore all my data from BlackBerry Protect because of the new BlackBerry ID. Also all my apps were gone from App World, which is linked to the BlackBerry ID as well. So what I'm wondering now is
    1) why is my BIS account linked to my BlackBerry ID,
    2) how can I unlink it and use my new BIS account with my old BlackBerry ID and
    3) if I can't, how do I get my BlackBerry Protect data and App World purchases back?
    I'd prefer having the first two questions answered, because I'm sure switching providers and therefore BIS accounts is a pretty common thing, so there must be some do this right, right? I hope there's some way to fix it, because if I have to choose between "keep apps but live without email" and "have push mail and repurchase all apps", I'd probably choose Android instead.
    PS: I also tried to find a way to contact RIM, so they could somehow unlink my old BIS account from my BlackBerry ID, but there's really not such a thing as "BlackBerry Support". The only thing I found was a button on the App World page for refunds etc, but even there the link was dead.
    Solved!
    Go to Solution.

    I have no insight into if the carrier you are using should or should not be on that list. All I have is what you reported (that they can't escalate) coupled with that list...which leads me to conclude that they are not a fully authorized BB carrier. They would seem to be somehow affiliated though, since indeed you were able to set up BIS services with them. But, I do know of other carriers that are not listed...and as I recall they are something of a sub to a fully authorized carrier, and somehow provide services through that other carrier (who has the formal contract with RIM). I'm really guessing here as I have absolutely no insight into anything authoritative on this matter.
    Regarding the contractually required formal support model...it works like this. You contract with a carrier for services. As part of that contract, you agree to a support model, and that support model starts with them (normally...as I said earlier, some models in some regions use service centers instead...you must review your specific documentation to know what the actual support model is for your specific contract). Consequently, all service-related support needs that you have must start with your carrier (or service center)...contractually, you are not allowed to bypass them and seek formal help direct from RIM. Hence the cost of the direct-to-RIM Incident Support system...you are electing to bypass your contract, and doing so is not "free". (There are also contracts between the carriers and RIM which further require that the carriers provide that front-line support to their end users, and provide the carriers with certain controls over some things that the end users are allowed access to...but that's just in support of the contract between you and your carrier.)
    Now, in some situations (yours included, sadly), it gets even more complex. What I said above applies solely to the services you receive on your BB (voice, data, email, etc.). But, that has nothing to do with support for the device itself (e.g., warranty)...that's a separate contract, and was executed at the time of purchase between you and your place of purchase. That place of purchase (or assigned service center) is responsible for all support for the device itself (warranty, etc.). Again, this servicing (e.g., warranty) is delegated from RIM to the resellers...RIM provides zero front line support for devices, services, etc...none...all of that is contractually delegated down from RIM to various other entities (the carriers, resellers, service centers, etc.). RIM provides warranty and such, but the servicing of such is provided by others from a front line perspective...again, escalation into RIM is available to those front-line entities, but not to end users (save for the fee-based Incident Support model).
    In your case, this could get quite messy. All too often, a service related issue is ignored by the carrier if they discover that they also did not originally sell the device to the end user (if they sold both the device and service, they would be responsible for all support for everything). They have a sad tendency to "blame the device" when it's really a service issue, and ignore the plea from the end user. Despicable, yes...but it happens all too often. And it get's worse...the device support entity will often likewise blame the service entity. The sad part of this bad scenario is that it's the end user who is left out in the cold with no service nor support from anyone that will actually aid their situation. Hopefully, this really poor outcome happens only rarely...but I know 100% (from reports on this forum) that it does happen more than 0%. I hope it does not come to pass for you, but I thought I'd warn you about it just in case so that you can be prepared for it.
    All in all, I think what I'd suggest is that you press 1udn1 for support and escalation on this. Get them to tell you why they have no escalation path since, as far as you understand, they are 100% responsible for all of your service-related support, and that is exactly what this situation is, and they need to resolve it for you one way or another. Escalate with them to managers with them...the front line folks you reach likely won't have any authority to do anything "off script"...and you'll likely need that. Stress to them that you PAY THEM for your services and service-related support...and right now they are delivering neither to you, yet you continue to PAY THEM. Get them to reveal why they have no escalation capability...and see if they will reveal that they are sub to another carrier who does have that capability, and see if you can escalate that way.
    You also may want to contact your former carrier...perhaps they did not fully release something related to your BB/BIS account, and that is what is preventing it from migrating to your new device? It is quite normal to migrate a BIS account from device to device (15 in one year, as I recall), so that one can retain their AW purchase records and such. This holds true crossing carriers...indeed, I've had one BIS account for years, and it started on one carrier and is now on a different one, and all my things are properly intact. Something is wrong "inside" preventing yours from doing so, and that needs attention "inside" to resolve for you.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Problem with downloading and installing apps

    When I start download or install new apps after few second whole operation slow down or stop. I have same problem when I start update old version of aplications. Can you please help.
    I do not have problem with cnnection to internet.

    Try this
    Make sure IOS is updated to latest version
    (How to update your iOS device
    http://support.apple.com/kb/HT4623)
    Reboot device by pressing both the home button and sleep/wake (power) buttons at the same time for 10-15 seconds until the apple logo appears on the screen, then let go.
    If that doesn't work then reset the device by going to settings/general/reset/reset all settings  (or for network connection issues 'reset network settings').
    (no media or data will be deleted from the device, this will only take a minute).

  • Problem with roaming for specific apps

    Hi :)
    I have a problem with my iPhone 4s:
    When i use roaming on my iPhone 4s i try to save some money by turning off roaming for specific apps, but one day for ca. 3 weeks ago it stopped working!
    Some apps can use roaming but some can't ;(
    There are like 10 apps always turned on, but if i try turning roaming off for an app that is on already it wont work!
    If i close settings and reopen it, the app is now denied using roaming!
    If i try allowing an app it changes but still wont work and after some time it gets in the same possission i cant change!
    I have never experienced this before and i could't find an answer on google ;(
    If you know how to fix it please respond to me here :)
    ~somonekilledme
    P.S: Im really sorry if there are bad english here, but im mot english sooooo..... yeah

    You are on the right track suspecting DHCP conflicts.
    To configure your "roaming network" connect your "slave" Extreme to your main Internet router - either directly or through a switch - and place it in "bridge mode". That will work.
    A router will be distributing IP addresses using DHCP. Anything connected to it should be configured as a bridge, the essential difference being that a bridge does not distribute IP addresses.
    I do not believe your "slave" Extreme will function connected as it is to the "main" Extreme, but may work if you assign it a static IP address. It is not unusual for it to retain this static IP after having been changed to DHCP if its lease is still valid.
    The OK article you referenced must be terribly outdated if it is referring to AirPort Admin Utility. That has not been used in about a decade. Read this one:
    Wi-Fi base stations: Extending the range of your wireless network by adding additional Wi-Fi base stations
    Unfortunately its screenshots refer to AirPort Utility 5.6, which has been replaced with the prettier, though less useful 6.2.

  • Problem with steps in health app!!

    Hello guys, i have problem with my health app, i enable steps in the app but it doesnt count even a single step, it says "No Data". I searched in the Internet the way i can enable steps and did exactly what it says but nothing. Can someone help?

    you can use 3rd party apps to monitor your activity, but this will drain you iPhone Battery significantly more than if using the integrated Motion coprocessor.

Maybe you are looking for

  • Spaces not working, please help!

    I used to use spaces on my old Mac Pro. Now I have a new one and Spaces isn't working properly. Very simply I assign Finder to space 1. Then assign InDesign to space 2. How it used to work is I navigate to a file in Finder in space 1, double click it

  • Folders in Outlook 2010

    Hi, Our company just changed domain names as part of a rebrand and in the process acquired new email addresses.  Our new email address are IMAP/SMTP accounts.  I was able to set them up but noticed that the new accounts don't have the traditional "ju

  • Weights are not coming into order correctly

    Hi gurus, When entering a standard order for a material XYZ with ref to a Qty contract the weights change if there is more than one line entered. On the first line 500 pcs has a weight of .530 and on the second line 500 pcs has a weight of .930... Fo

  • If I connect HDMI between TV & Mac Mini will audio pump out the TV Speakers?

    I connected my Mini with HDMI to my 46in Samsung the Mini recgonized it as 1080 and it looks great.  Though the audio was coming out the speaker in the Mini.  Shouldn't it come out the TV speakers?

  • Contribute CS5 Silent Install

    Has anyone succeeded in creating a silent install for Contribute CS5? I've tried both the Adobe Application Manager Enterprise Addition tool and the setup executable response file parameter referenced in CPSID_82946 and KB405451 respectively. After g