Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [higgins-dev] Higgins 1.1M4 configuration problems

Unfortunately, someone more familiar with the STS setup will have to take it from here. I just wanted to check whether something in the configuration code was going wrong. I don't have any specific knowledge about that file.

...Greg


leonardo.straniero@xxxxxxxxxxxx wrote:
Hi Gred,
thanks for your response...

The "CardImageFile" il specified in the \webapps\TokenService\ConfigurationFiles\ManagedConfiguration.xml
The line in question is:

<Setting Name="CardImageFile" Type="htf:file">higgins.jpg</Setting>

I chek if the file is in the ConfigurationFile folder and it is there...
I add the system property which should contain the Configuration directory
path...

Is this the right way to fix this problem?

regards,
Leonardo Straniero.

-- Original Message --
Date: Tue, 02 Dec 2008 09:53:46 -0500
From: Greg Byrd <gbyrd@xxxxxxxx>
To: "Higgins (Trust Framework) Project developer discussions"
	<higgins-dev@xxxxxxxxxxx>
Subject: Re: [higgins-dev] Higgins 1.1M4 configuration problems
Reply-To: "Higgins (Trust Framework) Project developer discussions"
	<higgins-dev@xxxxxxxxxxx>


If this is happening on line 130, then this appears to be the code in question:

java.io.FileInputStream fisCardImage = (java.io.FileInputStream)mapComponentSettings.get("CardImageFile");
byte [] byteCardImage = new byte[fisCardImage.available()];
fisCardImage.read(byteCardImage);


The last line is 130, at least in my version. Is there a CardImageFile setting in your configuration? Does this name an existing file in your system?

...Greg



leonardo.straniero@xxxxxxxxxxxx wrote:
Hi All,
I have a problem with my Higgins 1.1M4 STS Installation.
When i try to execute any operation (such as Create, Modify, Get) on a
Digital
Subject i get java.lang.NullPointerException on my Tomcat Server Console.

I post the top of the Stack trace:

ERROR LogHelper.error (119): modifyProfile: null
ERROR LogHelper.error (119): java.lang.NullPointerException
org.eclipse.higgins.sts.server.profile.ProfileService::configure ProfileService.java:130.
ERROR LogHelper.error (119): org.eclipse.higgins.sts.server.profile.ProfileService::configure
ProfileService.java:130.
org.eclipse.higgins.configuration.xml.SingletonHandler::getSetting SingletonHandler.java:72.
ERROR LogHelper.error (119): org.eclipse.higgins.configuration.xml.SingletonHandler::getSetting
SingletonHandler.java:72.
org.eclipse.higgins.configuration.xml.MapHandler::getSetting MapHandler.java:88.
ERROR LogHelper.error (119): org.eclipse.higgins.configuration.xml.MapHandler::getSetting
MapHandler.java:88.
org.eclipse.higgins.configuration.xml.ConfigurationHandler::configure
ConfigurationHandler.java:292.
ERROR LogHelper.error (119): org.eclipse.higgins.configuration.xml.ConfigurationHandler::configure
ConfigurationHandler.java:292.
org.eclipse.higgins.configuration.xml.ConfigurationHandler::configure
ConfigurationHandler.java:172.
ERROR LogHelper.error (119): org.eclipse.higgins.configuration.xml.ConfigurationHandler::configure
ConfigurationHandler.java:172.
org.eclipse.higgins.sts.utilities.Configuration::configure Configuration.java:55.
ERROR LogHelper.error (119): org.eclipse.higgins.sts.utilities.Configuration::configure
Configuration.java:55.
org.eclipse.higgins.sts.binding.axis1x.ServerServiceBinding::configure
ServerServiceBinding.java:98.
ERROR LogHelper.error (119): org.eclipse.higgins.sts.binding.axis1x.ServerServiceBinding::configure
ServerServiceBinding.java:98.
org.eclipse.higgins.sts.binding.axis1x.ProfileServiceServerBinding::configure
ProfileServiceServerBinding.java:62.
ERROR LogHelper.error (119): org.eclipse.higgins.sts.binding.axis1x.ProfileServiceServerBinding::configure
ProfileServiceServerBinding.java:62.
org.eclipse.higgins.sts.binding.axis1x.ProfileServiceServerBinding::getProfile
ProfileServiceServerBinding.java:126.
ERROR LogHelper.error (119): org.eclipse.higgins.sts.binding.axis1x.ProfileServiceServerBinding::getProfile
ProfileServiceServerBinding.java:126.
org.eclipse.higgins.sts.binding.axis1x.service.ProfileBindingImpl::getProfile
ProfileBindingImpl.java:105.
ERROR LogHelper.error (119): org.eclipse.higgins.sts.binding.axis1x.service.ProfileBindingImpl::getProfile
ProfileBindingImpl.java:105.
org.apache.jsp.ModifyProfile_jsp::_jspService ModifyProfile_jsp.java:284.
ERROR LogHelper.error (119): org.apache.jsp.ModifyProfile_jsp::_jspService
ModifyProfile_jsp.java:284.
org.apache.jasper.runtime.HttpJspBase::service HttpJspBase.java:98.
ERROR LogHelper.error (119): org.apache.jasper.runtime.HttpJspBase::service
HttpJspBase.java:98.
javax.servlet.http.HttpServlet::service HttpServlet.java:803.
ERROR LogHelper.error (119): javax.servlet.http.HttpServlet::service HttpServlet.java:803.
org.apache.jasper.servlet.JspServletWrapper::service JspServletWrapper.java:331.
ERROR LogHelper.error (119): org.apache.jasper.servlet.JspServletWrapper::service
JspServletWrapper.java:331.
org.apache.jasper.servlet.JspServlet::serviceJspFile JspServlet.java:329.
ERROR LogHelper.error (119): org.apache.jasper.servlet.JspServlet::serviceJspFile
JspServlet.java:329.
org.apache.jasper.servlet.JspServlet::service JspServlet.java:265.
ERROR LogHelper.error (119): org.apache.jasper.servlet.JspServlet::service
JspServlet.java:265.
javax.servlet.http.HttpServlet::service HttpServlet.java:803.
.....
.....

Please help me to fix this problem...

Thanks,
Best regards,
Leonardo Straniero.


_______________________________________________
higgins-dev mailing list
higgins-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/higgins-dev

_______________________________________________
higgins-dev mailing list
higgins-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/higgins-dev


_______________________________________________
higgins-dev mailing list
higgins-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/higgins-dev




Back to the top