找回密码
 注册账号

QQ登录

只需一步,快速开始

手机号码,快捷登录

手机号码,快捷登录

初学者课程:T3自学|T6自学|U8自学软件下载课件下载工具下载资料:通资料|U8资料|NC|培训|年结积分规则 | 使用常见问题Q&A
知识库:U8 | | NC | U9 | OA | 政务U8|U9|NCC|NC65|NC65客开|NCC客开新手必读 | 任务 | 快速增金币用友QQ群[微信群]
查看: 6678|回复: 5

[资料] 提示令牌失效,请修改服务器配置?

[复制链接]
发表于 2011-10-25 13:48:45 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册账号

×
Option Explicit
Public U8_Login As U8Login.clsLogin
Sub UFLogin()
  Dim sysLogin As Object
  Set sysLogin = CreateObject("UFSoft.U8.Framework.Login.UI.clsLogin")
  'Set sysLogin = CreateObject("UFSoft.U8.Framework.Login.UI")
  'sysLogin.ShowLoginForm ("DP")
  If sysLogin.Login_2("DP") = False Then
  MsgBox sysLogin.ErrDescript, vbCritical, "登录"
  End If
  Set U8_Login = New U8Login.clsLogin
  U8_Login.ClearError
  Dim bLogin As Boolean
  bLogin = U8_Login.ConstructLogin(sysLogin.userToken) 'U8_Login.Login("DP") '
  'bLogin = U8_Login.Login("ST")
  If Not bLogin Then
  Unload Me
  End If
End Sub
以上是登录代码,环境WIN2008SP2+SQL2008SP2+U8V10和WINXPSP3+SQL2000SP4+U8V10,两个环境下原用友都可以正常登录使用,调用却提示令牌失效,请修改服务器配置...
发表于 2011-10-25 14:31:25 | 显示全部楼层
谢谢分享啊!!!!!!!!!!!!!!
发表于 2011-11-5 22:07:58 | 显示全部楼层
谢谢分享啊!!!!!!!!!!!!!!
发表于 2011-11-15 09:30:54 | 显示全部楼层
我的也是这个问题,不知道楼主是否解决了
发表于 2012-8-8 11:06:27 | 显示全部楼层
很好!谢谢分享!
回复 点赞 拍砖

使用道具 举报

 楼主| 发表于 2015-7-30 10:33:03 | 显示全部楼层
改用类模块方式
Option Explicit

Implements UFPortalProxyInterface.ILoginable

Public Property Get Business() As Object
    Set Business = g_obusiness
End Property

Public Property Set Business(ByRef bBus As Object)
    Set g_obusiness = bBus  '获得business对象。
End Property

Private Function ILoginable_Login() As Boolean
    If ((Not g_obusiness Is Nothing) And g_bLogined = False) Then
        Set g_oLogin = g_obusiness.GetVBclsLogin() '获得login对象
        
        If UFSystem.State = 1 Then UFSystem.Close
        UFSystem.ConnectionString = g_oLogin.UfSystemADODb
        UFSystem.CursorLocation = adUseClient
        UFSystem.Open
        If UFData.State = 1 Then UFData.Close
        UFData.ConnectionString = g_oLogin.UfDbName
        UFData.CursorLocation = adUseClient
        UFData.Open
        
        ZTCode = g_oLogin.cAcc_Id
        ZTName = g_oLogin.cAccName
        
        pUserCode = g_oLogin.cAuditor.AuditorId
        pUserName = g_oLogin.cAuditor.AuditorName
        
        pUFDate = g_oLogin.CurDate
        
        g_bLogined = True
        ILoginable_Login = True
    Else
        ILoginable_Login = Not g_obusiness Is Nothing
    End If
End Function

Private Function ILoginable_LogOff() As Boolean
    '程序退出前,添加自己的代码
    ILoginable_LogOff = True '本行代码必须。
    g_bLogined = False '本行代码必须。
End Function

