Problems..getting nullvalues

Hello!
I have 3 jsp-pages with one form in each page to get from page1 to page2 you have to fill all fields in the form else you get an alertwindow (Javascript). All information is saved in a Bean which writes to an xml-file(this is done when you submit from page3)
When I opened the xml-file I saw that sometimes all values from page1 are equals null but the rest of the values are set correctly (page2 and page3). I cant figure it out why this occur. You can't go on if you haven't filled pag1 correctly.
Does anyone have any clue why this occur?
If anyone can help me with this you will get 2 Dukes
Regards // digital_storm

Hello!
Ok here it is but its quite much syntax....
Its a questionary so my bean got a lot of variables.
------------------page1-jsp--------------------------------------------
<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.io.*,java.util.*" errorPage="" %>
<jsp:useBean id="eBeanId" scope="session" class="formular.EBean" />
<jsp:setProperty name="eBeanId" property="*" />
<html>
<head>
<title>
Personuppgifter
</title>
<script language="JavaScript" type="text/JavaScript">
function validate(){
var message="\u00C5tg\u00E4rda f\u00F6ljande f\u00F6r att g\u00E5 vidare:\n\n";
var stad=document.form1.bori.value;
var fn=document.form1.fnamn.value;
var en=document.form1.enamn.value;
var kon=document.form1.kon.options[document.form1.kon.selectedIndex].text;
var sysselsattning=document.form1.syssels.options[document.form1.syssels.selectedIndex].text;
var alder=document.form1.alder.options[document.form1.alder.selectedIndex].text;
var addtext=false;
var korrekt=true;
var x=document.form1;
var i=1;
if(fn==""){
     message=message+"Fyll i f\u00E4ltet 'F\u00F6rnamn'"+"\n";
     korrekt=false;
if(en==""){
     message=message+"Fyll i f\u00E4ltet 'Efternnamn'"+"\n";
     korrekt=false;
at=x.email.value.indexOf("@")
     if(at==-1){
          message=message+"Ingen giltig emailadress"+"\n";
          korrekt=false;
     if(stad==""){
     message=message+"Fyll i f\u00E4ltet 'Bosatt i'"+"\n";
     korrekt=false;
     if(kon=="V\u00E4lj"){
          message=message+"V\u00E4lj 'K\u00F6n'"+"\n";
          korrekt=false;
     if(sysselsattning=="V\u00E4lj"){
          message=message+"V\u00E4lj 'Syssels\u00E4ttning'"+"\n";
          korrekt=false;
     if(alder=="V\u00E4lj"){
          message=message+"V\u00E4lj '\u00C5lder'"+"\n";
          korrekt=false;
     if(!korrekt){
     alert(message)
     return false;}
     if(korrekt){
     return true;}
function AddInput(sname){
if(sname=="Studerar p\u00E5 h\u00F6gskola"){
var oInput = document.createElement('input');
oInput.setAttribute('name','utbildning');
oInput.setAttribute('type','text');
oInput.setAttribute('size','50');
oInput.setAttribute('maxlength','60');
oInput.setAttribute('value','Skriv in vad du studerar');
document.getElementById("div1").appendChild(oInput);
if(sname=="Arbetar"){
var oInput = document.createElement('input');
oInput.setAttribute('name','jobbarmed');
oInput.setAttribute('type','text');
oInput.setAttribute('size','50');
oInput.setAttribute('maxlength','60');
oInput.setAttribute('value','Skriv in vad du arbetar med');
document.getElementById("div1").appendChild(oInput);
</script>
<body>
<table width="735" height="450" align="center">
<form name="form1" method="post" action="start2.jsp" onsubmit="return validate()">
<tr bgcolor="#CCCCCC">
<td height="50" colspan="4"><font color="#FFFFFF" size="4" face="Verdana, Arial, Helvetica, sans-serif">  Allm&auml;nna
uppgifter </font></td>
</tr>
<tr>
<td background="bilder/vert.gif"> </td>
<td>F&ouml;rnamn:</td>
<td><input name="fnamn" type="text" id="fnamn" size="30" maxlength="40"></td>
<td background="bilder/vert.gif"> </td>
</tr>
<tr>
<td colspan="4" bgcolor="#CCCCCC"> </td>
</tr>
<tr>
<td background="bilder/vert.gif"> </td>
<td>Efternamn:</td>
<td><input name="enamn" type="text" id="enamn" size="30" maxlength="40"></td>
<td background="bilder/vert.gif"> </td>
</tr>
<tr>
<td colspan="4" bgcolor="#CCCCCC"> </td>
</tr>
<tr>
<td width="10" background="bilder/vert.gif"> </td>
<td width="134">E-mail: </td>
<td width="534"> <input name="email" type="text" size="30" maxlength="40">
</td>
<td width="10" background="bilder/vert.gif"> </td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="10" colspan="4"> </td>
</tr>
<tr>
<td width="10" height="10" background="bilder/vert.gif"> </td>
<td height="10">K&ouml;n:</td>
<td height="10"> <select name="kon" >
<option selected>V&auml;lj</option>
<option>Man</option>
<option>Kvinna</option>
</select> </td>
<td width="10" height="10" background="bilder/vert.gif"> </td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="10" colspan="4"> </td>
</tr>
<tr>
<td width="10" height="10" background="bilder/vert.gif"> </td>
<td height="10">&Aring;lder:</td>
<td height="10"> <select name="alder" >
<option selected>V&auml;lj</option>
<option>10-14</option>
<option>15-19</option>
<option>20-24</option>
<option>25-29</option>
<option>30-34</option>
<option>35-39</option>
<option>40-44</option>
<option>45-49</option>
<option>50-54</option>
<option>55-59</option>
<option>60<</option>
</select> </td>
<td width="10" height="10" background="bilder/vert.gif"> </td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="10" colspan="4"> </td>
</tr>
<tr>
<td width="10" height="10" background="bilder/vert.gif"> </td>
<td height="10">Syssels&auml;ttning:</td>
<td height="10">
<div id="div1">
          <select name="syssels" onchange="AddInput(this.options[this.selectedIndex].text)">
               <option selected >V&auml;lj</option>
<option>Studerar p&aring; h&ouml;gskola</option>
<option>Arbetar</option>
<option>Arbetss&ouml;kande</option>
<option>Pension&auml;r</option>
<option>Annat</option>
</select>
          </div>
     </td>
<td width="10" height="10" background="bilder/vert.gif"> </td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="10" colspan="4"> </td>
</tr>
<tr>
<td width="10" height="10" background="bilder/vert.gif"> </td>
<td height="10">Bosatt i:</td>
<td height="10"> <input name="bori" type="text" > </td>
<td width="10" height="10" background="bilder/vert.gif"> </td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="10" colspan="4"> </td>
</tr>
<tr>
<td width="10" height="10" background="bilder/vert.gif"> </td>
<td height="10">Intressen:</td>
<td height="10"><input name="intressen" type="text" id="intressen" maxlength="40"></td>
<td width="10" height="10" background="bilder/vert.gif"> </td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="10" colspan="4"> </td>
</tr>
<tr>
<td width="10" height="10" background="bilder/vert.gif"> </td>
<td height="10">Har du mobiltelefon?</td>
<td height="10"> <p>
<label>
<input type="radio" name="harmobil" value="true" checked >
Ja</label>
<label>
<input type="radio" name="harmobil" value="false">
Nej</label>
<br>
</p></td>
<td width="10" height="10" background="bilder/vert.gif"> </td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="10" colspan="4"> </td>
</tr>
<tr>
<td width="10" height="10" background="bilder/vert.gif"> </td>
<td height="10">Har du en handdator?</td>
<td height="10"> <p>
<label>
<input type="radio" name="handdator" value="true" checked >
Ja</label>
<label>
<input type="radio" name="handdator" value="false">
Nej</label>
<br>
</p></td>
<td width="10" height="10" background="bilder/vert.gif"> </td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="10" colspan="4"> </td>
</tr>
<tr>
<td width="10" height="10" background="bilder/vert.gif"> </td>
<td height="10">Har du en 3G-telefon?</td>
<td height="10"><label>
<input type="radio" name="har3g" value="true" checked >
Ja</label> <label>
<input type="radio" name="har3g" value="false">
Nej</label> </td>
<td width="10" height="10" background="bilder/vert.gif"> </td>
</tr>
<tr bgcolor="#CCCCCC">
<td height="10" colspan="4"><p>
<label></label>
<br>
</p></td>
</tr>
<tr align="center" valign="middle" bgcolor="#FFFFFF">
<td width="10" height="10"> </td>
<td height="10" colspan="2"> <input type="submit" name="Submit" value="G&aring; vidare till n&auml;sta sida">
</td>
<td width="10" height="10"> </td>
</tr>
<tr bordercolor="#CCCCCC" bgcolor="#CCCCCC">
<td height="10" colspan="4"> </td>
</tr>
</form>
</table>
<p> </p>
</body>
</html>
I have substituted the filenames which i write/controll to/from but they are working fine.
"Mio" is a class that has a lot of methods to write/read/check files and that one is also working fine.
-----My Bean-----------------------------------------------
package formular;
import javax.servlet.http.HttpServletRequest;
import java.io.*;
import java.util.Vector;
public class EBean {
private boolean accept = false;
private boolean finnsredan = false;
private boolean notok = true;
private Vector del = new Vector();
private String fnamn;
private String enamn;
private String email;
private String kon;
private String alder;
private String syssels;
private String utbildning;
private String jobbarmed;
private boolean arstudent = false;
private boolean ararbetande = false;
private boolean arpensionar = false;
private boolean ararbsok = false;
private String bori;
private String intressen;
private boolean intrsport = false;
private boolean intrmusik = false;
private boolean harmobil;
private boolean harhand;
private boolean har3g;
private boolean testing;
private String harejhand;
private String harej3g;
private String ma1pris;
private String ma1stl;
private String ma1dstl;
private String ma1fnkt;
private String ma1de;
private String ma1varu;
private String maoman;
private String maoman1;
private String sk;
private String operator;
private String smsperdag;
private String anvmob;
private String maomj1;
private boolean wapgprs;
private String anvwapgp;
private String anvejwapgp;
private String anvenwapgp;
private boolean harwapgpanvj=false;
private boolean harwapgpanvn=false;
private String mext1;
private String mext2;
private String mext3;
private String mext4;
private String mext5;
private String mext6;
private String mext7;
private String hdator1;
private String hdator2;
private String hdator3;
private String resa1;
private String resa2;
private String kontakt;
private String hdatoranv1;
private String program;
private String tre1;
private String tre21;
private String tre22;
private String tre23;
private String tre24;
private String tre25;
private String tre26;
private String tre3;
private String tre4;
private String tre5;
private String tre61;
private String tre62;
private String tre63;
private String tre64;
private String tre65;
private String tre66;
private String tre7;
private String tre8;
private String tre9;
private String tre10;
private String tre11;
private String tre12;
private String tre13;
private String tre14;
private String tre15;
private String tre16;
private String tre17;
private String tre18;
private String tre19;
private String treomj1;
private String treomj2;
private String treomn1;
private String treomn2;
private String egensk1;
private String hdatorforb;
private String maomj3;
private String kontakt2;
private String stu1;
private String stu2;
private String stu3;
private String stu4;
private String stu5;
private String stu6;
private String stu7;
private String stu8;
private String stu9;
private String stu10;
private String stu11a;
private String stu11b;
private String stu11c;
private String stu11d;
private String stu11e;
private String stu11f;
private String stu11g;
private String stu11h;
private String stu11i;
private String stu11j;
private String stu12;
private String stu13;
private String prismodell;
public boolean getAcc() {
return accept;
public void setAccept(String s) {
if (s.equals("true")) {
System.out.println("inne i true");
accept = true;
else {
accept = false;
System.out.println("inne i false");
public boolean getFinnsredan() {
return finnsredan;
public Vector getDeltagare() {
return del;
public void setDeltagare() {
String filnamn =
"add a visitor to the file";
String email;
String line;
BufferedInputStream textread;
textread = Mio.openRead(filnamn);
while (!Mio.eof(textread)) {
line = Mio.getLine(textread);
if (!line.equals("")) {
email = line;
del.add(email);
public String getFnamn() {
return fnamn;
public void setFnamn(String newValue) {
if (newValue != null) {
fnamn = newValue.trim().toLowerCase();
public String getEnamn() {
return enamn;
public void setEnamn(String newValue) {
if (newValue != null) {
enamn = newValue.trim().toLowerCase();
public String getEmail() {
return email;
public void setEmail(String newValue) {
if (newValue != null) {
email = newValue.trim();
controllEmail(email);
public String getKon() {
return kon;
public void setKon(String newValue) {
if (newValue != null) {
kon = newValue;
public String getAlder() {
return alder;
public void setAlder(String newValue) {
if (newValue != null) {
alder = newValue;
public String getSyssels() {
return syssels;
public void setSyssels(String newValue) {
if (newValue != null) {
syssels = newValue;
if (syssels.equals("Studerar p� h�gskola")) {
arstudent = true;
ararbetande = false;
arpensionar = false;
ararbsok = false;
if (syssels.equals("Arbetar")) {
arstudent = false;
ararbetande = true;
arpensionar = false;
ararbsok = false;
if (syssels.equals("Arbetss�kande")) {
arstudent = false;
ararbetande = false;
arpensionar = false;
ararbsok = true;
if (syssels.equals("Pension�r")) {
arstudent = false;
ararbetande = false;
arpensionar = true;
ararbsok = false;
public String getUtbildning(){
return utbildning;
public void setUtbildning(String t){
if(t!=""){
utbildning=t;
public String getJobbarmed(){
return jobbarmed;
public void setJobbarmed(String u){
if(u!=""){
jobbarmed=u;
public boolean getArstudent() {
return arstudent;
public String getBori() {
return bori;
public void setBori(String newValue) {
if (newValue != null) {
bori = newValue;
public boolean getIntrsport() {
return intrsport;
public void setIntrsport(boolean newValue) {
if (newValue) {
intrsport = true;
else {
intrsport = false;
public boolean getIntrmusik() {
return intrmusik;
public void setIntrmusik(boolean newValue) {
if (newValue) {
intrmusik = true;
else {
intrmusik = false;
public String getIntressen(){
return intressen;
public void setIntressen(String h){
if(h!=""){
intressen=h;
public boolean getMobil() {
return harmobil;
public void setHarmobil(String q) {
if (q.equals("true")) {
harmobil = true;
else {
harmobil = false;
public boolean getHarhand() {
return harhand;
public void setHanddator(String q) {
if (q.equals("true")) {
harhand = true;
else {
harhand = false;
public boolean getHar() {
return har3g;
public void setHar3g(String q) {
if (q.equals("true")) {
har3g = true;
else {
har3g = false;
/*------------------------- sid1 --------------------------------*/
public String getMa1pris() {
return ma1pris;
public void setMa1pris(String s) {
if(ma1pris!=""){   
ma1pris = s;
public String getMa1stl() {
return ma1stl;
public void setMa1stl(String s) {
ma1stl = s;
public String getMa1dstl() {
return ma1dstl;
public void setMa1dstl(String s) {
ma1dstl = s;
public String getMa1fnkt() {
return ma1fnkt;
public void setMa1fnkt(String s) {
ma1fnkt = s;
public String getMa1de() {
return ma1de;
public void setMa1de(String s) {
ma1de = s;
public String getMa1varu() {
return ma1varu;
public void setMa1varu(String s) {
ma1varu = s;
public String getMaoman() {
return maoman;
public void setMaoman(String s) {
maoman = s;
public String getMaoman1() {
return maoman1;
public void setMaoman1(String s) {
maoman1 = s;
public String getHarejhand() {
return harejhand;
public void setHarejhand(String s) {
harejhand = s;
public String getHarej3g() {
return harej3g;
public void setHarej3g(String s) {
harej3g = s;
public String getSk() {
return sk;
public void setSk(String s) {
sk = s;
public String getOperator() {
return operator;
public void setOperator(String s) {
operator = s;
public String getSmsperdag() {
return smsperdag;
public void setSmsperdag(String s) {
smsperdag = s;
public String getAnvmob() {
return anvmob;
public void setAnvmob(String s) {
anvmob = s;
public String getMaomj1() {
return maomj1;
public void setMaomj1(String s) {
maomj1 = s;
public boolean getWapgprs2() {
return wapgprs;
public void setWapgprs(String s) {
if (s.equals("Ja, och jag anv�nder mig av det")) {
harwapgpanvj = true;
harwapgpanvn = false;
wapgprs = true;
if (s.equals("Ja,men jag anv�nder mig INTE av det")) {
harwapgpanvn = true;
harwapgpanvj = false;
wapgprs = true;
if (s.equals("Nej")) {
wapgprs = false;
public String getProgram(){
return program;
public void setProgram(String g){
if(g!=""){
program=g;
public boolean getHarwapgpanvj() {
return harwapgpanvj;
public boolean getHarwapgpanvn() {
return harwapgpanvn;
public String getMext1() {
return mext1;
public void setMext1(String a) {
if (a != null) {
mext1 = a;
public String getMext2() {
return mext2;
public void setMext2(String b) {
if (b != null) {
mext2 = b;
public String getMext3() {
return mext3;
public void setMext3(String c) {
if (c != null) {
mext3 = c;
public String getMext4() {
return mext4;
public void setMext4(String d) {
if (d != null) {
mext4 = d;
public String getMext5() {
return mext5;
public void setMext5(String e) {
if (e != null) {
mext5 = e;
public String getMext6() {
return mext6;
public void setMext6(String f) {
if (f != null) {
mext6 = f;
public String getMext7() {
return mext7;
public void setMext7(String g) {
if (g != null) {
mext7 = g;
public String getHdator1() {
return hdator1;
public void setHdator1(String h) {
if (h != "") {
hdator1 = h;
public String getHdator2() {
return hdator2;
public void setHdator2(String i) {
if (i != null) {
hdator2 = i;
public String getHdator3() {
return hdator3;
public void setHdator3(String j) {
if (j != null) {
hdator3 = j;
public String getResa1() {
return resa1;
public void setResa1(String k) {
if (k != null) {
resa1 = k;
public String getResa2() {
return resa2;
public void setResa2(String l) {
if (l != null) {
resa2 = l;
public String getKontakt() {
return kontakt;
public void setKontakt(String m) {
if (m != null) {
kontakt = m;
public String getEgensk1() {
return egensk1;
public void setEgensk1(String s) {
if (s != "") {
egensk1 = s;
public String getHdatorforb() {
return hdatorforb;
public void setHdatorforb(String s) {
if (s != "") {
hdatorforb = s;
public String getMaomj3() {
return maomj3;
public void setMaomj3(String s) {
if (s != "") {
maomj3 = s;
public String getKontakt2() {
return kontakt2;
public void setKontakt2(String s) {
if (s != "") {
kontakt2 = s;
public String getHdatoranv1() {
return hdatoranv1;
public void setHdatoranv1(String s) {
if (s != "") {
hdatoranv1 = s;
/*----------------------------Student--------------------------------------*/
public String getStu1() {
return stu1;
public void setStu1(String a) {
if (a != null) {
stu1 = a;
public String getStu2() {
return stu2;
public void setStu2(String b) {
if (b != null) {
stu2 = b;
public String getStu3() {
return stu3;
public void setStu3(String c) {
if (c != null) {
stu3 = c;
public String getStu4() {
return stu4;
public void setStu4(String d) {
if (d != null) {
stu4 = d;
public String getStu5() {
return stu5;
public void setStu5(String e) {
if (e != null) {
stu5 = e;
public String getStu6() {
return stu6;
public void setStu6(String f) {
if (f != null) {
stu6 = f;
public String getStu7() {
return stu7;
public void setStu7(String g) {
if (g != null) {
stu7 = g;
public String getStu8() {
return stu8;
public void setStu8(String h) {
if (h != null) {
stu8 = h;
public String getStu9() {
return stu9;
public void setStu9(String i) {
if (i != null) {
stu9 = i;
public String getStu10() {
return stu10;
public void setStu110(String j) {
if (j != null) {
stu10 = j;
public String getStu11a() {
return stu11a;
public void setStu11a(String k) {
if (k != null) {
stu11a = k;
public String getStu11b() {
return stu11b;
public void setStu11b(String l) {
if (l != null) {
stu11b = l;
public String getStu11c() {
return stu11c;
public void setStu11c(String m) {
if (m != null) {
stu11c = m;
public String getStu11d() {
return stu11d;
public void setStu11d(String n) {
if (n != null) {
stu11d = n;
public String getStu11e() {
return stu11e;
public void setStu11e(String o) {
if (o != null) {
stu11e = o;
public String getStu11f() {
return stu11f;
public void setStu11f(String p) {
if (p != null) {
stu11f = p;
public String getStu11g() {
return stu11g;
public void setStu11g(String q) {
if (q != null) {
stu11g = q;
public String getStu11h() {
return stu11h;
public void setStu11h(String r) {
if (r != null) {
stu11h = r;
public String getStu11i() {
return stu11i;
public void setStu11i(String s) {
if (s != null) {
stu11i = s;
public String getStu11j() {
return stu11j;
public void setStu11j(String t) {
if (t != null) {
stu11j = t;
public String getStu12() {
return stu12;
public void setStu12(String u) {
if (u != null) {
stu12 = u;
public String getStu13() {
return stu13;
public void setStu13(String v) {
if (v != null) {
stu13 = v;
/*------------------------- sid 2 ------------------------------------*/
public String getAnvwapgp() {
return anvwapgp;
public void setAnvwapgp(String s) {
anvwapgp = s;
public String getAnvejwapgp() {
return anvejwapgp;
public void setAnvejwapgp(String s) {
anvejwapgp = s;
public String getTre1() {
return tre1;
public void setTre1(String s) {
tre1 = s;
public String getTre21() {
return tre21;
public void setTre21(String s) {
tre21 = s;
public String getTre22() {
return tre22;
public void setTre22(String s) {
tre22 = s;
public String getTre23() {
return tre23;
public void setTre23(String s) {
tre23 = s;
public String getTre24() {
return tre24;
public void setTre24(String s) {
tre24 = s;
public String getTre25() {
return tre25;
public void setTre25(String s) {
tre25 = s;
public String getTre26() {
return tre26;
public void setTre26(String s) {
tre26 = s;
public String getTre3() {
return tre3;
public void setTre3(String s) {
tre3 = s;
public String getTre4() {
return tre4;
public void setTre4(String s) {
tre4 = s;
public String getTre5() {
return tre5;
public void setTre5(String s) {
tre5 = s;
public String getTre61() {
return tre61;
public void setTre61(String s) {
tre61 = s;
public String getTre62() {
return tre62;
public void setTre62(String s) {
tre62 = s;
public String getTre63() {
return tre63;
public void setTre63(String s) {
tre63 = s;
public String getTre64() {
return tre64;
public void setTre64(String s) {
tre64 = s;
public String getTre65() {
return tre65;
public void setTre65(String s) {
tre65 = s;
public String getTre7() {
return tre7;
public void setTre7(String s) {
tre7 = s;
public String getTre8() {
return tre8;
public void setTre8(String s) {
tre8 = s;
public String getTre9() {
return tre9;
public void setTre9(String s) {
tre9 = s;
public String getTre10() {
return tre10;
public void setTre10(String s) {
tre10 = s;
public String getTre11() {
return tre11;
public void setTre11(String s) {
tre11 = s;
public String getTre12() {
return tre12;
public void setTre12(String s) {
tre12 = s;
public String getTre13() {
return tre13;
public void setTre13(String s) {
tre13 = s;
public String getTre14() {
return tre14;
public void setTre14(String s) {
tre14 = s;
public String getTre15() {
return tre15;
public void setTre15(String s) {
tre15 = s;
public String getTre16() {
return tre16;
public void setTre16(String s) {
tre16 = s;
public String getTre17() {
return tre17;
public void setTre17(String s) {
tre17 = s;
public String getTre18() {
return tre18;
public void setTre18(String s) {
tre18 = s;
public String getTre19() {
return tre19;
public void setTre19(String s) {
tre19 = s;
public String getTreomj1() {
return treomj1;
public void setTreomj1(String s) {
treomj1 = s;
public String getTreomj2() {
return treomj2;
public void setTreomj2(String s) {
treomj2 = s;
public String getTreomn1() {
return treomn1;
public void setTreomn1(String s) {
treomn1 = s;
public String getTreomn2() {
return treomn2;
public void setTreomn2(String s) {
treomn2 = s;
public String getPrismodell(){
return prismodell;
public void setPrismodell(String h){
if(h!=""){
prismodell=h;
public synchronized void write() {
int i = controll();
String namn =
"generates a new file";
String namn2 =
"add the visitor to this file";
File myFile = new File(namn);
boolean file_succes = false;
PrintWriter OutFile, OutFile2;
try {
file_succes = myFile.createNewFile();
OutFile = new PrintWriter(new FileOutputStream(namn, true));
OutFile.println("<?xml version='1.0' encoding='ISO-8859-1' ?>");
OutFile.println("<element>");
OutFile.println(" <Fnamn> " + getFnamn() + " </Fnamn>");
OutFile.println(" <Enamn> " + getEnamn() + " </Enamn>");
OutFile.println(" <Email> " + getEmail() + " </Email>");
OutFile.println(" <K�n> " + getKon() + " </K�n>");
OutFile.println(" <�lder> " + getAlder() + " </�lder>");
OutFile.println(" <Syssels�ttning> " + getSyssels() + " </Syssels�ttning>");
OutFile.println(" <Utbildning> " + getUtbildning() + " </Utbildning>");
OutFile.println(" <Jobbarmed> " + getJobbarmed() + " </Jobbarmed>");
OutFile.println(" <Bosatti> " + getBori() + " </Bosatti>");
OutFile.println(" <Intressen> " + getIntressen() + " </Intressen>");
OutFile.println(" <Harmobil> " + getMobil() + " </Harmobil>");
OutFile.println(" <Harhanddator> " + getHarhand() +" </Harhanddator>");
OutFile.println(" <Har3G-telefon> " + getHar() +" </Har3G-telefon>");
OutFile.println(" <Harhanddator> " + getHarhand() +" </Harhanddator>");
OutFile.println(" <Haringenmobild�rf�r> " + getMaoman1() +" </Haringenmobild�rf�r>");
OutFile.println(" <Haringenhanddatord�

Similar Messages

  • SharePoint Designer workflow gives Claims Authentication error for some users. Problem getting output claims identity. The specified user or domain group was not found.

    We have a SharePoint Enterprise 2013 system at RTM level.  We've installed Workflow Manager 1.0 by following the steps at
    http://technet.microsoft.com/en-us/library/jj658588.aspx.  For the final step of Validating the Installation we created a simple list-level workflow and verified that the workflow
    is invoked successfully.  This is working successfully, but only for a single user.  If other users in the same site collection try to invoke the workflow on this same list we get the ULS Log Error:
    Claims Authentication          af3zp Unexpected STS Call Claims Saml: Problem getting output claims identity. Exception: 'Microsoft.SharePoint.SPException: The specified user or domain group was not found. --->
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
    followed by:
    Failed to issue new security token. Exception: Microsoft.SharePoint.SPException: The specified user or domain group was not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
    (as details below).
    All accounts that are attempting to use the Test Workflow (both working and non-working user accounts) are valid AD accounts and are included in the User Profile Sync that runs nightly.  All have Contribute or Design permission level (and for testing,
    Full Control). 
    What could cause the Claims Authentication to fail when certain users attempt to launch the workflow?
    Thank you for your response.
    Jim Mac.
    08/29/2013 10:22:51.94  w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          af3zp Unexpected STS Call Claims Saml: Problem getting output claims identity. Exception: 'Microsoft.SharePoint.SPException: The specified user or domain group was
    not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.     at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType,
    Boolean forceSuccess)     at System.Security.Principal.NTAccount.Translate(Type targetType)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity,
    SPClaim loginClaim)     --- End of inner exception stack trace ---     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdent... 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94* w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          af3zp Unexpected ...ity, SPClaim loginClaim)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String
    encodedIdentityClaimSuffix)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.CreateTokenCacheReferenceFromTokenSignature(SPRequestInfo requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentTokenCacheReferenceClaim(SPRequestInfo
    requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)'. 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94  w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          fo1t Monitorable STS Call: Failed to issue new security token. Exception: Microsoft.SharePoint.SPException: The specified user or domain group was not found. --->
    System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.     at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)    
    at System.Security.Principal.NTAccount.Translate(Type targetType)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim)    
    --- End of inner exception stack trace ---     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim logi... 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94* w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          fo1t Monitorable ...nClaim)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix)    
    at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.CreateTokenCacheReferenceFromTokenSignature(SPRequestInfo requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentTokenCacheReferenceClaim(SPRequestInfo
    requestInfo, IClaimsIdentity identity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)     at Microsoft.IdentityModel.Securi... 94aa5c2d-fa45-9b83-b203-a92b20102583
    08/29/2013 10:22:51.94* w3wp.exe (0x2020)                        0x26D8 SharePoint Foundation        
     Claims Authentication          fo1t Monitorable ...tyTokenService.SecurityTokenService.Issue(IClaimsPrincipal principal, RequestSecurityToken request)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.Issue(IClaimsPrincipal
    principal, RequestSecurityToken request) 94aa5c2d-fa45-9b83-b203-a92b20102583

    Hi Aries,
    I am facing issue with work flow where Workflow goes to Suspend mode.
    I am facing an issue with SP2013 Custom Workflow developed using Visual Studio 2012.
    Objective of the Custom workflow: User fills the form and submit, list get updated and workflow will initiate and go for the process.
    Issue: After the deployment of WF, for first time when user is filling the form and submit, list is getting updated. But the Workflow Goes to "Suspend" mode. (
    This Custom Workflow has a configuration file where we are providing other details including ID of Impersonator (farm is running under Claim Based Authentication).
    Work flow works fine once when the Impersonator initiate the workflow (Fill the form and submit for approval) and everything works fine after that.
    Following steps are already performed
    1.Make sure User profile synchronization is started.
    2.Make sure the user is not the SharePoint system user.
    3.Make sure the user by whom you are logged is available in User Profile list.
    4.Step full synchronization of User Profile Application.
    From the ULS logs it seems the user's security token from the STS service and User profile service is not being issued.
    Appreciate any thoughts or solution.
    Following are the log files.
    <-------------------------------Information taken from "http://YYYY.XXXXX.com/sites/xxxx/_layouts/15/wrkstat.aspx" where it is showing workflow status as "Suspend"------->
    http://yyyy.XXXX.com/sites/xxxx/_vti_bin/client.svc/sp.utilities.utility.ResolvePrincipalInCurrentcontext(input=@ParamUser,scopes='15',sources='15',inputIsEmailOnly='false',addToUserInfoList='False')?%40ParamUser='i%3A0%23.w%7CXXXXX%5Csps_biscomdev'
    Correlation Id: f5bd8793-a53c-2127-bfb1-70bc172425e8 Instance Id: 14a985a0-60c8-42db-a42c-c752190b8106
    RequestorId: f5bd8793-a53c-2127-0000-000000000000. Details: RequestorId: f5bd8793-a53c-2127-0000-000000000000. Details: An unhandled exception occurred during the execution of the workflow instance. Exception details: System.ApplicationException: HTTP 401
    {"error_description":"The server was unable to process the request due to an internal error. For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug>
    configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs."} {"x-ms-diagnostics":["3001000;reason=\"There
    has been an error authenticating the request.\";category=\"invalid_client\""],"SPRequestGuid":["f5bd8793-a53c-2127-8654-672758a68234"],"request-id":["f5bd8793-a53c-2127-8654-672758a68234"],"X-FRAME-OPTIONS":["SAMEORIGIN"],"SPRequestDuration":["34"],"SPIisLatency":["0"],"Server":["Microsoft-IIS\/7.5"],"WWW-Authenticate":["Bearer
    realm=\"b14e1e0f-257f-42ec-a92d-377479e0ec8d\",client_id=\"00000003-0000-0ff1-ce00-000000000000\",trusted_issuers=\"00000005-0000-0000-c000-000000000000@*,[email protected]79e0ec8d\"","NTLM"],"X-Powered-By":["ASP.NET"],"MicrosoftSharePointTeamServices":["15.0.0.4420"],"X-Content-Type-Options":["nosniff"],"X-MS-InvokeApp":["1;
    RequireReadOnly"],"Date":["Fri, 10 Apr 2015 19:48:07 GMT"]} at Microsoft.Activities.Hosting.Runtime.Subroutine.SubroutineChild.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance
    instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
    ULS Log
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Authentication Authorization agb9s Medium OAuth request. IsAuthenticated=False, UserIdentityName=, ClaimsCount=0 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Runtime ajd6k Verbose Value for isAnonymousAllowed is : False f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Runtime ajd6l Verbose Value for checkAuthenticationCookie is : True f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.70 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly)). Execution Time=18.7574119057031 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.71 w3wp.exe (0x1C74) 0x1AB8 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.73 PowerShell.exe (0x29BC) 0x2B9C SharePoint Foundation General narq Verbose Releasing SPRequest with allocation Id {AF89E1D7-C47F-467B-8FD4-D7DC768820EE} 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly)). Parent No 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. 
    04/16/2015 15:22:03.73 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Application Authentication Pipeline). Parent Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.74 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Claims Authentication ah25l Medium SPJsonWebSecurityBaseTokenHandler: ValidateActorIsSelfIssuer! Issuer '00000005-0000-0000-c000-000000000000' is not self
    issuer. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Getting Site Subscription Id). Parent [S2S] Getting token from STS and setting Thread Identity f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Getting Site Subscription Id). Execution Time=0.341314329055788 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.75 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Reading token from Cache using token signature). Parent [S2S] Getting token from STS and setting Thread
    Identity f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General ajji6 High Unable to write SPDistributedCache call usage entry. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Reading token from Cache using token signature). Execution Time=7.5931438213516 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Application Authentication ajwpx Medium SPApplicationAuthenticationModule: Failed to build cache key for user  f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.76 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Topology aeayb Medium SecurityTokenServiceSendRequest: RemoteAddress: 'http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc' Channel:
    'Microsoft.IdentityModel.Protocols.WSTrust.IWSTrustChannelContract' Action: 'http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue' MessageId: 'urn:uuid:fd5eba94-c39d-4667-89bd-089411c87f09' f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.77 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Topology aeax9 Medium SecurityTokenServiceReceiveRequest: LocalAddress: 'http://c1vspwfe01.vitas.com:32843/SecurityTokenServiceApplication/securitytoken.svc'
    Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue' MessageId: 'urn:uuid:fd5eba94-c39d-4667-89bd-089411c87f09' f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.77 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (ExecuteSecurityTokenServiceOperationServer). Parent No f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication ah25l Medium SPJsonWebSecurityBaseTokenHandler: ValidateActorIsSelfIssuer! Issuer '00000005-0000-0000-c000-000000000000' is not self
    issuer. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General narq Verbose Releasing SPRequest with allocation Id {F17590DF-49D9-439D-86BC-5AE6416BB765} f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8b Verbose Looking up  site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation General narq Verbose Releasing SPRequest with allocation Id {3847D5A4-15C6-4AF9-B062-E22BB555DF4F} f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Portal Server User Profiles ae0s1 High Identity claims mapped to '0' user profiles. Claims: [nameid: '', nii: 'windows', upn: '', smtp: '', sip: ''], User Profiles: f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Portal Server User Profiles ae0sr Unexpected UserProfileException caught.. Exception Microsoft.Office.Server.Security.UserProfileNoUserFoundException: 3001002;reason=The
    incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0() is thrown. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Portal Server User Profiles ae0su High The set of claims could not be mapped to a single user identity. Exception 3001002;reason=The incoming identity is not mapped
    to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator. has occured.  f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication ae0tc High The registered mappered failed to resolve to one identity claim. Exception: Microsoft.Office.Server.Security.UserProfileNoUserFoundException:
    3001002;reason=The incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0()     at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated
    secureCode)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetMappedIdentityClaim(Uri context, IEnumerable`1 identityClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetClaimFromExternalMapper(Uri
    contextUri, List`1 claims) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication af3zp Unexpected STS Call Claims Saml: Problem getting output claims identity. Exception: 'Microsoft.Office.Server.Security.UserProfileNoUserFoundException:
    3001002;reason=The incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0()     at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated
    secureCode)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetMappedIdentityClaim(Uri context, IEnumerable`1 identityClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetClaimFromExternalMapper(Uri
    contextUri, List`1 claims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.ResolveUserIdentityClaim(Uri contextUri, ClaimCollection inputClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetIdentityClaim(Uri
    contextUri, ClaimCollection inputClaims, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetLogonIdentityClaim(SPRequestInfo requestInfo, IClaimsIdentity inputIdentity, IClaimsIdentity
    outputIdentity, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.EnsureSharePointClaims(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity, SPCallingIdentityType callerType)    
    at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)'. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.78 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Claims Authentication fo1t Monitorable STS Call: Failed to issue new security token. Exception: Microsoft.Office.Server.Security.UserProfileNoUserFoundException:
    3001002;reason=The incoming identity is not mapped to any user profile account in SharePoint. Possible cause is that no user profiles are created in user profile database. Contact your administrator.     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetSingleUserProfileFromClaimsList(UserProfileManager
    upManager, IEnumerable`1 identityClaims)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.<>c__DisplayClass2.<GetMappedIdentityClaim>b__0()     at Microsoft.SharePoint.SPSecurity.<>c__DisplayClass5.<RunWithElevatedPrivileges>b__3()    
    at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated secureCode)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(WaitCallback secureCode, Object param)     at Microsoft.SharePoint.SPSecurity.RunWithElevatedPrivileges(CodeToRunElevated
    secureCode)     at Microsoft.Office.Server.Security.UserProfileIdentityClaimMapper.GetMappedIdentityClaim(Uri context, IEnumerable`1 identityClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetClaimFromExternalMapper(Uri
    contextUri, List`1 claims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.ResolveUserIdentityClaim(Uri contextUri, ClaimCollection inputClaims)     at Microsoft.SharePoint.IdentityModel.SPIdentityClaimMapperOperations.GetIdentityClaim(Uri
    contextUri, ClaimCollection inputClaims, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetLogonIdentityClaim(SPRequestInfo requestInfo, IClaimsIdentity inputIdentity, IClaimsIdentity
    outputIdentity, SPCallingIdentityType callerType)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.EnsureSharePointClaims(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity, SPCallingIdentityType callerType)    
    at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.AugmentOutputIdentityForRequest(SPRequestInfo requestInfo, IClaimsIdentity outputIdentity)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.GetOutputClaimsIdentity(IClaimsPrincipal
    principal, RequestSecurityToken request, Scope scope)     at Microsoft.IdentityModel.SecurityTokenService.SecurityTokenService.Issue(IClaimsPrincipal principal, RequestSecurityToken request)     at Microsoft.SharePoint.IdentityModel.SPSecurityTokenService.Issue(IClaimsPrincipal
    principal, RequestSecurityToken request) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x0C48) 0x1318 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (ExecuteSecurityTokenServiceOperationServer). Execution Time=17.1551132895382 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Claims Authentication fsq7 High SPSecurityContext: Request for security token failed with exception: System.ServiceModel.FaultException: The server was
    unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in
    order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.ReadResponse(Message
    response)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst, RequestSecurityTokenResponse& rstr)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken
    rst)     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context, Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo, SPRequestSecurityTokenProperties properties) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Claims Authentication 8306 Critical An exception occurred when trying to issue security token: The server was unable to process the request due to an internal
    error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to
    the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Application Authentication Pipeline). Execution Time=52.3525336320678 f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Application Authentication ajezs High SPApplicationAuthenticationModule: Error authenticating request, Error details { Header: {0}, Body: {1} }.  Available
    parameters: 3001000;reason="There has been an error authenticating the request.";category="invalid_client" {"error_description":"The server was unable to process the request due to an internal error.  For more information
    about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as
    per the Microsoft .NET Framework SDK documentation and inspect the server trace logs."} . f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 8nca Medium Application error when access /sites/testrpa2/_vti_bin/client.svc, Error=The server was unable to process the request due to an internal
    error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to
    the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.   at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.ReadResponse(Message response)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken
    rst, RequestSecurityTokenResponse& rstr)     at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst)     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context,
    Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo, SPRequestSecurityTokenProperties properties)     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForApplicationAuthentication(Uri context,
    SecurityToken onBehalfOf)     at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.<>c__DisplayClass4.<GetLocallyIssuedToken>b__3()     at Microsoft.SharePoint.Utilities.SecurityContext.RunAsProcess(CodeToRunElevated
    secureCode)     at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.ConstructIClaimsPrincipalAndSetThreadIdentity(HttpApplication httpApplication, HttpContext httpContext, SPFederationAuthenticationModule fam)    
    at Microsoft.SharePoint.IdentityModel.SPApplicationAuthenticationModule.AuthenticateRequest(Object sender, EventArgs e)     at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.79 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8b Verbose Looking up context  site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in the farm SharePoint_Config_QA f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8f Verbose Site lookup is replacing
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly with the alternate access url
    http://inetdev. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8g Verbose Looking up typical site
    http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation General 6t8h Verbose Found typical site /sites/testrpa2 (407ba20c-079b-4b99-9e70-f86e6e13ddde) in web application SPWebApplication Name=SPDEV - 80. f5bd8793-a53c-2127-8485-418c67f110f6
    04/16/2015 15:22:03.80 w3wp.exe (0x1C74) 0x183C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://inetdev:80/sites/testrpa2/_vti_bin/client.svc/site/ReadOnly)). Execution Time=62.2890618779761 f5bd8793-a53c-2127-8485-418c67f110f6
    Regards
    Sakti

  • Problems getting selected values from HtmlSelectManyCheckbox

    Hello,
    I am having problems getting values via getSelectedValues() from my HtmlSelectManyCheckbox component. The method returns an object array but the values are the same as the initial selectItems property.
    JSP:
    <h:selectManyCheckbox id="checkBox"
        binding="#{userEditBean.manyCheckbox}"
        value="#{userEditBean.groupIds}"
        layout="pageDirection">
      <f:selectItems value="#{userEditBean.allGroups}"/>
    </h:selectManyCheckbox>
    <h:commandButton action="#{userEditBean.ok}"     value="OK"/>Bean:
    public class UserEditBean extends BaseBean {
        private HtmlSelectManyCheckbox manyCheckbox = new HtmlSelectManyCheckbox();
        private String[] groupIds= {};
        private List allGroups = new ArrayList();
        public String[] getGroupIds() {
                groupIds= backing.getSomeIds();
                return groupIds;
        public void setGroupIds(String[] ids) {
            this.groupIds= ids;
        public HtmlSelectManyCheckbox getManyCheckbox() {
            return manyCheckbox;
        public void setManyCheckbox(HtmlSelectManyCheckbox newC) {
            this.manyCheckbox = newC;
        public List getAllGroups() {
            allGroups = backing.getAllGroups();
            return allGroups;
        public void setAllGroups(List newList) {
            this.allGroups = newList;
        public String ok() {
            Object o = manyCheckbox.getSelectedValues();
        }The problem is, the getSelectedValues() returns the values from the initial state of the page. The is no mark of the changes made by the user. Any help will be appreciated
    Thanks,
    Matek

    Your approach is somewhat odd. The selected values are just reflected in the groupIds, but you're overridding it with backing.getSomeIds() each time when the getter is called.
    Here is a basic working example:<h:selectManyCheckbox value="#{myBean.selectedItems}">
        <f:selectItems value="#{myBean.selectItems}"/>
    </h:selectManyCheckbox>
    <h:commandButton value="submit" action="#{myBean.action}" />MyBeanprivate List<String> selectedItems;
    private List<SelectItem> selectItems;
    // + getters + setters
    // You can use initialization block or constructor to prepopulate the selectItems.
        selectItems = new ArrayList<SelectItem>();
    //or
    public MyBean() {
        selectItems = new ArrayList<SelectItem>();
    public void action() {
        // The selected items are reflected in selectedItems.
        for (String selectedItem : selectedItems) {
            System.out.println(selectedItem);
    }

  • Problem getting correct data from MS Access after doing an Update

    Hi all,
    I have a problem getting correct data after doing an update. This is the scenario
    I am selecting some(Eg: All records where Column X = �7� ) records and update a column with a particular value (SET Column X = �c� ) in all these records by going through a while loop. In the while loop I add these records to a vector too, and pass it as the return value.
    After getting this return value I go through a for loop and get each record one by one from the DB and check if my previous update has actually happened. Since No errors were caught while updating DB, I assume all records are updated properly but my record set shows one after another as if it has not been updated. But if I open the DB it is actually updated.
    This does not happen to all records, always it shows like this
    1st record     Mode = �c�
    2nd record     Mode = �7�
    3st record     Mode = �c�
    4nd record     Mode = �7�
    9th record     Mode = �c�
    10th record     Mode = �7�
    I am relatively new to java and this is someone elses code that I have to modify,So I am not sure if there some thing wrong in the code too
    //Here is the method that gets records and call to update and add to vector
    public static Vector getCanceledWorkOrders() throws CSDDBException{
    //Variable declaration
      try {
        objDBConn = DBHandler.getCSDBCon();
        strSQL  = "SELECT bal bla WHERE [Detailed Mode])=?)";
        objStmt = objDBConn.prepareStatement(strSQL);   
        objStmt.setString(1, '7');
        objWOPRs = objStmt.executeQuery();
        while (objWOPRs.next()) {
         //Add elements to a vector by getting from result set
          //updating each record as PROCESSING_CANCELLED_WO(c)
          iRetVal = WorkOrderDetailingPolicy.updateRecordStatus(objPWODP.iWorkOrderNumber, objPWODP.strPersonInformed, EMSConstants.PROCESSING_CANCELLED_WO);
          if (iRetVal == -1) {
            throw new NewException("Updating failed");
      catch (Exception e) {
        vecWONumbers = null;
        throw new CSDDBException(e.getMessage());
      }finally{
        try {
          objWOPRs.close();
          objStmt.close();
          DBHandler.releaseCSDBCon(objDBConn);
        catch (Exception ex) {}
      //return vector
    //here is the code that actually updates the records
    public static int updateRecordStatus(int iWONumber, String strPerInformed , String strStatus) throws CSDDBException{
       PreparedStatement objStmt = null;
       Connection objDBConn  = null;
       String strSQL = null;
       int iRetVal = -1;
       try{
         objDBConn  = DBHandler.getCSDBCon();
         objDBConn.setAutoCommit(false);
         strSQL = "UPDATE Table SET [Detailed Mode] = ? WHERE bla bla";
         objStmt = objDBConn.prepareStatement(strSQL);
         objStmt.setString(1, strStatus);    
         objStmt.execute();
         objDBConn.commit();
         iRetVal = 1;
       }catch(Exception e){
         iRetVal = -1;
       }finally{
         try{
           objStmt.close();
           DBHandler.releaseCSDBCon(objDBConn);
         }catch(Exception ex){}
       return iRetVal;
    //Here is the code that call the records again
      public static WorkOrderDetailingPolicy getWorkOrders(int iWorkOrderNo) throws CSDDBException{
        Connection objDBConn = null;
        PreparedStatement objStmt = null;
        ResultSet objWOPRs = null;
        WorkOrderDetailingPolicy objPWODP = null;
        String strSQL = null;
        try {
          objDBConn = DBHandler.getCSDBCon();    
          strSQL = "SELECT * FROM [Work Order Detailing] WHERE [Work Order No] = ?";
          objStmt = objDBConn.prepareStatement(strSQL);
          objStmt.setInt(1, iWorkOrderNo);
           objWOPRs = objStmt.executeQuery();
          if (objWOPRs.next()) {
            objPWODP = new WorkOrderDetailingPolicy();
            objPWODP.iWorkOrderNumber = objWOPRs.getInt("Work Order No");
            //......Get Record values
        catch (Exception e) {
          objPWODP = null;
          throw new CSDDBException(e.getMessage());
        }finally{
          try {
            objWOPRs.close();
            objStmt.close();
            DBHandler.releaseCSDBCon(objDBConn);
          catch (Exception ex) {}
        return objPWODP;
      }

    Hello,
    Can you put an example of your problem online?
    Are you sure you're not having problems with case sensitive data?
    Thanks,
    Dimitri

  • Problem getting parameter  values at the service end point

    I am having problem getting parameter values at the service end point. I created service end point and this method is having 35 parameters and then i created test client file using Sun One Studio 5. but when i run this test client and make a call to service it sends wrong value to first three parameters to the service end point. I tried all the way round but it gave me same sort of problem. I change the order of parameters change the names of parameters but it didn�t work. And then i started chopping of parameter from the left side. And my problem is solved when my parameter list reached to 12 from 35. So is it a bug or some problem with my configuration or some thing else.
    I am using sun one studio 5 with sun one app 7. My service end point does very simple thing. It only takes out put of the parameter to the server log file. And my wsdl file seems all right. There is no conflict with the count and data type of the parameter information it contains.
    �     Service End Point Definition (in EJB)
    public java.lang.String setNewAddress(java.lang.String propertyName, java.lang.String status, java.lang.String PMSCode, java.lang.String streetNumPrefix, int streetStartNum, java.lang.String streetStartNumSuffix, int streetEndNum, java.lang.String streetEndNumSuffix, java.lang.String streetName, java.lang.String streetType, java.lang.String streetSuffix, java.lang.String localityPrefix,java.lang.String localityName, java.lang.String postcode, java.lang.String stateCode, java.lang.String countryCode, java.lang.String description, java.lang.String coordinateAccuracy, int longitude, int latitude, java.lang.String planNumber, java.lang.String lotPrefix, int lotNumber, int siteID, java.lang.String countryName, java.lang.String parishName, java.lang.String section, int portionNum, int crownAllotNum, int titleVol, java.lang.String folio, java.lang.String esa, int aliasID, int aliasTagID,String ID) {
    System.out.println(propertyName);
    System.out.println(PMSCode);
    System.out.println(streetNumPrefix);
    ........ taking printout of all the paramters
    �     This is my WSDL file
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="NMService" targetNamespace="urn:NMService/wsdl" xmlns:tns="urn:NMService/wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types/>
    <message name="NMServiceServantInterface_setNewAddress">
    <part name="String_1" type="xsd:string"/>
    <part name="String_2" type="xsd:string"/>
    <part name="String_3" type="xsd:string"/>
    <part name="String_4" type="xsd:string"/>
    <part name="int_5" type="xsd:int"/>
    <part name="String_6" type="xsd:string"/>
    <part name="int_7" type="xsd:int"/>
    <part name="String_8" type="xsd:string"/>
    <part name="String_9" type="xsd:string"/>
    <part name="String_10" type="xsd:string"/>
    <part name="String_11" type="xsd:string"/>
    <part name="String_12" type="xsd:string"/>
    <part name="String_13" type="xsd:string"/>
    <part name="String_14" type="xsd:string"/>
    <part name="String_15" type="xsd:string"/>
    <part name="String_16" type="xsd:string"/>
    <part name="String_17" type="xsd:string"/>
    <part name="String_18" type="xsd:string"/>
    <part name="int_19" type="xsd:int"/>
    <part name="int_20" type="xsd:int"/>
    <part name="String_21" type="xsd:string"/>
    <part name="String_22" type="xsd:string"/>
    <part name="int_23" type="xsd:int"/>
    <part name="int_24" type="xsd:int"/>
    <part name="String_25" type="xsd:string"/>
    <part name="String_26" type="xsd:string"/>
    <part name="String_27" type="xsd:string"/>
    <part name="int_28" type="xsd:int"/>
    <part name="int_29" type="xsd:int"/>
    <part name="int_30" type="xsd:int"/>
    <part name="String_31" type="xsd:string"/>
    <part name="String_32" type="xsd:string"/>
    <part name="int_33" type="xsd:int"/>
    <part name="int_34" type="xsd:int"/>
    <part name="String_35" type="xsd:string"/></message>
    <message name="NMServiceServantInterface_setNewAddressResponse">
    <part name="result" type="xsd:string"/></message>
    <portType name="NMServiceServantInterface">
    <operation name="setNewAddress" parameterOrder="String_1 String_2 String_3 String_4 int_5 String_6 int_7 String_8 String_9 String_10 String_11 String_12 String_13 String_14 String_15 String_16 String_17 String_18 int_19 int_20 String_21 String_22 int_23 int_24 String_25 String_26 String_27 int_28 int_29 int_30 String_31 String_32 int_33 int_34 String_35">
    <input message="tns:NMServiceServantInterface_setNewAddress"/>
    <output message="tns:NMServiceServantInterface_setNewAddressResponse"/></operation></portType>
    <binding name="NMServiceServantInterfaceBinding" type="tns:NMServiceServantInterface">
    <operation name="setNewAddress">
    <input>
    <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:NMService/wsdl"/></input>
    <output>
    <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="urn:NMService/wsdl"/></output>
    <soap:operation soapAction=""/></operation>
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/></binding>
    <service name="NMService">
    <port name="NMServiceServantInterfacePort" binding="tns:NMServiceServantInterfaceBinding">
    <soap:address location="http://localhost:80/NMService/NMService"/></port></service></definitions>
    �     I followed steps given this example. http://developers.sun.com/prodtech/javatools/jsstandard/reference/docs/s1s5/stockapp.html.
    If some one know what is wrong. Is it me or some thing wrong with the method I followed. But I am sure that I followed exactly the same method as it given in examples. So if some one can guide me
    Thanks

    I just found that there is a bug with Sun One Studio 5. It creates faulty JSP file to test the client for the web services. With above problem I tested my web services using different developing environment such as Jdeveloper 10g. I created client stub using wsdl file generated by sun one studio. And made call to my web service and all the parameter reached perfectly at service end point. And then I used stub class created by sun one studio for the client and made the same call. And it also went well. So the problem is with the test application (JSP File) sun one creates for my web service.
    This is the majore problem i faced during the development. But still there is many problem along with this which is not seriouse enough but requires attension. I would like sun developers to make sun one studio IDE simpler and handy .

  • HT1206 Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    You need to create a user account for your wife (or yourself depending on who has the current user account). When syncing, each of you should sign in as a separate user, login to iTunes and then sync. I had this problem when my sister got an iPhone. When we did her initial sync, everything on my iPhone showed up on hers. Apple gave me this solution.

  • Problem getting Dataservices running on OC4J 10.1.3.1

    I'm having problems getting the Data services working
    correctly on an Oracle OC4J 10.1.3.1
    I followed the guidelines as described here:
    http://www.adobe.com/support/documentation/en/flex/2/install.html#oc4j
    and some of the samples seem to work, the Collaborative
    Dashboard runs without any problems
    But when I try to run the notes sample I get this error in
    the console, each time I try to send something:
    07/03/20 10:40:43 [Flex] [ERROR] Exception when invoking
    service: data-service
    with message: Flex Message (flex.data.messages.DataMessage)
    operation = transacted
    id = null
    clientId = 8F4FEAF9-DF0B-9471-5406-D540F7A77B56
    correlationId =
    destination = notes
    messageId = 2BC190CA-5B47-7BEA-7D27-6EB8494ACE96
    timestamp = 1174383642959
    timeToLive = 0
    body =
    Flex Message (flex.data.messages.DataMessage)
    operation = update
    id = ASObject(2709047){noteId=1}
    clientId = 162E9C1C-6BBC-A27C-F756-6EB78592B81D
    correlationId = 2BC190CA-5B47-7BEA-7D27-6EB8494ACE96
    destination = notes
    messageId = ADA188B3-8FB8-0B5A-9A44-6EB844693D12
    timestamp = 0
    timeToLive = 0
    body =
    noteText
    {noteId=1, noteText=Type your notes here and share them with
    other clients!},
    {noteId=1, noteText=df}
    hdr(DSEndpoint) = my-rtmp
    exception: flex.data.DataServiceException: Unable to access
    UserTransaction in DataService.
    Can anyone help me with this? I tried contacting Oracle, but
    they bounced the ball back to Adobe...

    OCMS stands for Oracle Communication and Mobility Server and is basically a SIP Container embedded as a hook into OC4J 10.1.3.1. I'm using JDK 1.5.0_12-b04. Wondering if there's any other way to check configuration of the JSP compiler.
    Thanks for your help,
    Adam

  • Problem getting hard drives to mount on desktop and also open when they do

    I have a problem getting the iMac to recognise external hard drives - it won't show them on either firewire 400 or 800. I can see my 1TB drive using usb ( it shows up on the desktop, whereas on firewire it doesn't do this) but if I try to open it and see the contents in finder, it opens, but doesn't display the contents of the drive. I can see the disk size but just get a grey spinning wheel in the bottom right hand of the finder window. Timemachine does not work with this drive. it used to but then stopped. It sees the drive but cannot back up to it.

    What brand drive is it? Check to see how the drive has been formatted. From the desktop right click/Get Info.
    If your iMac is having Firewire issues try resetting the SMC: http://support.apple.com/kb/HT1543?viewlocale=en_US
    Open up Applications/Utilities/Disk Utility select the external drive on the left hand side and under the First Aid tab click Repair Disk.
    If the drive is formatted for Windows NTFS+ or FAT32 then you will need to erase the drive and reformat it for Mac OS Extended. Make sure to backup any data before reformatting.
    George

  • I am trying to connect my Sony DCR-TRV350 to iMovie so that I can make DVD's from family videos.  I am having problems getting the video camera connected.  Any advice on how to do this?

    I am trying to connect my Sony DCR-TRV350 to iMovie so that I can make DVD's from family videos.  I am having problems getting the video camera connected.  Any advice on how to do this?

    What happens when, after you connect your cam, you go to File > Import Media?
    But before that, does your cam require you to export your video files upon USB connection? I have a JVC Everio HD and I have to "Export to Library" from the cam's menu first-thing. This was true even in prior iMovie versions.

  • Unknown error: there was a problem getting the status directory!

    Hi, Folks,
    I followed the instructions on this page :http://deimos.apple.com/rsrc/doc/iTunesUAdministrationGuide/AddingContent/chapte r_12_section_6.html#//apple_ref/doc/uid/AdminGuide-CH22-SW5, and try to upload a file to our university's Itunes U site.
    I believe got every step right, but server return a error message: "unknown error: there was a problem getting the status directory". Any suggestion or information will be helpful.
    Thanks
    Youjun

    Forgot to mention.  ours is a public site but the collection I am trying to access is not published.
    Youjun

  • I'm running iTunes 10.5 on my Macbook Pro and software 4.1 on my 2g iPod touch and having problems getting photo's to sync. Same error iPod can't be synced req'd file can't be found. Tried deleting the photo cache, restoring the iPod etc but to no avail.

    I'm running iTunes 10.5 on my Macbook Pro and software 4.1 on my 2g iPod touch and having problems getting photo's to sync. Same error, "iPod can't be synced req'd file can't be found". Tried deleting the photo cache, restoring the iPod etc but to no avail.

    Try here:
    iTunes: Unable to sync photos
    Usually deleting the iPod Photo Cache Folder works. Note that if you sync via the folder method, make sure you dlete all the ifolders since :
    The iPod Photo Cache stores the photos that are optimized for display on your iPod, iPad, or iPhone. The location of this folder depends on the syncing options you select. In iTunes, if you change the selection in the “Sync Photos From” pop-up menu, a new iPod Photo Cache folder will be created (and the previous folder will remain).

  • Problem with installing free App (Everything is fine, bur we had a small problem getting your license)

    Hello,
    We have free App for SharePoint Online. Some our customers have problems with the installation. After install they see an issue with obtaining a license which should be free.
    "Everything is fine, bur we had a small problem getting your license. Please go back to the SharePoint store to get this app again and you won't be charget for it."
    See the screen:
    How can we resolve the issue?
    Thank you!
    Our App: "Resource Reservation"
    https://store.office.com/resource-reservation-WA104276770.aspx

    Hi Gabe,
    First, please check the suggestion above is helpful. I also suggest you removing all version of Office and re-install Office 2013.
    We can try to run the application as an administrator and check if it works.
     1. Right click the shortcut of the application or the main application.
     2. Select properties.
     3. Select compatibility tab and select "Run this program as an administrator."
    If there is anything I can do for you about this issue, don't hesitate to tell me.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • The screen on my Macbook goes blank, if I tilt the screen it returns. Problem getting worse.

    The screen on my Macbook goes blank, if I tilt the screen it returns. Problem getting worse. Should I take it to the apple store and see if they can replace the screen? is it expensive to replace the backlight/invertor?

    This sounds to me like a fairly common Inverter Fault.
    It is not the screen that needs replacing by the sounds of it,
    It sounds like either the inverter board or the inverter cable needs replacing.
    My understanding is that inverter / inverter cable repairs aren't too expensive, but not too cheap!
    Obviously your best way to find out how much it would cost to be repaired would be to take it in to an Apple Store, as I have never had to have one replaced myself, but the information I'm providing, is based on what I've read elsewhere.
    How old is the MacBook?
    Thanks,
    Ollie.

  • Problems getting a TV fixed or exchanged

    I am having problems getting a black friday tv purchase fixed or replaced.  I bought the doorbuster 50" panasonic TC-50A400U on thursday along with the 2 year protection plan, took it home and it has vertical lines on left center of the sceen. Went into a store on saturday to fing out what to do, was advised to call 1-800-geek-squad because it was a 50" tv.
    Geek Squad came out yesterday immediately diagnosed the problem, called it in and was told that panasonic is not going to provide the needed board to repair it and I would have to bring the tv in for an exchange as it is within the return policy period.  Of course there are none in stock and will take at least a week to get a new one. While I understand the TV was a special deal, it should not mean that it or the person buying it should be treated any differently than soeone buying a more expensive tv or other product.
    I feel this reflects poorly on Panasonic as well as they do not seem to want to stand behind products that they are selling unless it is a certain price point

    Hi there pjmccarthy63-
    Thank you for your patience while we worked through our backlog to reach your post.  We’ve been very busy since the Thanksgiving holiday and it’s taking us a bit of time to catch up.
    Congratulations on getting your hands on one of the Panasonic doorbuster TV’s.  I can only imagine how disappointing it was to see that it wasn’t working correctly and that the only option available to us was to exchange it for you, which meant waiting for us to get stock back in.
    Normally during the manufacturer warranty period, we have to follow the manufacturer’s instructions regarding potential repairs, so if they stated that it would be more economical to replace that to repair, we do need to follow those directions.  It does appear that since you’ve posted, we did get more of these TV’s in stock and that you’ve completed your exchange.  I hope that the new television is working well and you are enjoying it!
    Thanks for posting and Happy Holidays!
    Bill|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • Problems getting Reader (9.4 and up) to interact with WSDL, rights-enabled or not

    Somehow I must be doing something wrong - My form works just fine in Designer,
    Preview, Acrobat Pro, etc as expected. When I open the form in Reader, I am not gett
    ing my data back. I have rights-enabled the form, still no go. Am I mis
    sing something? Any suggestions appreciated!

    Thanks - Adobe is certainly misleading about what & where they are calling
    Reader Extension. Grrr.  Thanks so much for your answer!
    Tabi Freedman
    Developer
    BTS-PAS
    P. 212-919-3135  M. 917-370-7229
    7 Hanover Square H-4-A, New York, NY 10004
    The Guardian Life Insurance Company of America
    GuardianLife.com
    From:   pguerett <[email protected]>
    To:     Tabi M Freedman <[email protected]>
    Date:   07/29/2011 01:42 PM
    Subject:        Problems getting Reader
    (9.4 and up) to interact with WSDL, rights-enabled or not
    Thats your issue .....Acrobat does not add the right to enabe Web Services
    in Reader. That can only be done via LiveCycle Reader Extensions.
    Paul

  • I have a Macbook Pro, and I cannot get onto my my job's wi-fi network.  Has anyone ever had a problem getting on a wi-fi network at your place of employment?

    I have a Macbook Pro, and I cannot get onto my my job's wi-fi network.  Has anyone ever had a problem getting on a wi-fi network at your place of employment?  I have a username and password for the network, but when I try to go through the Connection Assistant and put in my password, it says its the wrong password. 

    you need to contact your employers IT department.

Maybe you are looking for