Private Function ILoginable_CallFunction(ByVal cMenuId As String, ByVal cMenuName As String, ByVal cAuthID As String, ByVal cCmdLine As String) As Object
    Dim vfd As Object
    Dim cSqlStr As String
   
    cSqlStr = "if object_id('TableHead') is null CREATE TABLE [TableHead] ([Autoid] [int] IDENTITY (1, 1) NOT NULL ,[TableName] [nvarchar] (50) NOT NULL ,[Field_Name] [nvarchar] (50) NOT NULL ,[Field_Width] [float] NOT NULL ,[bSum] [bit] NOT NULL CONSTRAINT [DF_SMT_TableHead_bSum] DEFAULT (0),[Field_Sort] [int] NULL ,[Alignment] [int] NULL ,CONSTRAINT [PK_SMT_TableHead] PRIMARY KEY  CLUSTERED ([Autoid])  ON [PRIMARY]) ON [PRIMARY] "
    UFData.Execute (cSqlStr)

    cSqlStr = "if object_id('TableStyle') is null CREATE TABLE [TableStyle] ([TableName] [nvarchar] (50) NOT NULL ,[LeftPrint] [float] NULL ,[TopPrint] [float] NULL ,[Perline] [int] NULL ,[PerRow] [int] NULL ,[bShowZero] [bit] NOT NULL ,[bShowLine] [bit] NOT NULL ,[bShowSer] [bit] NOT NULL ,[bPrintDate] [bit] NOT NULL ,[bPrintPageNo] [bit] NOT NULL ,[TitleFont] [nvarchar] (50) NULL ,[OutSideFont] [nvarchar] (50) NULL ,[GridFont] [nvarchar] (50) NULL ,[bAddEmpLine] [bit] NOT NULL ,[cSumMothod] [nvarchar] (50) NULL ,[Moneyunit] [nvarchar] (20) NULL ,[HeadFont] [nvarchar] (50) NULL ,[RowHeight] [float] NULL ,[Orientation] [bit] NOT NULL ,[PaperSize] [int] NULL ,[FixRowHeight] [float] NULL ,[FactPrint] [bit] NOT NULL ,[PrintScale] [float] NULL ,[FirstPageNo] [int] NULL,FixedCols int,CONSTRAINT [PK_SMT_TableStyle] PRIMARY KEY  CLUSTERED ([TableName]) ON [PRIMARY] ) ON [PRIMARY] "
    UFData.Execute (cSqlStr)
   
    cSqlStr = " if object_id('UA_U8InterfaceSN') is null CREATE TABLE [UA_U8InterfaceSN] ([cUnitName] [varchar] (150) NULL ,[cSNCode] [varchar] (40) NULL,[dBeginDate] [Datetime] NULL,[dEndDate] [Datetime] NULL)"
    UFSystem.Execute (cSqlStr)
   
    bSN = SNPeriod()
   

    If Not (g_obusiness Is Nothing) Then
        If cMenuId <> "SY0001" Then
            If bSN = False Then
                Exit Function
            End If
        End If
        Select Case cMenuId
        Case "SY0001"
            Set vfd = g_obusiness.CreateFormEnv("frmSN_key", frmSN) 'frmBom_key为任意字符串,建议以"窗体名_key"来表示,既防止重复,又清晰易懂。
            Call g_obusiness.ShowForm(frmSN, "DP", "frmSN_key", False, True, vfd)
        Case "SY0002"
            Set vfd = g_obusiness.CreateFormEnv("frmBomInv_key", frmBomInv) 'frmBom_key为任意字符串,建议以"窗体名_key"来表示,既防止重复,又清晰易懂。
            Call g_obusiness.ShowForm(frmBomInv, "DP", "frmBomInv_key", False, True, vfd)
        Case Else
            MsgBox "错误配置菜单!", vbInformation, "插件安装"
        End Select
    End If
End Function
以上是基本类的一些代码
回复 点赞 拍砖

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号

本版积分规则

QQ|站长微信|Archiver|手机版|小黑屋|用友之家 ( 蜀ICP备07505338号|51072502110008 )

GMT+8, 2024-11-23 23:44 , Processed in 0.055478 second(s), 11 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表